From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mx.groups.io with SMTP id smtpd.web12.4979.1591701862439813443 for ; Tue, 09 Jun 2020 04:24:22 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.65, mailfrom: ming.tan@intel.com) IronPort-SDR: D0QFVQIs7Focqj4PM4PNUBSbOfyl31Rf6WHd2QET7fvbNk3JbPtenV3O5qL3rHFuMZBABfFuEW u5ra7/33cuXQ== 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:22 -0700 IronPort-SDR: O4u2L/fmMvKMPccsIRepj3p+A047pZW/5iKhG4DNmMQGTG+kOgx9I5qp7ldDJrwVuJjOwv7qxG 4nDCNQLWO3dA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,491,1583222400"; d="scan'208";a="314177551" Received: from shwdejointlab96.ccr.corp.intel.com ([10.239.134.144]) by FMSMGA003.fm.intel.com with ESMTP; 09 Jun 2020 04:24:20 -0700 From: "Tan, Ming" To: devel@edk2.groups.io Cc: Jordan Justen , Andrew Fish , Ray Ni Subject: [PATCH v3 2/4] EmulatorPkg/EmulatorPkg.dsc: Change PCDs type about status code Date: Tue, 9 Jun 2020 19:23:46 +0800 Message-Id: <20200609112353.20824-2-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=3D2786 Since the type of PcdStatusCodeUseSerial and PcdStatusCodeUseMemory in MdeModulePkg.dec are changed, so change them from PcdsFeatureFlag to PcdsFixedAtBuild in dsc file. Cc: Jordan Justen Cc: Andrew Fish Cc: Ray Ni Signed-off-by: Ming Tan --- V3: Split one patch to several patchs, each Pkg has one patch. EmulatorPkg/EmulatorPkg.dsc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/EmulatorPkg/EmulatorPkg.dsc b/EmulatorPkg/EmulatorPkg.dsc index 1fc924ae5a..cbb4b1a1c7 100644 --- a/EmulatorPkg/EmulatorPkg.dsc +++ b/EmulatorPkg/EmulatorPkg.dsc @@ -4,7 +4,7 @@ # The Emulation Platform can be used to debug individual modules, prior to= creating=0D # a real platform. This also provides an example for how an DSC is created= .=0D #=0D -# Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.
=0D +# Copyright (c) 2006 - 2020, Intel Corporation. All rights reserved.
=0D # Portions copyright (c) 2010 - 2011, Apple Inc. All rights reserved.
= =0D #=0D # SPDX-License-Identifier: BSD-2-Clause-Patent=0D @@ -174,7 +174,6 @@ =0D [PcdsFeatureFlag]=0D gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE=0D - gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|TRUE=0D gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreImageLoaderSearchTeSectionFirst= |FALSE=0D gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplBuildPageTables|FALSE=0D =0D @@ -225,6 +224,9 @@ # 0-PCANSI, 1-VT100, 2-VT00+, 3-UTF8, 4-TTYTERM=0D gEfiMdePkgTokenSpaceGuid.PcdDefaultTerminalType|1=0D =0D + # Status Code support=0D + gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|TRUE=0D +=0D [PcdsDynamicDefault.common.DEFAULT]=0D gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64|0=0D gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64|0=0D --=20 2.24.0.windows.2