diff options
author | Paul Kocialkowski <contact@paulk.fr> | 2016-07-24 12:14:38 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2016-08-08 12:17:00 +0200 |
commit | 61486b506d5f3be1ea02aa82df290bd7c18b1fda (patch) | |
tree | 1f769d59eec95dba1740cd5316929fbce3c84c1c /src/vendorcode/google/chromeos | |
parent | 5d4194978275c2e3acf09788f80887023ca9ffe8 (diff) |
Use VBOOT_SOURCE instead of hardcoding vboot path
This replaces all occurrences of a hardcoded vboot path to the
VBOOT_SOURCE variable, that may be overridden from the command line,
witch fallback to the source from 3rdparty.
Change-Id: Ia57d498d38719cc71e17060b76b0162c4ab363ed
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Reviewed-on: https://review.coreboot.org/15825
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/vendorcode/google/chromeos')
-rw-r--r-- | src/vendorcode/google/chromeos/Kconfig | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/vendorcode/google/chromeos/Kconfig b/src/vendorcode/google/chromeos/Kconfig index 1b71553a67..c3f909487f 100644 --- a/src/vendorcode/google/chromeos/Kconfig +++ b/src/vendorcode/google/chromeos/Kconfig @@ -193,23 +193,23 @@ endmenu # GBB menu "Vboot Keys" config VBOOT_ROOT_KEY string "Root key (public)" - default "3rdparty/vboot/tests/devkeys/root_key.vbpubk" + default "$(VBOOT_SOURCE)/tests/devkeys/root_key.vbpubk" config VBOOT_RECOVERY_KEY string "Recovery key (public)" - default "3rdparty/vboot/tests/devkeys/recovery_key.vbpubk" + default "$(VBOOT_SOURCE)/tests/devkeys/recovery_key.vbpubk" config VBOOT_FIRMWARE_PRIVKEY string "Firmware key (private)" - default "3rdparty/vboot/tests/devkeys/firmware_data_key.vbprivk" + default "$(VBOOT_SOURCE)/tests/devkeys/firmware_data_key.vbprivk" config VBOOT_KERNEL_KEY string "Kernel subkey (public)" - default "3rdparty/vboot/tests/devkeys/kernel_subkey.vbpubk" + default "$(VBOOT_SOURCE)/tests/devkeys/kernel_subkey.vbpubk" config VBOOT_KEYBLOCK string "Keyblock to use for the RW regions" - default "3rdparty/vboot/tests/devkeys/firmware.keyblock" + default "$(VBOOT_SOURCE)/tests/devkeys/firmware.keyblock" config VBOOT_KEYBLOCK_VERSION int "Keyblock version number" |