From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga03.intel.com (mga03.intel.com []) by mx.groups.io with SMTP id smtpd.web12.4980.1591701864127752038 for ; Tue, 09 Jun 2020 04:24:26 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: ming.tan@intel.com) IronPort-SDR: oDfKWDI+F/Ko6Qh1B0Zodnea3m+Kn+P6CSkJxyBXxJEJVhrTzDnR8XRfCKRqDSuC2s61Ci87il xABvD2XasFRw== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Jun 2020 04:24:26 -0700 IronPort-SDR: UOwL9iOuGwsVVoOCWWNBaJyhSHE/LROSMsY/DyS1JbvWs+p0TCSEVDHJtdz6xO+NyPRTt3HfTA V9izawws3zrw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,491,1583222400"; d="scan'208";a="314177567" Received: from shwdejointlab96.ccr.corp.intel.com ([10.239.134.144]) by FMSMGA003.fm.intel.com with ESMTP; 09 Jun 2020 04:24:25 -0700 From: "Tan, Ming" To: devel@edk2.groups.io Cc: Agyeman Prince Subject: [PATCH 1/5] Platform/Intel/SimicsOpenBoardPkg: Change PCDs type about status code Date: Tue, 9 Jun 2020 19:23:49 +0800 Message-Id: <20200609112353.20824-5-ming.tan@intel.com> X-Mailer: git-send-email 2.24.0.windows.2 In-Reply-To: <20200609112353.20824-1-ming.tan@intel.com> References: <20200609112353.20824-1-ming.tan@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3D2791 Since the type of PcdStatusCodeUseSerial and PcdStatusCodeUseMemory in MdeModulePkg.dec are changed, so change them from PcdsFeatureFlag to PcdsFixedAtBuild in dsc files. Cc: Agyeman Prince Signed-off-by: Ming Tan --- .../BoardX58Ich10/OpenBoardPkgPcd.dsc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Platform/Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkgPc= d.dsc b/Platform/Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkgPcd.dsc index cd98d09f01..52cdf9ec0f 100644 --- a/Platform/Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkgPcd.dsc +++ b/Platform/Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkgPcd.dsc @@ -1,7 +1,7 @@ ## @file=0D # PCD configuration build description file for the X58Ich10 board.=0D #=0D -# Copyright (c) 2019 Intel Corporation. All rights reserved.
=0D +# Copyright (c) 2019 - 2020, Intel Corporation. All rights reserved.
= =0D #=0D # SPDX-License-Identifier: BSD-2-Clause-Patent=0D #=0D @@ -37,12 +37,6 @@ gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|TRUE=0D gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol|TRUE=0D gEfiMdeModulePkgTokenSpaceGuid.PcdPciBusHotplugDeviceSupport|FALSE=0D - gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory|TRUE=0D -!if $(TARGET) =3D=3D RELEASE=0D - gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE=0D -!else=0D - gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|TRUE=0D -!endif=0D gEfiMdeModulePkgTokenSpaceGuid.PcdSupportUpdateCapsuleReset|FALSE=0D gUefiCpuPkgTokenSpaceGuid.PcdCpuHotPlugSupport|FALSE=0D gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmEnableBspElection|FALSE=0D @@ -128,6 +122,12 @@ gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1=0D gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0xc000=0D gEfiMdeModulePkgTokenSpaceGuid.PcdVpdBaseAddress|0x0=0D + gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory|TRUE=0D +!if $(TARGET) =3D=3D RELEASE=0D + gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE=0D +!else=0D + gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|TRUE=0D +!endif=0D # DEBUG_INIT 0x00000001 // Initialization=0D # DEBUG_WARN 0x00000002 // Warnings=0D # DEBUG_LOAD 0x00000004 // Load events=0D --=20 2.24.0.windows.2