diff options
author | Simon Glass | 2023-01-28 15:00:21 -0700 |
---|---|---|
committer | Tom Rini | 2023-02-06 13:04:53 -0500 |
commit | 22353fa6b585072e7cbe7d534fbbb98ef70f56d5 (patch) | |
tree | f9766e8e8b2df30e892feeee2e6203bb298962de /configs/tools-only_defconfig | |
parent | a710f5b2ebe6207125ee2260a7cfbe2b9e6e7ff3 (diff) |
bootstd: Add some default filesystems and commands
We need to support a basic set of filesystems for booting to work in most
cases. Add these in via a new option, letting the board disable them
individually (for space reasons) if desired.
This enables the filesystem commands as well as the actual functionality,
even though bootstd is quite happy to use ext4 without the ext4 command.
Further work would be needed to disintangle this and reduce code size.
Add several other options as well, providing sensible defaults.
We cannot enable this by default, since it expands the size of many
boards quite a lot.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'configs/tools-only_defconfig')
-rw-r--r-- | configs/tools-only_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/tools-only_defconfig b/configs/tools-only_defconfig index 23e1f0e9dba..88a94ddd6b0 100644 --- a/configs/tools-only_defconfig +++ b/configs/tools-only_defconfig @@ -12,6 +12,7 @@ CONFIG_FIT_SIGNATURE=y # CONFIG_BOOTMETH_VBE is not set CONFIG_USE_BOOTCOMMAND=y CONFIG_BOOTCOMMAND="run distro_bootcmd" +# CONFIG_AVB_VERIFY is not set # CONFIG_CMD_BOOTD is not set # CONFIG_CMD_BOOTM is not set # CONFIG_CMD_ELF is not set |