aboutsummaryrefslogtreecommitdiff
path: root/shell/config.in
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-01-09 15:37:36 +0000
committerEric Andersen <andersen@codepoet.org>2002-01-09 15:37:36 +0000
commitd35c5df08c7ca8ad506a418555538a9270411c42 (patch)
tree6115bb768f9743cc5f0141ba21636fa59fd0f944 /shell/config.in
parentb75b6e2c35bc11274805f426ab626911df8f3892 (diff)
downloadbusybox-d35c5df08c7ca8ad506a418555538a9270411c42.tar.gz
Make private ash config options be public
Diffstat (limited to 'shell/config.in')
-rw-r--r--shell/config.in13
1 files changed, 13 insertions, 0 deletions
diff --git a/shell/config.in b/shell/config.in
index 2efec9765..d6a7f1686 100644
--- a/shell/config.in
+++ b/shell/config.in
@@ -30,10 +30,23 @@ if [ "$CONFIG_FEATURE_SH_IS_MSH" = "y" ] ; then
fi
bool 'ash' CONFIG_ASH
+if [ "$CONFIG_ASH" = "y" ] ; then
+ comment 'Ash Shell Options'
+ bool 'Enable Job control' CONFIG_ASH_JOB_CONTROL
+ bool 'Enable alias support' CONFIG_ASH_ALIAS
+ bool 'Enable Posix math support' CONFIG_ASH_MATH_SUPPORT
+ bool 'Enable getopt builtin to parse positional parameters' CONFIG_ASH_GETOPTS
+ bool 'Enable cmdcmd to override shell builtins' CONFIG_ASH_CMDCMD
+ bool 'Check for new mail on interactive shells' CONFIG_ASH_MAIL
+ bool 'Optimize for size instead of speed' CONFIG_ASH_OPTIMIZE_FOR_SIZE
+ comment ''
+fi
+
bool 'hush' CONFIG_HUSH
bool 'lash' CONFIG_LASH
bool 'msh' CONFIG_MSH
+
comment 'Bourne Shell Options'
bool 'command line editing' CONFIG_FEATURE_COMMAND_EDITING
bool 'tab completion' CONFIG_FEATURE_COMMAND_TAB_COMPLETION