From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mx.groups.io with SMTP id smtpd.web11.50534.1680255406621979007 for ; Fri, 31 Mar 2023 02:36:48 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=ZknU8Ynb; spf=pass (domain: intel.com, ip: 192.55.52.120, mailfrom: dun.tan@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1680255408; x=1711791408; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Cm85OwxrQbV5+S+bNJow/yNrGw1AcvVcfTgvCx6ut+g=; b=ZknU8Ynbe9YlxhNyNXahHa2cP4XuvEAAxCE0pVtBU/0SZoLNJD5M1ue7 wY3bwNSm9E8M1Tyk52mqRWphbT42LbG+JGp/kr8Oae2isrOv0lhUduueV /CQf3SV96M1X/ftSO1OiaZSr7BdpTNmBdB0Yu+vws2FGkaR9esNBu1WHB 8GYAocZVFPahAHhYA8LvajI2p1SVm0mLphv1Nww71LTs5/wEcFr0eBjr+ w4OfvLHEuHEusCGq4DCe6rWJFiCt4oKSjJUxmLwNaH/7K2mv7CaptmwC+ NTNtA3Si1F1TgpohA37Er68EFlmDAUKySkwp6CfFW6qJ4k75XyPIyJ7Re A==; X-IronPort-AV: E=McAfee;i="6600,9927,10665"; a="340133744" X-IronPort-AV: E=Sophos;i="5.98,307,1673942400"; d="scan'208";a="340133744" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 31 Mar 2023 02:36:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10665"; a="635229530" X-IronPort-AV: E=Sophos;i="5.98,307,1673942400"; d="scan'208";a="635229530" Received: from shwdeopenlab702.ccr.corp.intel.com ([10.239.55.92]) by orsmga003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 31 Mar 2023 02:36:44 -0700 From: "duntan" To: devel@edk2.groups.io Cc: Jian J Wang , Liming Gao , Ray Ni Subject: [Patch V2 3/8] MdeModulePkg: Add CpuPageTableLib required by DxeIpl in DSC Date: Fri, 31 Mar 2023 17:33:39 +0800 Message-Id: <20230331093344.2609-4-dun.tan@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: <20230331093344.2609-1-dun.tan@intel.com> References: <20230331093344.2609-1-dun.tan@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Add CpuPageTableLib instance required by DxeIpl in MdeModulePkg.dsc. Signed-off-by: Dun Tan Cc: Jian J Wang Cc: Liming Gao Cc: Ray Ni --- MdeModulePkg/MdeModulePkg.dsc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MdeModulePkg/MdeModulePkg.dsc b/MdeModulePkg/MdeModulePkg.dsc index 1014598f31..d95acabe83 100644 --- a/MdeModulePkg/MdeModulePkg.dsc +++ b/MdeModulePkg/MdeModulePkg.dsc @@ -2,7 +2,7 @@ # EFI/PI Reference Module Package for All Architectures # # (C) Copyright 2014 Hewlett-Packard Development Company, L.P.
-# Copyright (c) 2007 - 2021, Intel Corporation. All rights reserved.
+# Copyright (c) 2007 - 2023, Intel Corporation. All rights reserved.
# Copyright (c) Microsoft Corporation. # Copyright (C) 2023 Advanced Micro Devices, Inc. All rights reserved.
# @@ -106,6 +106,7 @@ MmUnblockMemoryLib|MdePkg/Library/MmUnblockMemoryLib/MmUnblockMemoryLibNull.inf VariableFlashInfoLib|MdeModulePkg/Library/BaseVariableFlashInfoLib/BaseVariableFlashInfoLib.inf IpmiCommandLib|MdeModulePkg/Library/BaseIpmiCommandLibNull/BaseIpmiCommandLibNull.inf + CpuPageTableLib|UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableLib.inf [LibraryClasses.EBC.PEIM] IoLib|MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf -- 2.31.1.windows.1