Cleanup some config problems. Add a sane default config that basically

matches the default old Config.h
This commit is contained in:
Eric Andersen
2001-11-10 12:07:24 +00:00
parent 30fcef430c
commit 282671bf76
6 changed files with 307 additions and 13 deletions

View File

@@ -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