From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mx.groups.io with SMTP id smtpd.web11.1082.1642121466955476862 for ; Thu, 13 Jan 2022 16:51:12 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=hdeoDrsa; spf=pass (domain: intel.com, ip: 192.55.52.93, 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=1642121472; x=1673657472; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=IrXTU0D0HWX2+d/X9LOQqK3SJdQh7YvRMBe2M7uQH5s=; b=hdeoDrsaxLOPSb29jUH0qbQbbd9SGXTi1rPay/Of3jfZqNPvlu0282Yc 0XXnMHUABJYb+d5YN+kPY/7FjPT1HhzQa7txCvKs133/gDQvSAcyd8Zri gtKNzDP6zBESy2UFF04rhjpFCc6smVAU8O+aEXcklYWRsac+ojQ6IUQhC Le1saWDPQjqA2o2NGEM7LdmsX1BNMjxFIHks+dkaMd4HZtQFqtA5bd3qL 3yYMgpF/WLZQCYueXtFWVShoVM7QuhQYTXpSJTP4aLU6i76YMtVCrfnH0 C+RY/rTHNE9mB4m/DUbjV6Y3P7Oa9xieF6c7lPRL6LuxnnbNZ6NZV0E3a g==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="241713806" X-IronPort-AV: E=Sophos;i="5.88,287,1635231600"; d="scan'208";a="241713806" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Jan 2022 16:51:11 -0800 X-IronPort-AV: E=Sophos;i="5.88,287,1635231600"; d="scan'208";a="475564638" Received: from guominji-mobl.ccr.corp.intel.com ([10.238.9.87]) by orsmga006-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Jan 2022 16:51:10 -0800 From: "Guomin Jiang" To: devel@edk2.groups.io Cc: GuoMinJ , Leif Lindholm , Ard Biesheuvel Subject: [PATCH 03/11] ArmPkg: Remove All UGA Support Date: Fri, 14 Jan 2022 08:50:36 +0800 Message-Id: <20220114005044.1975-4-guomin.jiang@intel.com> X-Mailer: git-send-email 2.30.0.windows.2 In-Reply-To: <20220114005044.1975-1-guomin.jiang@intel.com> References: <20220114005044.1975-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 --- .../Library/PlatformBootManagerLib/PlatformBootManagerLib.inf | 3 --- ArmPkg/Library/PlatformBootManagerLib/PlatformBm.h | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/ArmPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf b/ArmPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf index 86751b45f82b..9270fd3e30d6 100644 --- a/ArmPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf +++ b/ArmPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf @@ -51,9 +51,6 @@ [LibraryClasses] UefiLib UefiRuntimeServicesTableLib -[FeaturePcd] - gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport - [FixedPcd] gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvModeEnable gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString diff --git a/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.h b/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.h index a40a2ff5cb4f..bab86495c1e6 100644 --- a/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.h +++ b/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.h @@ -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 ( -- 2.30.0.windows.2