From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mx.groups.io with SMTP id smtpd.web10.6771.1668758353219060329 for ; Thu, 17 Nov 2022 23:59:14 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=T9lM1Luk; spf=pass (domain: intel.com, ip: 192.55.52.43, mailfrom: min.m.xu@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1668758354; x=1700294354; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=I5jvpl9oghNrwLKOwCVqbLDSClvYYijcsARWCs82jNc=; b=T9lM1Luk045hUxDaiJ+9rcDQeGU36onIMcpP+a04IybOIIs0+Hojjxlv e4Kz9elCYE3IXscaYgwmd+S1mP0whmXR1ag7gU+du4gq/A9VgYi+rinHL 8jmX9uZtnV5U5VWc5mI0os2NszQpyfitHfyOIyAzRAYrrT+WfnlX9bOfg v0ynD9iTQjmY3malolvMmXnHplsb+wHGCTbxkgi4EQx2vKLmT2Ovz+yK9 4qvvB7dLI5FJoeTvsabSUDBhwdCXX8xIAfdLK5fgA+7Clo/05W3FH5SfS lYNwcEX47ih6cqz4g0ulPYmA5fAb0UP6RIB0rsNsA+xWikw89GD/wWSJI A==; X-IronPort-AV: E=McAfee;i="6500,9779,10534"; a="399367812" X-IronPort-AV: E=Sophos;i="5.96,173,1665471600"; d="scan'208";a="399367812" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Nov 2022 23:59:14 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10534"; a="708940507" X-IronPort-AV: E=Sophos;i="5.96,173,1665471600"; d="scan'208";a="708940507" Received: from mxu9-mobl1.ccr.corp.intel.com ([10.249.173.8]) by fmsmga004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Nov 2022 23:59:12 -0800 From: "Min Xu" To: devel@edk2.groups.io Cc: Min M Xu , Chasel Chiu , Nate DeSimone , Isaac Oram , Liming Gao , Eric Dong , Jiewen Yao Subject: [PATCH V1 1/5] MinPlatformPkg: Use CcExitLib instead of VmgExitLib Date: Fri, 18 Nov 2022 15:56:53 +0800 Message-Id: <20221118075657.665-2-min.m.xu@intel.com> X-Mailer: git-send-email 2.29.2.windows.2 In-Reply-To: <20221118075657.665-1-min.m.xu@intel.com> References: <20221118075657.665-1-min.m.xu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Min M Xu BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4159 VmgExitLib is renamed as CcExitLib in EDK2. This change should be applied in MinPlatformPkg as well. Cc: Chasel Chiu Cc: Nate DeSimone Cc: Isaac Oram Cc: Liming Gao Cc: Eric Dong Cc: Jiewen Yao Signed-off-by: Min Xu --- Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc | 2 +- Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc b/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc index e48d4b06d89c..14af0acc3be6 100644 --- a/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc +++ b/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc @@ -38,7 +38,7 @@ HashLib|SecurityPkg/Library/HashLibBaseCryptoRouter/HashLibBaseCryptoRouterDxe.inf Tcg2PhysicalPresenceLib|SecurityPkg/Library/DxeTcg2PhysicalPresenceLib/DxeTcg2PhysicalPresenceLib.inf - VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf + CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf [LibraryClasses.common.DXE_CORE, LibraryClasses.common.DXE_DRIVER, LibraryClasses.common.DXE_RUNTIME_DRIVER, LibraryClasses.common.UEFI_DRIVER, LibraryClasses.common.UEFI_APPLICATION] VariableReadLib|MinPlatformPkg/Library/DxeRuntimeVariableReadLib/DxeRuntimeVariableReadLib.inf diff --git a/Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc b/Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc index 4424ebaecc22..595f0ee49002 100644 --- a/Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc +++ b/Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc @@ -36,7 +36,7 @@ !endif TimerLib|PcAtChipsetPkg/Library/AcpiTimerLib/BaseAcpiTimerLib.inf - VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf + CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf [LibraryClasses.common.SEC] ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf -- 2.29.2.windows.2