aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-11-10 12:07:24 +0000
committerEric Andersen <andersen@codepoet.org>2001-11-10 12:07:24 +0000
commit282671bf76bd7e3644b730673ca748947913b911 (patch)
tree0a9d9077d4df87033bb4279195852b974b33babb /shell
parent30fcef430c59e5884f6765d16fc201c303b2e92c (diff)
downloadbusybox-w32-282671bf76bd7e3644b730673ca748947913b911.tar.gz
busybox-w32-282671bf76bd7e3644b730673ca748947913b911.tar.bz2
busybox-w32-282671bf76bd7e3644b730673ca748947913b911.zip
Cleanup some config problems. Add a sane default config that basically
matches the default old Config.h
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