Cut-n-paste strikes again
[oweals/busybox.git] / shell / Config.in
index b064ed41ba07e1276e1c67addfef43a65e1ccd2d..bdba40d3b24dbf911fb4d28eb7e4dde0c53cb25a 100644 (file)
@@ -67,12 +67,21 @@ config CONFIG_ASH_MATH_SUPPORT
        help
          Enable math support in the ash shell.
 
+config CONFIG_ASH_MATH_SUPPORT_64
+       bool "    Extend Posix math support to 64 bit"
+       default n
+       depends on CONFIG_ASH_MATH_SUPPORT
+       help
+         Enable 64-bit math support in the ash shell.  This will make
+         the shell slightly larger, but will allow computation with very
+         large numbers.
+
 config CONFIG_ASH_GETOPTS
-       bool "  Enable getopt builtin to parse positional parameters"
+       bool "  Enable getopts builtin to parse positional parameters"
        default n
        depends on CONFIG_ASH
        help
-         Enable builtin getopt in the ash shell.
+         Enable getopts builtin in the ash shell.
 
 config CONFIG_ASH_CMDCMD
        bool "  Enable cmdcmd to override shell builtins"
@@ -169,6 +178,11 @@ config CONFIG_FEATURE_SH_STANDALONE_SHELL
          is generally used when creating a staticly linked version of busybox
          for use as a rescue shell, in the event that you screw up your system.
 
+         Note that when using this option, the shell will attempt to directly
+         run '/bin/busybox'.  If you do not have the busybox binary sitting in
+         that exact location with that exact name, this option will not work at
+         all.
+
 config CONFIG_FEATURE_COMMAND_EDITING
        bool "command line editing"
        default n