aboutsummaryrefslogtreecommitdiff
path: root/shell/config.in
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-10-24 05:00:29 +0000
committerEric Andersen <andersen@codepoet.org>2001-10-24 05:00:29 +0000
commitbdfd0d78bc44e73d693510e70087857785b3b521 (patch)
tree153a573095afac8d8d0ea857759ecabd77fb28b7 /shell/config.in
parent9260fc5552a3ee52eb95823aa6689d52a1ffd33c (diff)
downloadbusybox-w32-bdfd0d78bc44e73d693510e70087857785b3b521.tar.gz
busybox-w32-bdfd0d78bc44e73d693510e70087857785b3b521.tar.bz2
busybox-w32-bdfd0d78bc44e73d693510e70087857785b3b521.zip
Major rework of the directory structure and the entire build system.
-Erik
Diffstat (limited to 'shell/config.in')
-rw-r--r--shell/config.in51
1 files changed, 51 insertions, 0 deletions
diff --git a/shell/config.in b/shell/config.in
new file mode 100644
index 000000000..e33669a7b
--- /dev/null
+++ b/shell/config.in
@@ -0,0 +1,51 @@
1#
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
18else
19 bool 'ash' CONFIG_ASH
20fi
21
22if [ "$CONFIG_FEATURE_SH_IS_HUSH" = "y" ] ; then
23 define_bool CONFIG_HUSH y
24else
25 bool 'hush' CONFIG_HUSH
26fi
27
28if [ "$CONFIG_FEATURE_SH_IS_LASH" = "y" ] ; then
29 define_bool CONFIG_LASH y
30else
31 bool 'lash' CONFIG_LASH
32fi
33
34if [ "$CONFIG_FEATURE_SH_IS_MSH" = "y" ] ; then
35 define_bool CONFIG_MSH y
36else
37 bool 'msh' CONFIG_MSH
38fi
39
40
41comment 'Bourne Shell Options'
42bool 'command line editing' CONFIG_FEATURE_COMMAND_EDITING
43bool 'tab completion' CONFIG_FEATURE_COMMAND_TAB_COMPLETION
44bool 'username completion' CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
45bool 'Standalone shell' CONFIG_FEATURE_SH_STANDALONE_SHELL
46bool 'Standalone shell -- applets always win' CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN
47bool 'Fancy shell prompts' CONFIG_FEATURE_SH_FANCY_PROMPT
48bool 'Hide message on interactive shell startup' CONFIG_FEATURE_SH_EXTRA_QUIET
49
50endmenu
51