From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by mx.groups.io with SMTP id smtpd.web08.1841.1657849966764638116 for ; Thu, 14 Jul 2022 18:52:47 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=PDYUXap/; spf=pass (domain: intel.com, ip: 134.134.136.31, mailfrom: guomin.jiang@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1657849968; x=1689385968; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=dsKWZgIQO814dmQrsVsLkuCkIvIscxTQbGDfXu3ayqc=; b=PDYUXap/GlJhq5132EM6N3JLupJ1IxUZ3w9SnfV4NDFBB3EE6l8QUvw7 N8bdKbhNPwQeSIKC00eoTbjuyeDR7QTULyAVjoKJ/HXIExzgnkcbfh98O s2Idlg+xowMKElIGe/ybbSxJvNQAmkNC+nMnEi3Fne7I7d6uzPHuO6oLF 7X8Y5AiKda9/WA2I7m+Kg9xIVaIwQT9TeqhCdAUV4QlCg1hasr+hcebVp ogPPAojxlIyus/HJnXUW3wKNEEXjv2sE4CCWkRRRZk4sJ/NdBccGiuZzI 2N2P7UVLeIgtJLYkMvOhHui6awROs4FmrMPnTI2r+YwCBx72MMjC69Cja A==; X-IronPort-AV: E=McAfee;i="6400,9594,10408"; a="347355572" X-IronPort-AV: E=Sophos;i="5.92,272,1650956400"; d="scan'208";a="347355572" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jul 2022 18:51:29 -0700 X-IronPort-AV: E=Sophos;i="5.92,272,1650956400"; d="scan'208";a="923318651" Received: from guominji-mobl1.ccr.corp.intel.com ([10.238.11.184]) by fmsmga005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jul 2022 18:51:27 -0700 From: "Guomin Jiang" To: devel@edk2.groups.io Cc: GuoMinJ , Leif Lindholm , Ard Biesheuvel , Sami Mujawar Subject: [Patch v2 03/11] ArmPkg: Remove All UGA Support Date: Fri, 15 Jul 2022 09:50:58 +0800 Message-Id: <20220715015106.1553-4-guomin.jiang@intel.com> X-Mailer: git-send-email 2.37.1.windows.1 In-Reply-To: <20220715015106.1553-1-guomin.jiang@intel.com> References: <20220715015106.1553-1-guomin.jiang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: GuoMinJ REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2368 Remove All UGA Support in ArmPkg. Signed-off-by: Guomin Jiang Cc: Leif Lindholm Cc: Ard Biesheuvel Cc: Sami Mujawar --- ArmPkg/Library/PlatformBootManagerLib/PlatformBm.h | 4 ++-- .../PlatformBootManagerLib/PlatformBootManagerLib.inf | 5 +---- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.h b/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.h index a40a2ff5cb4f..a2ec4c4ad6c7 100644 --- a/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.h +++ b/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.h @@ -2,7 +2,7 @@ Head file for BDS Platform specific code Copyright (C) 2015-2016, Red Hat, Inc. - Copyright (c) 2004 - 2008, Intel Corporation. All rights reserved.
+ Copyright (c) 2004 - 2022, Intel Corporation. All rights reserved.
Copyright (c) 2016, Linaro Ltd. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent @@ -43,7 +43,7 @@ EnableQuietBoot ( Simple Text Out screens will now be synced up with all non video output devices - @retval EFI_SUCCESS UGA devices are back in text mode and synced up. + @retval EFI_SUCCESS Graphic devices are back in text mode and synced up. **/ EFI_STATUS DisableQuietBoot ( diff --git a/ArmPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf b/ArmPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf index 86751b45f82b..63d1d83ab0ef 100644 --- a/ArmPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf +++ b/ArmPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf @@ -3,7 +3,7 @@ # # Copyright (C) 2015-2016, Red Hat, Inc. # Copyright (c) 2014, ARM Ltd. All rights reserved.
-# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.
+# Copyright (c) 2007 - 2022, Intel Corporation. All rights reserved.
# Copyright (c) 2016, Linaro Ltd. All rights reserved.
# # SPDX-License-Identifier: BSD-2-Clause-Patent @@ -51,9 +51,6 @@ UefiLib UefiRuntimeServicesTableLib -[FeaturePcd] - gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport - [FixedPcd] gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvModeEnable gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString -- 2.26.2.windows.1