diff options
author | Simon Glass | 2022-04-24 23:31:12 -0600 |
---|---|---|
committer | Tom Rini | 2022-04-25 10:00:04 -0400 |
commit | 7fca71d0d626aed1735f1d9719f473567207affb (patch) | |
tree | ec8f5db213798c2a3c30d1886e2507120254a0a5 /cmd/Kconfig | |
parent | 2d653f686b6db7929764aa5da4c60b8a4cab052f (diff) |
bootstd: Add a bootmeth command
Add a 'bootmeth' command to handle listing and ordering of boot methods.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index d2ffc5370a9..1205ef501e9 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -239,6 +239,17 @@ config CMD_BOOTFLOW_FULL This command is not necessary for bootstd to work. +config CMD_BOOTMETH + bool "bootmeth" + depends on BOOTSTD + default y if BOOTSTD_FULL + help + Support listing available bootmethds (methods used to boot an + Operating System), as well as selecting the order that the bootmeths + are used. + + 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 |