vboot: allow options to be selected from .config
In order to allow easier setting of variables without changing mainboards and/or chipset Kconfig files allow the vboot options to be selected by the user. Change-Id: I6e995eb209b4cd63c73ef679d0c5699759d129f5 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/10153 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
d1cf44c596
commit
d2ab4e420d
|
@ -17,14 +17,14 @@
|
||||||
##
|
##
|
||||||
|
|
||||||
config VBOOT_STARTS_IN_BOOTBLOCK
|
config VBOOT_STARTS_IN_BOOTBLOCK
|
||||||
bool
|
bool "Vboot starts verifying in bootblock"
|
||||||
default n
|
default n
|
||||||
depends on VBOOT_VERIFY_FIRMWARE
|
depends on VBOOT_VERIFY_FIRMWARE
|
||||||
help
|
help
|
||||||
Firmware verification happens during or at the end of bootblock.
|
Firmware verification happens during or at the end of bootblock.
|
||||||
|
|
||||||
config VBOOT_STARTS_IN_ROMSTAGE
|
config VBOOT_STARTS_IN_ROMSTAGE
|
||||||
bool
|
bool "Vboot starts verifying in romstage"
|
||||||
default n
|
default n
|
||||||
depends on VBOOT_VERIFY_FIRMWARE && !VBOOT_STARTS_IN_BOOTBLOCK
|
depends on VBOOT_VERIFY_FIRMWARE && !VBOOT_STARTS_IN_BOOTBLOCK
|
||||||
help
|
help
|
||||||
|
@ -51,12 +51,12 @@ config VBOOT_DISABLE_DEV_ON_RECOVERY
|
||||||
handy on embedded devices with limited input capabilities.
|
handy on embedded devices with limited input capabilities.
|
||||||
|
|
||||||
config SEPARATE_VERSTAGE
|
config SEPARATE_VERSTAGE
|
||||||
bool
|
bool "Vboot verification is built into a separate stage"
|
||||||
default n
|
default n
|
||||||
depends on VBOOT_VERIFY_FIRMWARE
|
depends on VBOOT_VERIFY_FIRMWARE
|
||||||
|
|
||||||
config RETURN_FROM_VERSTAGE
|
config RETURN_FROM_VERSTAGE
|
||||||
bool
|
bool "The separate verification stage returns to its caller"
|
||||||
default n
|
default n
|
||||||
depends on SEPARATE_VERSTAGE
|
depends on SEPARATE_VERSTAGE
|
||||||
help
|
help
|
||||||
|
|
Loading…
Reference in New Issue