summaryrefslogtreecommitdiffstats
path: root/commands/Kconfig
diff options
context:
space:
mode:
authorJuergen Beisert <j.beisert@pengutronix.de>2007-11-09 21:13:55 +0100
committerJuergen Beisert <j.beisert@pengutronix.de>2007-11-12 16:28:23 +0100
commitd59c600c656d08410ea862c582fbd77432c3ca47 (patch)
tree6c03b005910d262d7740348dae648c2cdfc7fe2e /commands/Kconfig
parent57cae4e82669748f94fad4d741c3fcf9cde128ac (diff)
downloadbarebox-d59c600c656d08410ea862c582fbd77432c3ca47.tar.gz
barebox-d59c600c656d08410ea862c582fbd77432c3ca47.tar.xz
separating memory commands
Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
Diffstat (limited to 'commands/Kconfig')
-rw-r--r--commands/Kconfig23
1 files changed, 21 insertions, 2 deletions
diff --git a/commands/Kconfig b/commands/Kconfig
index 8d1ca9da39..9fd1f3ec87 100644
--- a/commands/Kconfig
+++ b/commands/Kconfig
@@ -129,10 +129,29 @@ config CMD_MEMINFO
tristate
prompt "meminfo"
-config CMD_MEMORY
+config CMD_MC
bool
+ select CMD_MEMORY
default y
- prompt "md and mw"
+ prompt "memcmp"
+
+config CMD_MD
+ bool
+ select CMD_MEMORY
+ default y
+ prompt "md"
+
+config CMD_MEMCPY
+ bool
+ select CMD_MEMORY
+ default y
+ prompt "memcpy"
+
+config CMD_MW
+ bool
+ select CMD_MEMORY
+ default y
+ prompt "mw"
config CMD_CRC
tristate