From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mx.groups.io with SMTP id smtpd.web11.47111.1682330765582511830 for ; Mon, 24 Apr 2023 03:06:11 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=UZ430Xgf; spf=pass (domain: intel.com, ip: 192.55.52.93, 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=1682330771; x=1713866771; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=QOMD60aypbYFZKrYZ4nT24WRFp8Ju0Rso7AuO04Mkc0=; b=UZ430XgfQHfPi3wGq4HdbeYxky+kzyHNJ1wEWZ4ChA86PdAt3/0TPeug cGKp0oAXAmV+tkGTZNydqMNNOig6d8Y5xzOw7Tv3fu6tLL3QAtvmU5IkW Ixmrbw8NmeAltpe3hTE00020LyjVCqWzjnHu8kfeA7AHh4b8mKTQhmjq8 7pBpahHI7Hsopq47W0w86qioFcCVgj0PLNyJSerue4KcXD+sJexSlVMfO xp3kKENJlZaOXbloxmumGsDNmyTFh1QlDd9Uln5kR9Wm0uRToUInfw6iq cYe4twQ+OoJukj5kbpdo9ycCoPItFvzNYga8svN7Jsib3mItyQwwUPQgu w==; X-IronPort-AV: E=McAfee;i="6600,9927,10689"; a="343897759" X-IronPort-AV: E=Sophos;i="5.99,222,1677571200"; d="scan'208";a="343897759" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Apr 2023 03:06:10 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10689"; a="686766941" X-IronPort-AV: E=Sophos;i="5.99,222,1677571200"; d="scan'208";a="686766941" Received: from shwdeopenlab702.ccr.corp.intel.com ([10.239.55.92]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Apr 2023 03:06:09 -0700 From: "duntan" To: devel@edk2.groups.io Cc: Andrew Fish , Ray Ni Subject: [Patch V3 2/8] EmulatorPkg: Add CpuPageTableLib required by DxeIpl in DSC Date: Mon, 24 Apr 2023 18:05:46 +0800 Message-Id: <20230424100552.2718-3-dun.tan@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: <20230424100552.2718-1-dun.tan@intel.com> References: <20230424100552.2718-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 Reviewed-by: 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