diff options
author | Adam Ford <aford173@gmail.com> | 2018-09-09 07:05:57 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-09-29 08:07:26 -0400 |
commit | 577c40ae1dc332dfd61d833752c9c2b66745b1c2 (patch) | |
tree | 4be07618a6153ecb1bf879c50b077c89fa66dc0d /cmd | |
parent | 96a82d33f8c5bd3e90098b540349b7b9e43e27da (diff) | |
download | u-boot-577c40ae1dc332dfd61d833752c9c2b66745b1c2.tar.gz |
cmd: Relocate poweroff under Device access commands
Previously poweroff was located under boot. It seems to make more
sense to have it located under the Device access commands.
Signed-off-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 1e4ab6e78d..ae697fcad9 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -304,11 +304,6 @@ config CMD_XIMG help Extract a part of a multi-image. -config CMD_POWEROFF - bool "poweroff" - help - Poweroff/Shutdown the system - config CMD_SPL bool "spl export - Export boot information for Falcon boot" depends on SPL @@ -944,6 +939,11 @@ config CMD_PCMCIA about 1990. These devices are typically removable memory or network cards using a standard 68-pin connector. +config CMD_POWEROFF + bool "poweroff" + help + Poweroff/Shutdown the system + config CMD_READ bool "read - Read binary data from a partition" help |