[coreboot-gerrit] Patch set updated for coreboot: 3a078db arm: guard verstage rules

Aaron Durbin (adurbin@chromium.org) gerrit at coreboot.org
Thu Apr 23 00:15:34 CEST 2015


Aaron Durbin (adurbin at chromium.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9969

-gerrit

commit 3a078dba1298d2dc84ea120be6c951af331366fb
Author: Aaron Durbin <adurbin at chromium.org>
Date:   Wed Apr 22 12:10:06 2015 -0500

    arm: guard verstage rules
    
    Do not unconditially supply verstage rules for all
    platforms.
    
    Change-Id: Ic0713350aa21a9966fca828211750d25c2b6b71d
    Signed-off-by: Aaron Durbin <adurbin at chromium.org>
---
 src/arch/arm/Makefile.inc | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/arch/arm/Makefile.inc b/src/arch/arm/Makefile.inc
index 4e23f84..f9a01af 100644
--- a/src/arch/arm/Makefile.inc
+++ b/src/arch/arm/Makefile.inc
@@ -74,6 +74,8 @@ endif # CONFIG_ARCH_BOOTBLOCK_ARM
 # verification stage
 ###############################################################################
 
+ifeq ($(CONFIG_ARCH_VERSTAGE_ARM),y)
+
 $(objcbfs)/verstage.debug: $$(verstage-objs) $(obj)/mainboard/$(MAINBOARDDIR)/memlayout.verstage.ld $$(VB2_LIB)
 	@printf "    LINK       $(subst $(obj)/,,$(@))\n"
 	$(LD_verstage) --gc-sections -static -o $@ -L$(obj) -T $(obj)/mainboard/$(MAINBOARDDIR)/memlayout.verstage.ld --start-group $(verstage-objs) --end-group
@@ -86,6 +88,8 @@ verstage-y += memmove.S
 verstage-y += stages.c
 verstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
 
+endif # CONFIG_ARCH_VERSTAGE_ARM
+
 ###############################################################################
 # romstage
 ###############################################################################



More information about the coreboot-gerrit mailing list