Attention is currently required from: Jason Glenesk, Raul Rangel, Matt DeVillier, Felix Held.
Fred Reitberger has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/70208 )
Change subject: soc/amd/common/Makefile.inc: Extend if case coverage ......................................................................
soc/amd/common/Makefile.inc: Extend if case coverage
Extend the coverage of the 'ifeq ($(CONFIG_SOC_AMD_COMMON),y)' case to the entire file. This matches the coverage of the related Kconfig.
Add comments to endif to show which if they are ending.
Signed-off-by: Fred Reitberger reitbergerfred@gmail.com Change-Id: I369e23e7ee9463ca1ae487d1e2181c760ae1bab2 --- M src/soc/amd/common/Makefile.inc 1 file changed, 18 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/08/70208/1
diff --git a/src/soc/amd/common/Makefile.inc b/src/soc/amd/common/Makefile.inc index 3130a0c..4248851 100644 --- a/src/soc/amd/common/Makefile.inc +++ b/src/soc/amd/common/Makefile.inc @@ -4,7 +4,6 @@ subdirs-y += fsp subdirs-y += pi subdirs-y += vboot -endif
ifneq ($(CONFIG_AMDFW_CONFIG_FILE), ) FIRMWARE_LOCATION=$(shell grep -e FIRMWARE_LOCATION $(CONFIG_AMDFW_CONFIG_FILE) | awk '{print $$2}') @@ -43,6 +42,8 @@ )) endif # ifeq ($(CONFIG_VBOOT_GSCVD),y)
-endif +endif # ifneq ($(CONFIG_AMDFW_CONFIG_FILE), )
MAINBOARD_BLOBS_DIR := $(call strip_quotes, $(CONFIG_APCB_BLOBS_DIR)) + +endif # ifeq ($(CONFIG_SOC_AMD_COMMON),y)