summaryrefslogtreecommitdiffstats
path: root/commands/Kconfig
diff options
context:
space:
mode:
authorHolger Schurig <holgerschurig@gmail.com>2014-05-13 10:28:45 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2014-05-14 10:03:47 +0200
commit013ee1e87a21714c8ed1e28829952ba31332acd1 (patch)
treecbdfcb5ab22d193d5161d519a0461a35c670bd40 /commands/Kconfig
parent07d90fdd3944321189506316f057de7a68fcefae (diff)
downloadbarebox-013ee1e87a21714c8ed1e28829952ba31332acd1.tar.gz
barebox-013ee1e87a21714c8ed1e28829952ba31332acd1.tar.xz
commands: CMD_DIGEST -> COMPILE_DIGEST
This config just turned on the compilation of digest.c (used by 'SHA1', 'sha256sum' etc), so name it accordingly. Signed-off-by: Holger Schurig <holgerschurig@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands/Kconfig')
-rw-r--r--commands/Kconfig20
1 files changed, 10 insertions, 10 deletions
diff --git a/commands/Kconfig b/commands/Kconfig
index 753d4578b4..e1e2405ebd 100644
--- a/commands/Kconfig
+++ b/commands/Kconfig
@@ -12,6 +12,12 @@ config HAS_POWEROFF
if COMMAND_SUPPORT
+config COMPILE_DIGEST
+ tristate
+ select DIGEST
+ help
+ Turns on compilation of digest.c
+
config COMPILE_MEMORY
bool
help
@@ -591,12 +597,6 @@ endmenu
menu "File"
-config CMD_DIGEST
- tristate
- select DIGEST
- help
- TODO This is actually not a command, but turns on digest.c compilation.
-
config CMD_BASENAME
tristate
prompt "basename"
@@ -716,7 +716,7 @@ config CMD_LS
config CMD_MD5SUM
tristate
- select CMD_DIGEST
+ select COMPILE_DIGEST
select MD5
prompt "md5sum"
help
@@ -781,7 +781,7 @@ config CMD_RMDIR
config CMD_SHA1SUM
tristate
- select CMD_DIGEST
+ select COMPILE_DIGEST
select SHA1
prompt "sha1sum"
help
@@ -793,7 +793,7 @@ config CMD_SHA1SUM
config CMD_SHA224SUM
tristate
- select CMD_DIGEST
+ select COMPILE_DIGEST
select SHA224
prompt "sha224sum"
help
@@ -805,7 +805,7 @@ config CMD_SHA224SUM
config CMD_SHA256SUM
tristate
- select CMD_DIGEST
+ select COMPILE_DIGEST
select SHA256
prompt "sha256sum"
help