Patrick Georgi (pgeorgi@google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10005
-gerrit
commit 8e20aebbb13d0d39f7cd6e60b57f8701e586e663 Author: Patrick Georgi pgeorgi@chromium.org Date: Mon Apr 27 18:10:34 2015 +0200
vboot2: get rid of global variable that is used locally and only once
Change-Id: Iaf6d6a8857451fb16916aaae97a6fd5c51bc8cc4 Signed-off-by: Patrick Georgi pgeorgi@chromium.org --- src/vendorcode/google/chromeos/vboot2/Makefile.inc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/vendorcode/google/chromeos/vboot2/Makefile.inc b/src/vendorcode/google/chromeos/vboot2/Makefile.inc index 5e24788..14bf31e 100644 --- a/src/vendorcode/google/chromeos/vboot2/Makefile.inc +++ b/src/vendorcode/google/chromeos/vboot2/Makefile.inc @@ -55,10 +55,9 @@ $(VB2_LIB): $(obj)/config.h V=$(V) \ fwlib20
-VERSTAGE_ELF = $(objcbfs)/verstage.elf verstage-srcs += $(VB2_LIB)
cbfs-files-y += $(call strip_quotes,$(CONFIG_CBFS_PREFIX))/verstage -fallback/verstage-file = $(VERSTAGE_ELF) +fallback/verstage-file = $(objcbfs)/verstage.elf fallback/verstage-type = stage fallback/verstage-compression = none