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:21 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=OnG02V+E; 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=1668758361; x=1700294361; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=NkmgjP05KKMLYMcMC+g9fcswMmSgkLo95AKabkCI8Ro=; b=OnG02V+E6Q589i7QnZZGEK15Y5U6JtuO8yB09tDPDQR4oLDeNm+6Y6GJ SRlvB14ESBWW4nkIJgPDQg3D0gIbkMp75FvPP5D4H6kUZTO+/8Gmltn1G 33Ry6+bmgG/SoStTqWE8DHCZn2EyDPi8ElpCN7vyBxKC3LW3cPLa3dbho RocFfVAuGEgBgsx+6fomTHsLPtlnYnJR+8MO9++40QoYBYJgL/ZnOUDDJ bRSbMxU7UsgLRw/Lj+0sVJz4ThdCXtjTcfr180pmBYrExDEz/wqMfSQvG uw2z+FUDvROwjlq3Ur18o/V6eusvzdQZoyfC6KH542VkX3gD5o7Z4nm+C w==; X-IronPort-AV: E=McAfee;i="6500,9779,10534"; a="399367909" X-IronPort-AV: E=Sophos;i="5.96,173,1665471600"; d="scan'208";a="399367909" 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:20 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10534"; a="708940581" X-IronPort-AV: E=Sophos;i="5.96,173,1665471600"; d="scan'208";a="708940581" 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:19 -0800 From: "Min Xu" To: devel@edk2.groups.io Cc: Min M Xu , Isaac Oram , Nate DeSimone , Chasel Chiu , Jiewen Yao Subject: [PATCH V1 5/5] WhitleyOpenBoardPkg: Use CcExitLib instead of VmgExitLib Date: Fri, 18 Nov 2022 15:56:57 +0800 Message-Id: <20221118075657.665-6-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 WhitleyOpenBoardPkg as well. Cc: Isaac Oram Cc: Nate DeSimone Cc: Chasel Chiu Cc: Jiewen Yao Signed-off-by: Min Xu --- Platform/Intel/WhitleyOpenBoardPkg/PlatformPkg.dsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Platform/Intel/WhitleyOpenBoardPkg/PlatformPkg.dsc b/Platform/Intel/WhitleyOpenBoardPkg/PlatformPkg.dsc index 0ff9c00b9430..c784df0144c4 100644 --- a/Platform/Intel/WhitleyOpenBoardPkg/PlatformPkg.dsc +++ b/Platform/Intel/WhitleyOpenBoardPkg/PlatformPkg.dsc @@ -590,7 +590,7 @@ AslUpdateLib|$(PLATFORM_PKG)/Acpi/Library/DxeAslUpdateLib/DxeAslUpdateLib.inf PciSegmentInfoLib|$(PLATFORM_PKG)/Pci/Library/PciSegmentInfoLibSimple/PciSegmentInfoLibSimple.inf PlatformOpromPolicyLib|$(RP_PKG)/Library/PlatformOpromPolicyLibNull/PlatformOpromPolicyLibNull.inf - VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf + CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf CrcLib|WhitleyOpenBoardPkg/Library/BaseCrcLib/BaseCrcLib.inf PlatformSpecificAcpiTableLib|WhitleyOpenBoardPkg/Library/PlatformSpecificAcpiTableLibNull/PlatformSpecificAcpiTableLibNull.inf BuildAcpiTablesLib|WhitleyOpenBoardPkg/Library/BuildAcpiTablesLib/DxeBuildAcpiTablesLib.inf -- 2.29.2.windows.2