From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id A29041A1E60 for ; Mon, 10 Oct 2016 22:01:16 -0700 (PDT) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga102.jf.intel.com with ESMTP; 10 Oct 2016 22:01:17 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,476,1473145200"; d="scan'208";a="178575799" Received: from ray-dev.ccr.corp.intel.com ([10.239.9.25]) by fmsmga004.fm.intel.com with ESMTP; 10 Oct 2016 22:01:15 -0700 From: Ruiyu Ni To: edk2-devel@lists.01.org Cc: Ard Biesheuvel Date: Tue, 11 Oct 2016 13:01:13 +0800 Message-Id: <20161011050113.197540-1-ruiyu.ni@intel.com> X-Mailer: git-send-email 2.9.0.windows.1 Subject: [PATCH] MdeModulePkg/MdeModulePkg.dec: Fix EBC build failure of PciBus driver X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Oct 2016 05:01:16 -0000 When PciBus is built as EBC, PcdPciDegradeResourceForOptionRom does not have associated value resulting build failure. The patch sets the default value to TRUE, covering the EBC ARCH. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ruiyu Ni Cc: Ard Biesheuvel --- MdeModulePkg/MdeModulePkg.dec | 1 - 1 file changed, 1 deletion(-) diff --git a/MdeModulePkg/MdeModulePkg.dec b/MdeModulePkg/MdeModulePkg.dec index f870b83..42fef75 100644 --- a/MdeModulePkg/MdeModulePkg.dec +++ b/MdeModulePkg/MdeModulePkg.dec @@ -746,7 +746,6 @@ [PcdsFeatureFlag] # @Prompt Turn on PS2 Mouse Extended Verification gEfiMdeModulePkgTokenSpaceGuid.PcdPs2MouseExtendedVerification|TRUE|BOOLEAN|0x00010075 -[PcdsFeatureFlag.X64] ## Indicates whether 64-bit PCI MMIO BARs should degrade to 32-bit in the presence of an option ROM # On X64 platforms, Option ROMs may contain code that executes in the context of a legacy BIOS (CSM), # which requires that all PCI MMIO BARs are located below 4 GB -- 2.9.0.windows.1