From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mx.groups.io with SMTP id smtpd.web09.6179.1662861150365084110 for ; Sat, 10 Sep 2022 18:52:30 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=A5cHGF1Y; spf=pass (domain: intel.com, ip: 192.55.52.43, mailfrom: isaac.w.oram@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1662861150; x=1694397150; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=7AUwrLpUREkJ8rvHglyvZND6szdKtPXLBytExNKEqiY=; b=A5cHGF1YiJiuo5c5QZ2umKOKTStCeQNGAiJcwxgkhxiS1OtC8Y66rSa0 fMEIvEJDgP+L2EUp47A4lbx9N07cnKsm0lO2/yElbu06KcbQd+DfLZDQX dNvmB7igKup3bLPuXG+pP0hfPTx6SpRd7izzpxQgyJ8BgJzSnijqeEXKv DSYLrKw0sMrSz2t1hP0xiaY5FN727/L82ny7j/tzWx1jAUphsdysoOJpR d3hh7JBHIamo2VURYHLu/l4mQS2Ivd7Hk3Gm0yD+zOhsy65fzU4UmTAvm LFSGHDvyEqtlvxx3N8HcrILmBsAt+ZThi28PX2tquhk3J9JZPIvFQdEBQ g==; X-IronPort-AV: E=McAfee;i="6500,9779,10466"; a="383981495" X-IronPort-AV: E=Sophos;i="5.93,307,1654585200"; d="scan'208";a="383981495" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Sep 2022 18:52:29 -0700 X-IronPort-AV: E=Sophos;i="5.93,307,1654585200"; d="scan'208";a="791199294" Received: from iworam-desk.amr.corp.intel.com ([10.24.80.243]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Sep 2022 18:52:28 -0700 From: "Isaac Oram" To: devel@edk2.groups.io Cc: Isaac Oram , Sai Chaganty , Nate DeSimone Subject: [edk2-devel][edk2-platforms][PATCH V2 2/3] PlatformPayloadFeaturePkg/Build: Use MinPlatform PCD include Date: Sat, 10 Sep 2022 18:52:17 -0700 Message-Id: <11f681b6aed545635993f317a22d351d894ee3ee.1662760603.git.isaac.w.oram@intel.com> X-Mailer: git-send-email 2.36.1.windows.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Fix build issue from removed PCD and use MinPlatformFeaturesPcd.dsc.inc. Cc: Sai Chaganty Cc: Nate DeSimone Signed-off-by: Isaac Oram --- .../PlatformPayloadFeaturePkg.dsc | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/Features/Intel/PlatformPayloadFeaturePkg/PlatformPayloadFeaturePkg.dsc b/Features/Intel/PlatformPayloadFeaturePkg/PlatformPayloadFeaturePkg.dsc index 1b79e0039b..e36e5d6e1e 100644 --- a/Features/Intel/PlatformPayloadFeaturePkg/PlatformPayloadFeaturePkg.dsc +++ b/Features/Intel/PlatformPayloadFeaturePkg/PlatformPayloadFeaturePkg.dsc @@ -48,16 +48,13 @@ # ################################################################################ -# -# Since there are no 32b libraries or components in this package, these PCD are specified for 64b only -# -[PcdsFeatureFlag] # - # PCD needed for MinPlatform build includes + # MinPlatform common include for required feature PCD + # These PCD must be set before the core include files, CoreCommonLib, + # CorePeiLib, and CoreDxeLib. + # Optional MinPlatformPkg features should be enabled after this # - gMinPlatformPkgTokenSpaceGuid.PcdSmiHandlerProfileEnable |FALSE - gMinPlatformPkgTokenSpaceGuid.PcdUefiSecureBootEnable |FALSE - gMinPlatformPkgTokenSpaceGuid.PcdPerformanceEnable |FALSE + !include MinPlatformPkg/Include/Dsc/MinPlatformFeaturesPcd.dsc.inc [PcdsPatchableInModule] gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x7 -- 2.36.1.windows.1