Simon Glass | deb95999 | 2017-04-26 22:27:59 -0600 | [diff] [blame] | 1 | config 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 Glass | 72b2465 | 2019-08-14 19:56:10 -0600 | [diff] [blame] | 9 | |
| 10 | config SPL_FS_CBFS |
| 11 | bool "Enable CBFS (Coreboot Filesystem) in SPL" |
| 12 | help |
| 13 | Define this to enable support for reading from a Coreboot |
| 14 | filesystem. This is a ROM-based filesystem used for accessing files |
| 15 | on systems that use coreboot as the first boot-loader and then load |
| 16 | U-Boot to actually boot the Operating System. |
| 17 | |
| 18 | Note that most functions in the CBFS API do not work with SPL. Only |
| 19 | those which accept a cbfs_priv * can be used, since BSS is not |
| 20 | available. |