Aaron Durbin (adurbin@chromium.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9969
-gerrit
commit ca20b10e01e97247187cbba000ab80cecf57ec71 Author: Aaron Durbin adurbin@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@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..cb492b3 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_VERSTAGK_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 ###############################################################################