aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-11-10 12:07:24 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-11-10 12:07:24 +0000
commit30825fa52c29734e81ca834884814286dc59d346 (patch)
tree0a9d9077d4df87033bb4279195852b974b33babb /shell
parent91c104721612f9b7f00f33de3218c78fd728b782 (diff)
downloadbusybox-w32-30825fa52c29734e81ca834884814286dc59d346.tar.gz
busybox-w32-30825fa52c29734e81ca834884814286dc59d346.tar.bz2
busybox-w32-30825fa52c29734e81ca834884814286dc59d346.zip
Cleanup some config problems. Add a sane default config that basically
matches the default old Config.h git-svn-id: svn://busybox.net/trunk/busybox@3648 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r--shell/config.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/config.in b/shell/config.in
index e33669a7b..b9100401e 100644
--- a/shell/config.in
+++ b/shell/config.in
@@ -15,24 +15,28 @@ choice 'Choose your default shell' \
15 15
16if [ "$CONFIG_FEATURE_SH_IS_ASH" = "y" ] ; then 16if [ "$CONFIG_FEATURE_SH_IS_ASH" = "y" ] ; then
17 define_bool CONFIG_ASH y 17 define_bool CONFIG_ASH y
18 comment 'ash'
18else 19else
19 bool 'ash' CONFIG_ASH 20 bool 'ash' CONFIG_ASH
20fi 21fi
21 22
22if [ "$CONFIG_FEATURE_SH_IS_HUSH" = "y" ] ; then 23if [ "$CONFIG_FEATURE_SH_IS_HUSH" = "y" ] ; then
23 define_bool CONFIG_HUSH y 24 define_bool CONFIG_HUSH y
25 comment 'hush'
24else 26else
25 bool 'hush' CONFIG_HUSH 27 bool 'hush' CONFIG_HUSH
26fi 28fi
27 29
28if [ "$CONFIG_FEATURE_SH_IS_LASH" = "y" ] ; then 30if [ "$CONFIG_FEATURE_SH_IS_LASH" = "y" ] ; then
29 define_bool CONFIG_LASH y 31 define_bool CONFIG_LASH y
32 comment 'lash'
30else 33else
31 bool 'lash' CONFIG_LASH 34 bool 'lash' CONFIG_LASH
32fi 35fi
33 36
34if [ "$CONFIG_FEATURE_SH_IS_MSH" = "y" ] ; then 37if [ "$CONFIG_FEATURE_SH_IS_MSH" = "y" ] ; then
35 define_bool CONFIG_MSH y 38 define_bool CONFIG_MSH y
39 comment 'msh'
36else 40else
37 bool 'msh' CONFIG_MSH 41 bool 'msh' CONFIG_MSH
38fi 42fi