summaryrefslogtreecommitdiffstats
path: root/common/Kconfig
diff options
context:
space:
mode:
authorRobert Schwebel (Laptop) <rsc@thebe.(none)>2007-09-25 22:07:21 +0200
committerRobert Schwebel (Laptop) <rsc@thebe.(none)>2007-09-25 22:07:21 +0200
commitc97886debf58ea8ec95b14dc93a270529710fb60 (patch)
tree58d8efe3462af2c5d6f1337105c485548e7c839a /common/Kconfig
parenta241d078c6fc72309b16dcdf189c5f3d33c8a3a3 (diff)
downloadbarebox-c97886debf58ea8ec95b14dc93a270529710fb60.tar.gz
barebox-c97886debf58ea8ec95b14dc93a270529710fb60.tar.xz
Subject: don't use default in choices
It is currently not possible to use defaults in choices. Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
Diffstat (limited to 'common/Kconfig')
-rw-r--r--common/Kconfig9
1 files changed, 4 insertions, 5 deletions
diff --git a/common/Kconfig b/common/Kconfig
index 719fee5032..f346d15ac5 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -69,12 +69,11 @@ config MAXARGS
choice
prompt "Select your shell"
-config SHELL_HUSH
- bool "hush parser"
- default y
+ config SHELL_HUSH
+ bool "hush parser"
-config SHELL_SIMPLE
- bool "Simple parser"
+ config SHELL_SIMPLE
+ bool "Simple parser"
endchoice