Attention is currently required from: Jason Glenesk, Raul Rangel, Marshall Dawson. Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/56314 )
Change subject: soc/amd/common/block/cpu/mca: make building the BERT support conditional ......................................................................
soc/amd/common/block/cpu/mca: make building the BERT support conditional
Only when ACPI_BERT is selected the BERT functionality needs to be included in the build.
Change-Id: I8a21562f4535fb0ea3c53f2ea8df50f66cc6a64c Signed-off-by: Felix Held felix-coreboot@felixheld.de --- M src/soc/amd/common/block/cpu/mca/Makefile.inc 1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/14/56314/1
diff --git a/src/soc/amd/common/block/cpu/mca/Makefile.inc b/src/soc/amd/common/block/cpu/mca/Makefile.inc index 0232805..fd9e573 100644 --- a/src/soc/amd/common/block/cpu/mca/Makefile.inc +++ b/src/soc/amd/common/block/cpu/mca/Makefile.inc @@ -1,14 +1,14 @@ ifeq ($(CONFIG_SOC_AMD_COMMON_BLOCK_MCA_COMMON),y) ramstage-y += mca_common.c -ramstage-y += mca_common_bert.c +ramstage-$(CONFIG_ACPI_BERT) += mca_common_bert.c endif # CONFIG_SOC_AMD_COMMON_BLOCK_MCA_COMMON
ifeq ($(CONFIG_SOC_AMD_COMMON_BLOCK_MCA),y) -ramstage-y += mca_bert.c +ramstage-$(CONFIG_ACPI_BERT) += mca_bert.c ramstage-y += mca.c endif # CONFIG_SOC_AMD_COMMON_BLOCK_MCA
ifeq ($(CONFIG_SOC_AMD_COMMON_BLOCK_MCAX),y) -ramstage-y += mcax_bert.c +ramstage-$(CONFIG_ACPI_BERT) += mcax_bert.c ramstage-y += mcax.c endif # CONFIG_SOC_AMD_COMMON_BLOCK_MCAX