From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mx.groups.io with SMTP id smtpd.web11.18315.1677175578044889092 for ; Thu, 23 Feb 2023 10:06:26 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=WjoHcwdi; spf=pass (domain: intel.com, ip: 192.55.52.115, mailfrom: yuanhao.xie@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1677175586; x=1708711586; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=pbxYuJ929jBFzPBINKtknTd/o8o/4mW0unvGjqAwiEo=; b=WjoHcwdik1D9Qy9LAVP81jRwE82WmhWduLt9dwT3vLuuRATBK8T2W2fq ZXQXD7Ve6PoPzMnWMae/CZUcTLIiSR+qPJgvOGzOYRDq+GjnMLw5VyrkE UsGrv57S19Nau5ik3wYnSSiWdudoVLH/4OGgD+E7EZZ6gqWDVRKIOZXLU nkMPgXzsjptCLMtBRUwiPjofjr4C3CvjSSPX1EzxP0HGBACMgThv67uYd BpHGkwKM/t5drsuTSBlPG4ngX2QDmfXQPZMgbef3JVhWMGZCQ6XQEYevJ pf8UballOzJd+fBrsauqmrUwBJw+buqoBJWgTDyoYRD6C6rKVIuKMFOEM A==; X-IronPort-AV: E=McAfee;i="6500,9779,10630"; a="333288137" X-IronPort-AV: E=Sophos;i="5.97,322,1669104000"; d="scan'208";a="333288137" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Feb 2023 10:06:07 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10630"; a="918107024" X-IronPort-AV: E=Sophos;i="5.97,322,1669104000"; d="scan'208";a="918107024" Received: from shwdeopenlab705.ccr.corp.intel.com ([10.239.182.166]) by fmsmga006-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Feb 2023 10:06:06 -0800 From: "Yuanhao Xie" To: devel@edk2.groups.io Cc: Guo Dong , Ray Ni , Sean Rhodes , James Lu , Gua Guo Subject: [Patch V3 5/6] UefiPayloadPkg: Add CpuPageTableLib required by MpInitLib. Date: Fri, 24 Feb 2023 02:05:34 +0800 Message-Id: <20230223180535.10383-6-yuanhao.xie@intel.com> X-Mailer: git-send-email 2.36.1.windows.1 In-Reply-To: <20230223180535.10383-1-yuanhao.xie@intel.com> References: <20230223180535.10383-1-yuanhao.xie@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Add CpuPageTableLib required by MpInitLib in UefiPayloadPkg. Cc: Guo Dong Cc: Ray Ni Cc: Sean Rhodes Cc: James Lu Cc: Gua Guo Signed-off-by: Yuanhao Xie --- UefiPayloadPkg/UefiPayloadPkg.dsc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UefiPayloadPkg/UefiPayloadPkg.dsc b/UefiPayloadPkg/UefiPayloadPkg.dsc index 2dbd875f37..8cbbbe9a05 100644 --- a/UefiPayloadPkg/UefiPayloadPkg.dsc +++ b/UefiPayloadPkg/UefiPayloadPkg.dsc @@ -3,7 +3,7 @@ # # Provides drivers and definitions to create uefi payload for bootloaders. # -# Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.
+# Copyright (c) 2014 - 2023, Intel Corporation. All rights reserved.
# Copyright (c) Microsoft Corporation. # SPDX-License-Identifier: BSD-2-Clause-Patent # @@ -340,6 +340,7 @@ DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf !endif CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf + CpuPageTableLib|UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableLib.inf MpInitLib|UefiCpuPkg/Library/MpInitLib/DxeMpInitLib.inf !if $(PERFORMANCE_MEASUREMENT_ENABLE) PerformanceLib|MdeModulePkg/Library/DxePerformanceLib/DxePerformanceLib.inf -- 2.36.1.windows.1