From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mx.groups.io with SMTP id smtpd.web10.57358.1679971453459755339 for ; Mon, 27 Mar 2023 19:44:13 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=YDEzG7S1; spf=pass (domain: intel.com, ip: 192.55.52.151, 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=1679971453; x=1711507453; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=uzNzXNL0f6E2V0UqHJmlhXJNd2sPMtlbsKSVM/brLgo=; b=YDEzG7S1oGK00Ip8A+RRouAFLUikMwlLzhQQjJpWe03wjbbHgxiBP1pK tRF28RtqDcriW1E92j9qlpkLSJmCCCfNYMENJTqMUQDcsV+p0KFQ6w5zl vVW6wsRD9tdYYvqXzujgeukyF/e38Vmb+jd5RPdKBCnNnrm1YAW3n7STf No3k6QIDkvWCv/MN2yTkWfleTl/pYVqfSCOmIeCht3Dsy8aqgz5/kWl4M SVyZRrCJH/xuJgJ9hXYr56hNq0kV9LyNM3X6jd3W+QIIrvWAFOKku51Ig 3TNOpwOpjEW+ogbB3zL3EdqaA5J7skbrqtxsuQw6E1uOWuhUMl2XQHI8D Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10662"; a="320852651" X-IronPort-AV: E=Sophos;i="5.98,296,1673942400"; d="scan'208";a="320852651" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Mar 2023 19:44:08 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10662"; a="807700354" X-IronPort-AV: E=Sophos;i="5.98,296,1673942400"; d="scan'208";a="807700354" Received: from shwdeopenlab702.ccr.corp.intel.com ([10.239.55.92]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Mar 2023 19:44:04 -0700 From: "duntan" To: devel@edk2.groups.io Cc: Andrew Fish , Ray Ni Subject: [PATCH 2/9] EmulatorPkg: Add CpuPageTableLib required by DxeIpl in DSC Date: Tue, 28 Mar 2023 10:42:55 +0800 Message-Id: <20230328024302.2085-3-dun.tan@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: <20230328024302.2085-1-dun.tan@intel.com> References: <20230328024302.2085-1-dun.tan@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Add CpuPageTableLib instance required by DxeIpl in EmulatorPkg.dsc. Signed-off-by: Dun Tan Cc: Andrew Fish Cc: Ray Ni --- EmulatorPkg/EmulatorPkg.dsc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EmulatorPkg/EmulatorPkg.dsc b/EmulatorPkg/EmulatorPkg.dsc index b44435d7e6..d1fb9d9256 100644 --- a/EmulatorPkg/EmulatorPkg.dsc +++ b/EmulatorPkg/EmulatorPkg.dsc @@ -4,7 +4,7 @@ # The Emulation Platform can be used to debug individual modules, prior to creating # a real platform. This also provides an example for how an DSC is created. # -# Copyright (c) 2006 - 2021, Intel Corporation. All rights reserved.
+# Copyright (c) 2006 - 2023, Intel Corporation. All rights reserved.
# Portions copyright (c) 2010 - 2011, Apple Inc. All rights reserved.
# Copyright (c) Microsoft Corporation. # @@ -66,6 +66,7 @@ PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf FrameBufferBltLib|MdeModulePkg/Library/FrameBufferBltLib/FrameBufferBltLib.inf + CpuPageTableLib|UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableLib.inf # # UEFI & PI -- 2.31.1.windows.1