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:47 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=neBTzQ3a; 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=1680255406; x=1711791406; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=uzNzXNL0f6E2V0UqHJmlhXJNd2sPMtlbsKSVM/brLgo=; b=neBTzQ3azJIbU4wd5QDphQnnIf/bfuyyWixvKGoP4yTyYguv0sTIkSpW bZElI4BbN4n4hMJ02j5mS3tDiFssdpZB5o/imTv4cDjo7tJw3ohEzY1nf jR38JOPMyFAL+Du2LC25hLl/HFRpssIRfXUtIAPoIIQ+GfMR/q4Qv6WIw TllhfkvwvPlbqrtzSwI+FVJrvou/cTqx8uUVbMcxb7VHUwXsfrRLXXKsz tYA+vi0qsaI9qnqjlltdzKlqOjLWQkeYweyjnCUvErsauIhdPwBoLiRQe bFkkYvMEvnwJy2A+F1EU4X4FKqqz1mxxSTt21/PPrT2XsQOewKB8A/ruy w==; X-IronPort-AV: E=McAfee;i="6600,9927,10665"; a="340133722" X-IronPort-AV: E=Sophos;i="5.98,307,1673942400"; d="scan'208";a="340133722" 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:42 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10665"; a="635229503" X-IronPort-AV: E=Sophos;i="5.98,307,1673942400"; d="scan'208";a="635229503" 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:38 -0700 From: "duntan" To: devel@edk2.groups.io Cc: Andrew Fish , Ray Ni Subject: [Patch V2 1/8] EmulatorPkg: Add CpuPageTableLib required by DxeIpl in DSC Date: Fri, 31 Mar 2023 17:33:37 +0800 Message-Id: <20230331093344.2609-2-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 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