Silly spelling fix
[oweals/busybox.git] / shell / config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 mainmenu_option next_comment
7 comment 'Bourne Shell'
8
9 choice 'Choose your default shell' \
10     "ash                                    CONFIG_FEATURE_SH_IS_ASH  \
11     hush                                    CONFIG_FEATURE_SH_IS_HUSH \
12     lash                                    CONFIG_FEATURE_SH_IS_LASH \
13     msh                                     CONFIG_FEATURE_SH_IS_MSH  \
14     none                                    CONFIG_FEATURE_SH_IS_NONE"
15
16 if [ "$CONFIG_FEATURE_SH_IS_ASH" = "y" ] ; then
17         define_bool CONFIG_ASH  y
18 fi
19         
20 if [ "$CONFIG_FEATURE_SH_IS_HUSH" = "y" ] ; then
21         define_bool CONFIG_HUSH y
22 fi
23
24 if [ "$CONFIG_FEATURE_SH_IS_LASH" = "y" ] ; then
25         define_bool CONFIG_LASH y
26 fi
27
28 if [ "$CONFIG_FEATURE_SH_IS_MSH" = "y" ] ; then
29         define_bool CONFIG_MSH  y
30 fi
31
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
45 bool 'hush'         CONFIG_HUSH
46 bool 'lash'         CONFIG_LASH
47 bool 'msh'          CONFIG_MSH
48
49         
50 comment 'Bourne Shell Options'
51 bool 'command line editing'             CONFIG_FEATURE_COMMAND_EDITING
52 bool 'tab completion'                   CONFIG_FEATURE_COMMAND_TAB_COMPLETION
53 bool 'username completion'              CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
54 bool 'Standalone shell'                 CONFIG_FEATURE_SH_STANDALONE_SHELL
55 bool 'Standalone shell -- applets always win'   CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN
56 bool 'Fancy shell prompts'      CONFIG_FEATURE_SH_FANCY_PROMPT
57 bool 'Hide message on interactive shell startup'        CONFIG_FEATURE_SH_EXTRA_QUIET
58
59 endmenu
60