diff options
| author | AKASHI Takahiro <[email protected]> | 2019-11-08 10:32:15 +0900 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2019-11-08 07:10:14 -0500 |
| commit | fefff636337b53ac7fc1b0e9f38eb7b188bc0e60 (patch) | |
| tree | c4f794a453f4e450e3be87de0d3235b33edd8e15 /cmd | |
| parent | e3aafef4cf2d16e14e3bc02c3d8dbd434e305c19 (diff) | |
cmd: move down CONFIG_CMD_BOOTEFI after CONFIG_BOOTM_VXWORKS
Due to the commit 4b0bcfa7c4ec ("Kconfig: Migrate CONFIG_BOOTM_* options")
BOOTEFI and BOOTEFI_HELLO_COMPILE (and other BOOTEFI configs) are
displayed in a long distance. This will make it difficult for us to
understand that those configurations are closely related.
Signed-off-by: AKASHI Takahiro <[email protected]>
Reviewed-by: Heinrich Schuchardt <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/Kconfig | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 0eca0f74f7a..99b8a0e2182 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -263,13 +263,6 @@ config CMD_BOOTI help Boot an AArch64 Linux Kernel image from memory. -config CMD_BOOTEFI - bool "bootefi" - depends on EFI_LOADER - default y - help - Boot an EFI image from memory. - config BOOTM_LINUX bool "Support booting Linux OS images" depends on CMD_BOOTM || CMD_BOOTZ || CMD_BOOTI @@ -318,6 +311,13 @@ config BOOTM_VXWORKS help Support booting VxWorks images via the bootm command. +config CMD_BOOTEFI + bool "bootefi" + depends on EFI_LOADER + default y + help + Boot an EFI image from memory. + config CMD_BOOTEFI_HELLO_COMPILE bool "Compile a standard EFI hello world binary for testing" depends on CMD_BOOTEFI && !CPU_V7M && !SANDBOX |
