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.web10.50603.1680255441226956235 for ; Fri, 31 Mar 2023 02:37:21 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=UjeiGhjl; 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=1680255441; x=1711791441; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=vby2PCnMyZTVzzgSg3Sh+B35WUWQ8hVWhHshzs1Bmyg=; b=UjeiGhjlVY9862KfmeCgKTAEqkudIISvNsswPGM6S51Ov6gzq3kalcOk mLleQfV7RSm8LO+JfRVRoZeOrNNq7c/FfPch6ZPp5tnmdEq85PCMq01Ow RYPH2r8BLXcMx4O4zN6/9vN7pcW3hA7VVlhSJeMT3Kn4DIUXZRl5knit7 GBQLUWUirpACTsUr47k/wAO1gsLu5oArgwdXEi2dcoM5/+bVZxO9mN3Zw DqVgKvXNn9tBHUKCh7kpVQrtcMtlLgaL8z49vKaXWvcekP7wiIfOzbbVK WfexQnOAUMTO1nhnCeCuel9WuF9en2O0aENR00/HPTtGchiLrlipuyEPe Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10665"; a="340133805" X-IronPort-AV: E=Sophos;i="5.98,307,1673942400"; d="scan'208";a="340133805" 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:51 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10665"; a="635229545" X-IronPort-AV: E=Sophos;i="5.98,307,1673942400"; d="scan'208";a="635229545" 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:49 -0700 From: "duntan" To: devel@edk2.groups.io Cc: Liming Gao , Ray Ni , Jian J Wang Subject: [Patch V2 5/8] MdeModulePkg: Add UefiCpuPkg.dec to pass DependencyCheck Date: Fri, 31 Mar 2023 17:33:41 +0800 Message-Id: <20230331093344.2609-6-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 UefiCpuPkg/UefiCpuPkg.dec in MdeModulePkg.ci.yaml to pass DependencyCheck since DxeIpl in MdeModulePkg needs to consume CpuPageTableLib in UefiCpuPkg. Signed-off-by: Dun Tan Cc: Liming Gao Cc: Ray Ni Cc: Jian J Wang --- MdeModulePkg/MdeModulePkg.ci.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/MdeModulePkg/MdeModulePkg.ci.yaml b/MdeModulePkg/MdeModulePkg.ci.yaml index f69989087b..d2616f4cdc 100644 --- a/MdeModulePkg/MdeModulePkg.ci.yaml +++ b/MdeModulePkg/MdeModulePkg.ci.yaml @@ -2,7 +2,7 @@ # CI configuration for MdeModulePkg # # Copyright (c) Microsoft Corporation -# Copyright (c) 2020, Intel Corporation. All rights reserved.
+# Copyright (c) 2020 - 2023, Intel Corporation. All rights reserved.
# (C) Copyright 2021 Hewlett Packard Enterprise Development LP
# SPDX-License-Identifier: BSD-2-Clause-Patent ## @@ -51,7 +51,8 @@ "MdePkg/MdePkg.dec", "MdeModulePkg/MdeModulePkg.dec", "StandaloneMmPkg/StandaloneMmPkg.dec", - "ArmPkg/ArmPkg.dec" # this should be fixed by promoting an abstraction + "ArmPkg/ArmPkg.dec", # this should be fixed by promoting an abstraction + "UefiCpuPkg/UefiCpuPkg.dec" ], # For host based unit tests "AcceptableDependencies-HOST_APPLICATION":[ -- 2.31.1.windows.1