diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-09 15:37:36 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-09 15:37:36 +0000 |
commit | d35c5df08c7ca8ad506a418555538a9270411c42 (patch) | |
tree | 6115bb768f9743cc5f0141ba21636fa59fd0f944 /shell/config.in | |
parent | b75b6e2c35bc11274805f426ab626911df8f3892 (diff) | |
download | busybox-w32-d35c5df08c7ca8ad506a418555538a9270411c42.tar.gz busybox-w32-d35c5df08c7ca8ad506a418555538a9270411c42.tar.bz2 busybox-w32-d35c5df08c7ca8ad506a418555538a9270411c42.zip |
Make private ash config options be public
Diffstat (limited to 'shell/config.in')
-rw-r--r-- | shell/config.in | 13 |
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 | |||
30 | fi | 30 | fi |
31 | 31 | ||
32 | bool 'ash' CONFIG_ASH | 32 | bool 'ash' CONFIG_ASH |
33 | if [ "$CONFIG_ASH" = "y" ] ; then | ||
34 | comment 'Ash Shell Options' | ||
35 | bool 'Enable Job control' CONFIG_ASH_JOB_CONTROL | ||
36 | bool 'Enable alias support' CONFIG_ASH_ALIAS | ||
37 | bool 'Enable Posix math support' CONFIG_ASH_MATH_SUPPORT | ||
38 | bool 'Enable getopt builtin to parse positional parameters' CONFIG_ASH_GETOPTS | ||
39 | bool 'Enable cmdcmd to override shell builtins' CONFIG_ASH_CMDCMD | ||
40 | bool 'Check for new mail on interactive shells' CONFIG_ASH_MAIL | ||
41 | bool 'Optimize for size instead of speed' CONFIG_ASH_OPTIMIZE_FOR_SIZE | ||
42 | comment '' | ||
43 | fi | ||
44 | |||
33 | bool 'hush' CONFIG_HUSH | 45 | bool 'hush' CONFIG_HUSH |
34 | bool 'lash' CONFIG_LASH | 46 | bool 'lash' CONFIG_LASH |
35 | bool 'msh' CONFIG_MSH | 47 | bool 'msh' CONFIG_MSH |
36 | 48 | ||
49 | |||
37 | comment 'Bourne Shell Options' | 50 | comment 'Bourne Shell Options' |
38 | bool 'command line editing' CONFIG_FEATURE_COMMAND_EDITING | 51 | bool 'command line editing' CONFIG_FEATURE_COMMAND_EDITING |
39 | bool 'tab completion' CONFIG_FEATURE_COMMAND_TAB_COMPLETION | 52 | bool 'tab completion' CONFIG_FEATURE_COMMAND_TAB_COMPLETION |