summaryrefslogtreecommitdiffstats
path: root/common/Kconfig
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:01:17 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:01:17 +0200
commitc03bd6446cdaa66cc513a04e19fc986def5e0752 (patch)
tree593d4489eb4a7429dcdef4974d48cc2da5fee48e /common/Kconfig
parent5618da1521d8ef96a8b0c0f278fc509d6cd53ebb (diff)
downloadbarebox-c03bd6446cdaa66cc513a04e19fc986def5e0752.tar.gz
barebox-c03bd6446cdaa66cc513a04e19fc986def5e0752.tar.xz
svn_rev_049
Kconfig WIP
Diffstat (limited to 'common/Kconfig')
-rw-r--r--common/Kconfig44
1 files changed, 44 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig
index b9f8c43e95..0b9206f955 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -1,3 +1,47 @@
+menuconfig COMMANDS
+ bool "Commands"
+
+if COMMANDS
+
config COMMON_ENV_FLASH
bool
prompt "Environment in flash"
+
+config CMD_CONSOLE
+ bool
+ prompt "coninfo"
+
+config CMD_MII
+ bool
+ prompt "mii"
+
+config CMD_MEMORY
+ bool
+ prompt "md, mm, mw and several others"
+
+config CMD_I2C
+ bool
+ prompt "i2c"
+
+config CMD_AUTOSCRIPT
+ bool
+ prompt "autoscript"
+
+config CMD_FLASH
+ bool
+ prompt "protect/erase/flinfo"
+
+config CMD_LOADB
+ bool
+ prompt "loadb"
+
+config CMD_LOADS
+ bool
+ prompt "loads"
+
+config CMD_SAVES
+ bool
+ depends on CMD_LOADS
+ prompt "saves"
+
+endif