traceroute: fix help text to not show -6 when traceroute6 is off
[oweals/busybox.git] / shell / Config.in
index 126dba8e581d77249fe72e5d3280efed44e8a146..998672cfc507c72a3c6387bf08313001c9629278 100644 (file)
@@ -24,9 +24,9 @@ config FEATURE_SH_IS_HUSH
 ####   select LASH
 ####   bool "lash"
 
-config FEATURE_SH_IS_MSH
-       select MSH
-       bool "msh"
+####config FEATURE_SH_IS_MSH
+####   select MSH
+####   bool "msh"
 
 config FEATURE_SH_IS_NONE
        bool "none"
@@ -187,7 +187,7 @@ config HUSH_INTERACTIVE
        help
          Enable interactive mode (prompt and command editing).
          Without this, hush simply reads and executes commands
-         from stdin just like a shell script from the file.
+         from stdin just like a shell script from a file.
          No prompt, no PS1/PS2 magic shell variables.
 
 config HUSH_JOB
@@ -250,6 +250,14 @@ config HUSH_EXPORT_N
        help
          Enable support for export '-n' option in hush. It is a bash extension.
 
+config HUSH_RANDOM_SUPPORT
+       bool "Pseudorandom generator and $RANDOM variable"
+       default n
+       depends on HUSH
+       help
+         Enable pseudorandom generator and dynamic variable "$RANDOM".
+         Each read of "$RANDOM" will generate a new pseudorandom value.
+
 config LASH
        bool "lash (deprecated: aliased to hush)"
        default n
@@ -260,6 +268,7 @@ config LASH
 config MSH
        bool "msh (deprecated: please use hush)"
        default n
+       select HUSH
        help
          msh is deprecated and will be removed, please migrate to hush.
          If there is a feature msh has but hush does not, please let us know.