summaryrefslogtreecommitdiffstats
path: root/common/Kconfig
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:01:23 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:01:23 +0200
commitabfbbad1eb897c58d2ebc918a8b91cf1ea226c5f (patch)
treedd9ea8d7369c4c8e8c04da9725b3eb437980db30 /common/Kconfig
parent11a0b5a0dd5f092777de41db00f3ffa8a95d698c (diff)
downloadbarebox-abfbbad1eb897c58d2ebc918a8b91cf1ea226c5f.tar.gz
barebox-abfbbad1eb897c58d2ebc918a8b91cf1ea226c5f.tar.xz
svn_rev_109
do not know anymore
Diffstat (limited to 'common/Kconfig')
-rw-r--r--common/Kconfig36
1 files changed, 32 insertions, 4 deletions
diff --git a/common/Kconfig b/common/Kconfig
index 0b9206f955..2eea360089 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -1,7 +1,11 @@
-menuconfig COMMANDS
- bool "Commands"
-if COMMANDS
+config ZLIB
+ bool
+
+config BZLIB
+ bool
+
+menu "Commands"
config COMMON_ENV_FLASH
bool
@@ -44,4 +48,28 @@ config CMD_SAVES
depends on CMD_LOADS
prompt "saves"
-endif
+config CMD_SPLASH
+ bool
+ prompt "splash"
+
+config CMD_SLEEP
+ bool
+ prompt "sleep"
+
+config CMD_BOOTM
+ bool
+ prompt "bootm"
+
+config CMD_BOOTM_ZLIB
+ bool
+ depends on CMD_BOOTM
+ select ZLIB
+ prompt "bootm with zlib support"
+
+config CMD_BOOTM_BZLIB
+ bool
+ depends on CMD_BOOTM
+ select BZLIB
+ prompt "bootm with bzlib support"
+
+endmenu