diff options
author | Patrick Georgi <pgeorgi@chromium.org> | 2015-05-05 22:47:00 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-05-07 13:53:34 +0200 |
commit | b2aee6f2e7c61ae87ddfdab00c22775313603981 (patch) | |
tree | 47686c4ffcfc945f3df6ef3624949df854649c26 /src/vendorcode | |
parent | b4a6ca96c01e1312784a4c9b6961697e846b7b00 (diff) |
vboot2: Replace hard coded 'fallback' prefix with Kconfig variable
Change-Id: I9cbdf06f4d0956b5374915f8af7501c6f75b4687
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: http://review.coreboot.org/10113
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/vendorcode')
-rw-r--r-- | src/vendorcode/google/chromeos/vboot2/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vendorcode/google/chromeos/vboot2/Makefile.inc b/src/vendorcode/google/chromeos/vboot2/Makefile.inc index def43ad6b9..a27e2fca1f 100644 --- a/src/vendorcode/google/chromeos/vboot2/Makefile.inc +++ b/src/vendorcode/google/chromeos/vboot2/Makefile.inc @@ -60,9 +60,9 @@ libverstage-srcs += $(VB2_LIB) ifeq ($(CONFIG_SEPARATE_VERSTAGE),y) cbfs-files-y += $(call strip_quotes,$(CONFIG_CBFS_PREFIX))/verstage -fallback/verstage-file = $(objcbfs)/verstage.elf -fallback/verstage-type = stage -fallback/verstage-compression = none +$(call strip_quotes,$(CONFIG_CBFS_PREFIX))/verstage-file = $(objcbfs)/verstage.elf +$(call strip_quotes,$(CONFIG_CBFS_PREFIX))/verstage-type = stage +$(call strip_quotes,$(CONFIG_CBFS_PREFIX))/verstage-compression = none else ifeq ($(VBOOT_STARTS_IN_BOOTBLOCK),y) bootblock-srcs += $(objgenerated)/libverstage.a |