libpayload/libcbfs/Kconfig: Make CBFS_VERIFICATION depend on VBOOT_LIB

CBFS_VERIFICATION was depending on the VBOOT instead of on VBOOT_LIB,
which made enabling CBFS_VERIFICATION impossible. VBOOT is not
available, like in the main coreboot, but is was changed to VBOOT_LIB,
and was not correctly adjusted in patch instroducing CBFS_VERIFICAITON
option.

Change-Id: Ie23bad5f0ed3faf17a2ed7a3ad99310ee803edd2
Signed-off-by: Jakub Czapiga <jacz@semihalf.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61031
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Julius Werner <jwerner@chromium.org>
This commit is contained in:
Jakub Czapiga 2022-01-12 10:07:41 +00:00 committed by Paul Fagerburg
parent 6b416ffc6a
commit a2f51f2225
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ config ENABLE_CBFS_FALLBACK
config CBFS_VERIFICATION config CBFS_VERIFICATION
bool "Enable CBFS verification" bool "Enable CBFS verification"
depends on VBOOT depends on VBOOT_LIB
help help
This option enables hash verification of CBFS files in RO (COREBOOT) and RW regions. This option enables hash verification of CBFS files in RO (COREBOOT) and RW regions.