aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-07-14 19:37:08 +0000
committerEric Andersen <andersen@codepoet.org>2003-07-14 19:37:08 +0000
commite5642119ee566520a098027746808dd6b9226d99 (patch)
treebcdb42552005d1498a48ffd634b1c216f01b8f13 /shell
parent1eceb127bd189bf377b6f25dfce04d61e25d89d2 (diff)
downloadbusybox-e5642119ee566520a098027746808dd6b9226d99.tar.gz
Patch from Thomas Cameron:
Hello all, This patch adds more "Help" text to the config system. Almost all applets now have a help entry. Also, I cleaned up the spacing of the existing text so that things are consistent. This patch is against this morning's CVS. Thomas Cameron CEI Systems, Inc.
Diffstat (limited to 'shell')
-rw-r--r--shell/Config.in42
1 files changed, 21 insertions, 21 deletions
diff --git a/shell/Config.in b/shell/Config.in
index 8373a808c..02d4851ec 100644
--- a/shell/Config.in
+++ b/shell/Config.in
@@ -9,8 +9,8 @@ choice
prompt "Choose your default shell"
default "none"
help
- Choose a shell. The ash shell is the most bash compatible
- and full featured.
+ Choose a shell. The ash shell is the most bash compatible
+ and full featured.
config CONFIG_FEATURE_SH_IS_ASH
bool "ash"
@@ -41,7 +41,7 @@ config CONFIG_ASH
bool "ash"
default y
help
- Make sh a link to ash.
+ Make sh a link to ash.
endif
comment "Ash Shell Options"
@@ -52,28 +52,28 @@ config CONFIG_ASH_JOB_CONTROL
default y
depends on CONFIG_ASH
help
- Enable job control in the ash shell.
+ Enable job control in the ash shell.
config CONFIG_ASH_ALIAS
bool " Enable alias support"
default y
depends on CONFIG_ASH
help
- Enable alias support in the ash shell.
+ Enable alias support in the ash shell.
config CONFIG_ASH_MATH_SUPPORT
bool " Enable Posix math support"
default y
depends on CONFIG_ASH
help
- Enable math support in the ash shell.
+ Enable math support in the ash shell.
config CONFIG_ASH_GETOPTS
bool " Enable getopt builtin to parse positional parameters"
default n
depends on CONFIG_ASH
help
- Enable builtin getopt in the ash shell.
+ Enable builtin getopt in the ash shell.
config CONFIG_ASH_CMDCMD
bool " Enable cmdcmd to override shell builtins"
@@ -87,14 +87,14 @@ config CONFIG_ASH_MAIL
default y
depends on CONFIG_ASH
help
- Enable "check for new mail" in the ash shell.
+ Enable "check for new mail" in the ash shell.
config CONFIG_ASH_OPTIMIZE_FOR_SIZE
bool " Optimize for size instead of speed"
default y
depends on CONFIG_ASH
help
- Compile ash for reduced size at price of speed.
+ Compile ash for reduced size at price of speed.
if CONFIG_FEATURE_SH_IS_HUSH
config CONFIG_HUSH
@@ -108,7 +108,7 @@ config CONFIG_HUSH
bool "hush"
default n
help
- Make sh a link to hush.
+ Make sh a link to hush.
endif
if CONFIG_FEATURE_SH_IS_LASH
@@ -123,7 +123,7 @@ config CONFIG_LASH
bool "lash"
default n
help
- Make sh a link to lash.
+ Make sh a link to lash.
endif
if CONFIG_FEATURE_SH_IS_MSH
@@ -138,7 +138,7 @@ config CONFIG_MSH
bool "msh"
default n
help
- Make sh a link to msh.
+ Make sh a link to msh.
endif
@@ -150,51 +150,51 @@ config CONFIG_FEATURE_COMMAND_EDITING
default n
depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH
help
- Enable command editing in shell.
+ Enable command editing in shell.
config CONFIG_FEATURE_COMMAND_SAVEHISTORY
bool " history saving"
default n
depends on CONFIG_ASH
help
- Enable history saving in ash shell.
+ Enable history saving in ash shell.
config CONFIG_FEATURE_COMMAND_TAB_COMPLETION
bool "tab completion"
default n
depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH
help
- Enable tab completion in shell.
+ Enable tab completion in shell.
config CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
bool "username completion"
default n
depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH
help
- Enable username completion in shell.
+ Enable username completion in shell.
config CONFIG_FEATURE_COMMAND_HISTORY
int "history size"
default 15
depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH
help
- Specify command history size in shell.
+ Specify command history size in shell.
config CONFIG_FEATURE_SH_STANDALONE_SHELL
bool "Standalone shell"
default n
depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH
help
- Have all the busybox commands built into the shell, creating
- a standalone shell.
+ Have all the busybox commands built into the shell, creating
+ a standalone shell.
config CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN
bool "Standalone shell -- applets always win"
default n
depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH
help
- Use a command builtin to the shell over one with the same name,
- that may be on the system.
+ Use a command builtin to the shell over one with the same name,
+ that may be on the system.
config CONFIG_FEATURE_SH_FANCY_PROMPT
bool "Fancy shell prompts"