diff options
author | Simon Glass | 2017-08-04 16:34:52 -0600 |
---|---|---|
committer | Tom Rini | 2017-08-11 15:41:59 -0400 |
commit | 00805d7ad83b410660fc17a06374874a81e39874 (patch) | |
tree | a4addf40cb41c27d0c0d9d5f1c4b2b8a5464fc7c /cmd/Kconfig | |
parent | ba71be547c582d1cb50c4fdcdfddc43ca1472fbf (diff) |
Convert CONFIG_CMD_STRINGS to Kconfig
This converts the following to Kconfig:
CONFIG_CMD_STRINGS
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index e4a25787cb4..d26dcf7fc2f 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -492,6 +492,14 @@ config SHA1SUM_VERIFY help Add -v option to verify data against a SHA1 checksum. +config CMD_STRINGS + bool "strings - display strings in memory" + help + This works similarly to the Unix 'strings' command except that it + works with a memory range. String of printable characters found + within the range are displayed. The minimum number of characters + for a sequence to be considered a string can be provided. + endmenu menu "Compression commands" |