blob: b6639928f4afeabc40c5b72225057043cd3272a3 [file] [log] [blame]
Simon Glassdeb959992017-04-26 22:27:59 -06001config FS_CBFS
2 bool "Enable CBFS (Coreboot Filesystem)"
3 help
4 Define this to enable support for reading from a Coreboot
5 filesystem. This is a ROM-based filesystem used for accessing files
6 on systems that use coreboot as the first boot-loader and then load
7 U-Boot to actually boot the Operating System. You can also enable
8 CMD_CBFS to get command-line access.
Simon Glass72b24652019-08-14 19:56:10 -06009
10config SPL_FS_CBFS
11 bool "Enable CBFS (Coreboot Filesystem) in SPL"
Tom Rinib3401992022-06-10 23:03:09 -040012 depends on SPL
Simon Glass72b24652019-08-14 19:56:10 -060013 help
14 Define this to enable support for reading from a Coreboot
15 filesystem. This is a ROM-based filesystem used for accessing files
16 on systems that use coreboot as the first boot-loader and then load
17 U-Boot to actually boot the Operating System.
18
19 Note that most functions in the CBFS API do not work with SPL. Only
20 those which accept a cbfs_priv * can be used, since BSS is not
21 available.