Skip to content

Commit

Permalink
Addition of PcdStandaloneMmEnable has broken build of BoardPkg(s)
Browse files Browse the repository at this point in the history
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4853

When the PcdStandaloneMmEnable FeaturePcd was added, it was not added
to MinPlatformFeaturesPcd.dsc.inc

Because of this, any existing BoardPkg that does not have Standalone MM
support will no longer build because the default value of FALSE is not
declared during DSC parsing.

The fix is to add the PCD to MinPlatformFeaturesPcd.dsc.inc

Signed-off-by: Nate DeSimone <[email protected]>
  • Loading branch information
nate-desimone committed Sep 20, 2024
1 parent 8fb0b7e commit 9a649df
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# A board can enable a feature by configuring the PCD in the board DSC file
# after this file has been included.
#
# Copyright (C) 2022 Intel Corporation
# Copyright (C) 2022 - 2024 Intel Corporation
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
Expand All @@ -23,3 +23,5 @@
gMinPlatformPkgTokenSpaceGuid.PcdTpm2Enable |FALSE

gMinPlatformPkgTokenSpaceGuid.PcdPerformanceEnable |FALSE

gMinPlatformPkgTokenSpaceGuid.PcdStandaloneMmEnable |FALSE

0 comments on commit 9a649df

Please sign in to comment.