mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-30 19:11:37 +00:00
Kconfig: Sort the memory commands
These are currently not quite in alphabetical order. Before adding more, sort them. Not all options have a CMD_ prefix, so ignore that when sorting. Signed-off-by: Simon Glass <sjg@chromium.org> Suggested-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
This commit is contained in:
parent
3a91a25376
commit
ba71be547c
1 changed files with 30 additions and 30 deletions
60
cmd/Kconfig
60
cmd/Kconfig
|
@ -370,20 +370,6 @@ endmenu
|
||||||
|
|
||||||
menu "Memory commands"
|
menu "Memory commands"
|
||||||
|
|
||||||
config CMD_MEMORY
|
|
||||||
bool "md, mm, nm, mw, cp, cmp, base, loop"
|
|
||||||
default y
|
|
||||||
help
|
|
||||||
Memory commands.
|
|
||||||
md - memory display
|
|
||||||
mm - memory modify (auto-incrementing address)
|
|
||||||
nm - memory modify (constant address)
|
|
||||||
mw - memory write (fill)
|
|
||||||
cp - memory copy
|
|
||||||
cmp - memory compare
|
|
||||||
base - print or set address offset
|
|
||||||
loop - initialize loop on address range
|
|
||||||
|
|
||||||
config CMD_CRC32
|
config CMD_CRC32
|
||||||
bool "crc32"
|
bool "crc32"
|
||||||
select HASH
|
select HASH
|
||||||
|
@ -445,6 +431,11 @@ config EEPROM_LAYOUT_HELP_STRING
|
||||||
Help printed with the LAYOUT VERSIONS part of the 'eeprom'
|
Help printed with the LAYOUT VERSIONS part of the 'eeprom'
|
||||||
command's help.
|
command's help.
|
||||||
|
|
||||||
|
config LOOPW
|
||||||
|
bool "loopw"
|
||||||
|
help
|
||||||
|
Infinite write loop on address range
|
||||||
|
|
||||||
config CMD_MD5SUM
|
config CMD_MD5SUM
|
||||||
bool "md5sum"
|
bool "md5sum"
|
||||||
default n
|
default n
|
||||||
|
@ -459,22 +450,24 @@ config MD5SUM_VERIFY
|
||||||
help
|
help
|
||||||
Add -v option to verify data against an MD5 checksum.
|
Add -v option to verify data against an MD5 checksum.
|
||||||
|
|
||||||
config CMD_SHA1SUM
|
config CMD_MEMINFO
|
||||||
bool "sha1sum"
|
bool "meminfo"
|
||||||
select SHA1
|
|
||||||
help
|
help
|
||||||
Compute SHA1 checksum.
|
Display memory information.
|
||||||
|
|
||||||
config SHA1SUM_VERIFY
|
config CMD_MEMORY
|
||||||
bool "sha1sum -v"
|
bool "md, mm, nm, mw, cp, cmp, base, loop"
|
||||||
depends on CMD_SHA1SUM
|
default y
|
||||||
help
|
help
|
||||||
Add -v option to verify data against a SHA1 checksum.
|
Memory commands.
|
||||||
|
md - memory display
|
||||||
config LOOPW
|
mm - memory modify (auto-incrementing address)
|
||||||
bool "loopw"
|
nm - memory modify (constant address)
|
||||||
help
|
mw - memory write (fill)
|
||||||
Infinite write loop on address range
|
cp - memory copy
|
||||||
|
cmp - memory compare
|
||||||
|
base - print or set address offset
|
||||||
|
loop - initialize loop on address range
|
||||||
|
|
||||||
config CMD_MEMTEST
|
config CMD_MEMTEST
|
||||||
bool "memtest"
|
bool "memtest"
|
||||||
|
@ -487,10 +480,17 @@ config CMD_MX_CYCLIC
|
||||||
mdc - memory display cyclic
|
mdc - memory display cyclic
|
||||||
mwc - memory write cyclic
|
mwc - memory write cyclic
|
||||||
|
|
||||||
config CMD_MEMINFO
|
config CMD_SHA1SUM
|
||||||
bool "meminfo"
|
bool "sha1sum"
|
||||||
|
select SHA1
|
||||||
help
|
help
|
||||||
Display memory information.
|
Compute SHA1 checksum.
|
||||||
|
|
||||||
|
config SHA1SUM_VERIFY
|
||||||
|
bool "sha1sum -v"
|
||||||
|
depends on CMD_SHA1SUM
|
||||||
|
help
|
||||||
|
Add -v option to verify data against a SHA1 checksum.
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue