diff options
author | Patrick Georgi <pgeorgi@chromium.org> | 2015-04-27 18:10:34 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-04-28 10:20:16 +0200 |
commit | 66cdba7ea5729a4d96207f305d25ca5bde9eb0b0 (patch) | |
tree | 18f3abf1261d4a10a78bd607941fd5bd41952e74 | |
parent | ba80887cfdbca8e804a4191997a9beaa5ce44f6f (diff) |
vboot2: get rid of global variable that is used locally and only once
Change-Id: Iaf6d6a8857451fb16916aaae97a6fd5c51bc8cc4
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: http://review.coreboot.org/10005
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rw-r--r-- | src/vendorcode/google/chromeos/vboot2/Makefile.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vendorcode/google/chromeos/vboot2/Makefile.inc b/src/vendorcode/google/chromeos/vboot2/Makefile.inc index 5e24788e6d..14bf31ec03 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 |