blob: b34c238456615fdf3ebbf118b0fa71ac1530c53e [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 \
Eric Andersen2bec97c2002-09-01 06:45:55 +000014 none CONFIG_FEATURE_SH_IS_NONE" \
15 ash
Eric Andersenbdfd0d72001-10-24 05:00:29 +000016
17if [ "$CONFIG_FEATURE_SH_IS_ASH" = "y" ] ; then
18 define_bool CONFIG_ASH y
Eric Andersenbdfd0d72001-10-24 05:00:29 +000019fi
Eric Andersen45784fe2001-11-10 13:08:02 +000020
Eric Andersenbdfd0d72001-10-24 05:00:29 +000021if [ "$CONFIG_FEATURE_SH_IS_HUSH" = "y" ] ; then
22 define_bool CONFIG_HUSH y
Eric Andersenbdfd0d72001-10-24 05:00:29 +000023fi
24
25if [ "$CONFIG_FEATURE_SH_IS_LASH" = "y" ] ; then
26 define_bool CONFIG_LASH y
Eric Andersenbdfd0d72001-10-24 05:00:29 +000027fi
28
29if [ "$CONFIG_FEATURE_SH_IS_MSH" = "y" ] ; then
30 define_bool CONFIG_MSH y
Eric Andersenbdfd0d72001-10-24 05:00:29 +000031fi
32
Eric Andersen45784fe2001-11-10 13:08:02 +000033bool 'ash' CONFIG_ASH
Eric Andersend35c5df2002-01-09 15:37:36 +000034if [ "$CONFIG_ASH" = "y" ] ; then
35 comment 'Ash Shell Options'
36 bool 'Enable Job control' CONFIG_ASH_JOB_CONTROL
37 bool 'Enable alias support' CONFIG_ASH_ALIAS
38 bool 'Enable Posix math support' CONFIG_ASH_MATH_SUPPORT
39 bool 'Enable getopt builtin to parse positional parameters' CONFIG_ASH_GETOPTS
40 bool 'Enable cmdcmd to override shell builtins' CONFIG_ASH_CMDCMD
41 bool 'Check for new mail on interactive shells' CONFIG_ASH_MAIL
42 bool 'Optimize for size instead of speed' CONFIG_ASH_OPTIMIZE_FOR_SIZE
43 comment ''
44fi
45
Eric Andersen45784fe2001-11-10 13:08:02 +000046bool 'hush' CONFIG_HUSH
47bool 'lash' CONFIG_LASH
48bool 'msh' CONFIG_MSH
Eric Andersenbdfd0d72001-10-24 05:00:29 +000049
Eric Andersend35c5df2002-01-09 15:37:36 +000050
Eric Andersenbdfd0d72001-10-24 05:00:29 +000051comment 'Bourne Shell Options'
52bool 'command line editing' CONFIG_FEATURE_COMMAND_EDITING
53bool 'tab completion' CONFIG_FEATURE_COMMAND_TAB_COMPLETION
54bool 'username completion' CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
55bool 'Standalone shell' CONFIG_FEATURE_SH_STANDALONE_SHELL
56bool 'Standalone shell -- applets always win' CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN
57bool 'Fancy shell prompts' CONFIG_FEATURE_SH_FANCY_PROMPT
58bool 'Hide message on interactive shell startup' CONFIG_FEATURE_SH_EXTRA_QUIET
59
60endmenu
61