diff options
| author | Simon Glass <[email protected]> | 2022-04-24 23:31:11 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-04-25 10:00:04 -0400 |
| commit | 2d653f686b6db7929764aa5da4c60b8a4cab052f (patch) | |
| tree | 466d9efce067e2f3b25ccb807a00297ea7055b3e /cmd/Kconfig | |
| parent | 5d053cca387dc92040569278b76d65391c91c249 (diff) | |
bootstd: Add a bootflow command
Add a 'bootflow' command to handle listing and selection of bootflow.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'cmd/Kconfig')
| -rw-r--r-- | cmd/Kconfig | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index a5c69187911..d2ffc5370a9 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -221,6 +221,24 @@ config CMD_BOOTDEV This command is not necessary for bootstd to work. +config CMD_BOOTFLOW + bool "bootflow" + depends on BOOTSTD + default y + help + Support scanning for bootflows available with the bootdevs. The + bootflows can optionally be booted. + +config CMD_BOOTFLOW_FULL + bool "bootflow - extract subcommands" + depends on BOOTSTD_FULL + default y if BOOTSTD_FULL + help + Add the ability to list the available bootflows, select one and obtain + information about it. + + This command is not necessary for bootstd to work. + config BOOTM_EFI bool "Support booting UEFI FIT images" depends on CMD_BOOTEFI && CMD_BOOTM && FIT |
