1## SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0-or-later 2 3config CBFS 4 bool "CBFS support" 5 default y 6 help 7 CBFS is the archive format of coreboot 8 9if CBFS 10 11config DEBUG_CBFS 12 bool "Output verbose CBFS debug messages" 13 default n 14 help 15 This option enables additional CBFS related debug messages. 16 17config ENABLE_CBFS_FALLBACK 18 bool "Fallback to RO (COREBOOT) region" 19 default n 20 help 21 When this option is enabled, the CBFS code will look for a file in the 22 RO (COREBOOT) region, if it isn't available in the active RW region. 23 This option makes sense only if CONFIG_VBOOT was enabled in the coreboot. 24 25config CBFS_VERIFICATION 26 bool "Enable CBFS verification" 27 depends on VBOOT_LIB 28 help 29 This option enables hash verification of CBFS files in RO (COREBOOT) and RW regions. 30 31endif 32