blob: d6a7f1686352326126ac0cfb05a89eea8245ced7 [file] [log] [blame]
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6mainmenu_option next_comment
7comment 'Bourne Shell'
8
9choice '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
16if [ "$CONFIG_FEATURE_SH_IS_ASH" = "y" ] ; then
17 define_bool CONFIG_ASH y
Eric Andersenbdfd0d72001-10-24 05:00:29 +000018fi
Eric Andersen45784fe2001-11-10 13:08:02 +000019
Eric Andersenbdfd0d72001-10-24 05:00:29 +000020if [ "$CONFIG_FEATURE_SH_IS_HUSH" = "y" ] ; then
21 define_bool CONFIG_HUSH y
Eric Andersenbdfd0d72001-10-24 05:00:29 +000022fi
23
24if [ "$CONFIG_FEATURE_SH_IS_LASH" = "y" ] ; then
25 define_bool CONFIG_LASH y
Eric Andersenbdfd0d72001-10-24 05:00:29 +000026fi
27
28if [ "$CONFIG_FEATURE_SH_IS_MSH" = "y" ] ; then
29 define_bool CONFIG_MSH y
Eric Andersenbdfd0d72001-10-24 05:00:29 +000030fi
31
Eric Andersen45784fe2001-11-10 13:08:02 +000032bool 'ash' CONFIG_ASH
Eric Andersend35c5df2002-01-09 15:37:36 +000033if [ "$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 ''
43fi
44
Eric Andersen45784fe2001-11-10 13:08:02 +000045bool 'hush' CONFIG_HUSH
46bool 'lash' CONFIG_LASH
47bool 'msh' CONFIG_MSH
Eric Andersenbdfd0d72001-10-24 05:00:29 +000048
Eric Andersend35c5df2002-01-09 15:37:36 +000049
Eric Andersenbdfd0d72001-10-24 05:00:29 +000050comment 'Bourne Shell Options'
51bool 'command line editing' CONFIG_FEATURE_COMMAND_EDITING
52bool 'tab completion' CONFIG_FEATURE_COMMAND_TAB_COMPLETION
53bool 'username completion' CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
54bool 'Standalone shell' CONFIG_FEATURE_SH_STANDALONE_SHELL
55bool 'Standalone shell -- applets always win' CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN
56bool 'Fancy shell prompts' CONFIG_FEATURE_SH_FANCY_PROMPT
57bool 'Hide message on interactive shell startup' CONFIG_FEATURE_SH_EXTRA_QUIET
58
59endmenu
60