summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2020-01-14 16:25:56 -0800
committerJulius Werner <jwerner@chromium.org>2020-01-25 00:08:17 +0000
commitb38586f77f97d2a294bea14be26daa29068c6e40 (patch)
tree3ee67d3b45e72c8c6bb35f30b97ec79f6380b162 /src
parent86e0ac47557984dcaa92bc1362a29b0941d735cc (diff)
downloadcoreboot-b38586f77f97d2a294bea14be26daa29068c6e40.tar.gz
coreboot-b38586f77f97d2a294bea14be26daa29068c6e40.tar.bz2
coreboot-b38586f77f97d2a294bea14be26daa29068c6e40.zip
vboot: Remove hard dependency on MISSING_BOARD_RESET
Having a working board reset is certainly better when you're running vboot (because otherwise you'll hang when transitioning into recovery mode), but I don't think it should be strictly required, since it's still somewhat usable without. This is particularly important for certain test platforms that don't have a good way to reset but might still be useful for vboot testing/prototyping. Change-Id: Ia765f54b6e2e176e2d54478fb1e0839d8cab9849 Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/38417 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r--src/security/vboot/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/security/vboot/Kconfig b/src/security/vboot/Kconfig
index 7e86c7c1e422..30b99afc8f6c 100644
--- a/src/security/vboot/Kconfig
+++ b/src/security/vboot/Kconfig
@@ -28,7 +28,7 @@ config VBOOT
default n
select VBOOT_LIB
select VBOOT_MOCK_SECDATA if !TPM1 && !TPM2
- depends on !MISSING_BOARD_RESET
+ depends on 0 = 0 # Must have a 'depends on' or board overrides will break it.
help
Enabling VBOOT will use vboot to verify the components of the firmware
(stages, payload, etc).