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.1311.1662608944402959208 for ; Wed, 07 Sep 2022 20:49:04 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=WxscPodI; spf=permerror, err=too many SPF records (domain: intel.com, ip: 192.55.52.120, 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=1662608944; x=1694144944; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=7AUwrLpUREkJ8rvHglyvZND6szdKtPXLBytExNKEqiY=; b=WxscPodI+MZcnMEtnRxtwWQsd1yiDoDM14l+BCC3By4dRZ9kooMJARXz wTVN0+BiIQPgWR049IP06C826Cu/cyle877AZhe83SAC3W4bsQbH4/WP6 +jkIbGYn51MBT3G9mMwM3cfHWm+p+YEjWXgpJRWoQ9ULKB75Q22ZVE8AN tNLBV8IXuuLtviyixJtrxc/cdpY++F5XyFGhczPz9GNxn4gU6kVx86l31 Ahne1qG26xvlYhvaSFpR+IutwXAeOSaQqLvfFOd3dhOGi4WHkViK3s43D Jho9d81wTdfDBQbZBY1h/boW39IZ+XYrcQJeUv3kBYgTb6qO7ApguSUt/ Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10463"; a="295793840" X-IronPort-AV: E=Sophos;i="5.93,298,1654585200"; d="scan'208";a="295793840" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Sep 2022 20:49:02 -0700 X-IronPort-AV: E=Sophos;i="5.93,298,1654585200"; d="scan'208";a="943170874" Received: from iworam-desk.amr.corp.intel.com ([10.24.80.243]) by fmsmga005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Sep 2022 20:49:02 -0700 From: "Isaac Oram" To: devel@edk2.groups.io Cc: Isaac Oram , Sai Chaganty , Nate DeSimone Subject: [edk2-devel][edk2-platforms][PATCH V1 2/2] PlatformPayloadFeaturePkg/Build: Use MinPlatform PCD include Date: Wed, 7 Sep 2022 20:48:49 -0700 Message-Id: <0bc5d3b1e661578428910b1d60faa115b19a500d.1662608678.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