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=LVYvXinm; 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=k+T3nhiswIw9ib/LPnDdJwNK96wIq09sWxfn7hktfEk=; b=LVYvXinmBDN/IL3qVwSOOzoIroq/WXMa8s28pSgXt1qoMfs1NYx5nhuX kYd3yelhFYuwpuK6a7BXXZbvSdQb7ZUYh4ftmtLDgD2c5ZwbLcRMea66G uclilLIPa1yxiZAZ/GGnDH2pHyyWTeGZW5elmpeUJiHFWMlchesU68il/ ChNjkEmXxzVHAAsyeV7K2ZYF0lao5xKAtJWdhu4ZyE3FDGf9Qt+j1uItE IxvwW8vHDajoijXXsxkCJv6JI13EYjGP0v8IFhG1WPDRqNLLsgd0gY8yO l+xUoE/pMg3B6uO1IDQyFG4AVhDU1fsRXF/NM8rp6xPFrwDWYIfCJb6Tt w==; X-IronPort-AV: E=McAfee;i="6600,9927,10665"; a="340133738" X-IronPort-AV: E=Sophos;i="5.98,307,1673942400"; d="scan'208";a="340133738" 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:47 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10665"; a="635229517" X-IronPort-AV: E=Sophos;i="5.98,307,1673942400"; d="scan'208";a="635229517" 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:41 -0700 From: "duntan" To: devel@edk2.groups.io Cc: Chasel Chiu , Nate DeSimone , Star Zeng , Ray Ni Subject: [Patch V2 2/8] IntelFsp2Pkg: Add CpuPageTableLib required by DxeIpl in DSC Date: Fri, 31 Mar 2023 17:33:38 +0800 Message-Id: <20230331093344.2609-3-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 QemuFspPkg.dsc of IntelFsp2Pkg. Signed-off-by: Dun Tan Reviewed-by: Chasel Chiu Cc: Nate DeSimone Cc: Star Zeng Cc: Ray Ni --- IntelFsp2Pkg/Tools/Tests/QemuFspPkg.dsc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/IntelFsp2Pkg/Tools/Tests/QemuFspPkg.dsc b/IntelFsp2Pkg/Tools/Tests/QemuFspPkg.dsc index 3155812118..52052692dd 100644 --- a/IntelFsp2Pkg/Tools/Tests/QemuFspPkg.dsc +++ b/IntelFsp2Pkg/Tools/Tests/QemuFspPkg.dsc @@ -1,7 +1,7 @@ ## @file # FSP DSC build file for QEMU platform # -# Copyright (c) 2017 - 2021, Intel Corporation. All rights reserved.
+# Copyright (c) 2017 - 2023, Intel Corporation. All rights reserved.
# # This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License @@ -114,6 +114,7 @@ DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf SerialPortLib|MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.inf !endif + CpuPageTableLib|UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableLib.inf ################################################################################ -- 2.31.1.windows.1