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-282671bf76bd7e3644b730673ca748947913b911.tar.gz
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' \
if [ "$CONFIG_FEATURE_SH_IS_ASH" = "y" ] ; then
define_bool CONFIG_ASH y
+ comment 'ash'
else
bool 'ash' CONFIG_ASH
fi
if [ "$CONFIG_FEATURE_SH_IS_HUSH" = "y" ] ; then
define_bool CONFIG_HUSH y
+ comment 'hush'
else
bool 'hush' CONFIG_HUSH
fi
if [ "$CONFIG_FEATURE_SH_IS_LASH" = "y" ] ; then
define_bool CONFIG_LASH y
+ comment 'lash'
else
bool 'lash' CONFIG_LASH
fi
if [ "$CONFIG_FEATURE_SH_IS_MSH" = "y" ] ; then
define_bool CONFIG_MSH y
+ comment 'msh'
else
bool 'msh' CONFIG_MSH
fi