svn commit: trunk/busybox/shell

pgf at busybox.net pgf at busybox.net
Thu Jun 8 21:48:50 UTC 2006


Author: pgf
Date: 2006-06-08 14:48:47 -0700 (Thu, 08 Jun 2006)
New Revision: 15345

Log:
remove leading "Enable" from the config option text.  not only is it
redundant, but it made the menuconfig shortcut mechanism mostly
useless, since so many of the entries started with 'E'.


Modified:
   trunk/busybox/shell/Config.in


Changeset:
Modified: trunk/busybox/shell/Config.in
===================================================================
--- trunk/busybox/shell/Config.in	2006-06-08 21:37:26 UTC (rev 15344)
+++ trunk/busybox/shell/Config.in	2006-06-08 21:48:47 UTC (rev 15345)
@@ -48,14 +48,14 @@
 	depends on CONFIG_ASH
 
 config CONFIG_ASH_JOB_CONTROL
-	bool "Enable Job control"
+	bool "Job control"
 	default y
 	depends on CONFIG_ASH
 	help
 	  Enable job control in the ash shell.
 
 config CONFIG_ASH_READ_NCHARS
-	bool "Enable 'read -n N' and 'read -s' support"
+	bool "'read -n N' and 'read -s' support"
 	default n
 	depends on CONFIG_ASH
 	help
@@ -63,7 +63,7 @@
 	  'read -s' will read without echoing the user's input.
 
 config CONFIG_ASH_READ_TIMEOUT
-	bool "Enable 'read -t S' support."
+	bool "'read -t S' support."
 	default n
 	depends on CONFIG_ASH
 	help
@@ -72,14 +72,14 @@
 	  as a decimal fraction, e.g. 'read -t 2.5 foo'.
 
 config CONFIG_ASH_ALIAS
-	bool "Enable alias support"
+	bool "alias support"
 	default y
 	depends on CONFIG_ASH
 	help
 	  Enable alias support in the ash shell.
 
 config CONFIG_ASH_MATH_SUPPORT
-	bool "Enable Posix math support"
+	bool "Posix math support"
 	default y
 	depends on CONFIG_ASH
 	help
@@ -118,7 +118,7 @@
 	  Enable support for test, built in to ash.
 
 config CONFIG_ASH_CMDCMD
-	bool "Enable cmdcmd to override shell builtins"
+	bool "'command' command to override shell builtins"
 	default n
 	depends on CONFIG_ASH
 	help
@@ -141,7 +141,7 @@
 	  Compile ash for reduced size at the price of speed.
 
 config CONFIG_ASH_RANDOM_SUPPORT
-	bool "Enable pseudorandom generator and variable $RANDOM"
+	bool "Pseudorandom generator and variable $RANDOM"
 	default n
 	depends on CONFIG_ASH
 	help
@@ -241,7 +241,7 @@
 	  all.
 
 config CONFIG_FEATURE_COMMAND_EDITING
-	bool "command line editing"
+	bool "Command line editing"
 	default n
 	depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH
 	help
@@ -256,28 +256,28 @@
 	  turned on and off with "set -o vi" and "set +o vi".
 
 config CONFIG_FEATURE_COMMAND_HISTORY
-	int "history size"
+	int "History size"
 	default 15
 	depends on CONFIG_FEATURE_COMMAND_EDITING
 	help
 	  Specify command history size in shell.
 
 config CONFIG_FEATURE_COMMAND_SAVEHISTORY
-	bool "history saving"
+	bool "History saving"
 	default n
 	depends on CONFIG_ASH && CONFIG_FEATURE_COMMAND_EDITING
 	help
 	  Enable history saving in ash shell.
 
 config CONFIG_FEATURE_COMMAND_TAB_COMPLETION
-	bool "tab completion"
+	bool "Tab completion"
 	default n
 	depends on CONFIG_FEATURE_COMMAND_EDITING
 	help
 	  Enable tab completion in shell.
 
 config CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
-	bool "username completion"
+	bool "Username completion"
 	default n
 	depends on CONFIG_FEATURE_COMMAND_TAB_COMPLETION
 	help




More information about the busybox-cvs mailing list