jfb2 writes in Bug 119:
[oweals/busybox.git] / coreutils / Config.in
index fb6366c9f0c393d5432dc3f45687ca9075ecf425..a299506e68557b38424d3e8637ba594cf4368ce7 100644 (file)
@@ -10,7 +10,7 @@ config CONFIG_BASENAME
        default n
        help
          basename is used to strip the directory and suffix from filenames,
-         leaving just the filename itself.  Enable this option if you wish 
+         leaving just the filename itself.  Enable this option if you wish
          to enable the 'basename' utility.
 
 config CONFIG_CAL
@@ -101,7 +101,7 @@ config CONFIG_DD
        help
          dd copies a file (from standard input to standard output,
          by default) using specific input and output blocksizes,
-         while optionally performing conversions on it. 
+         while optionally performing conversions on it.
 
 config CONFIG_DF
        bool "df"
@@ -144,7 +144,7 @@ config CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
          Use a blocksize of (1K) instead of the default 512b.
 
 config CONFIG_ECHO
-       bool "echo (basic SUSv3 version taking no options"
+       bool "echo (basic SUSv3 version taking no options)"
        default n
        help
          echo is used to print a specified string to stdout.
@@ -154,7 +154,7 @@ config CONFIG_FEATURE_FANCY_ECHO
        default y
        depends on CONFIG_ECHO
        help
-         This adds options (-n and -e) to echo. 
+         This adds options (-n and -e) to echo.
 
 config CONFIG_ENV
        bool "env"
@@ -329,6 +329,12 @@ config CONFIG_MV
        help
          mv is used to move or rename files or directories.
 
+config CONFIG_NICE
+       bool "nice"
+       default n
+       help
+         nice runs a program with modified scheduling priority.
+
 config CONFIG_OD
        bool "od"
        default n
@@ -398,6 +404,18 @@ config CONFIG_SORT
        help
          sort is used to sort lines of text in specified files.
 
+config CONFIG_SORT_BIG
+       bool "  full SuSv3 compliant sort (Support -ktcsbdfiozgM)"
+       default y
+       depends on CONFIG_SORT
+       help
+         Without this, sort only supports  -r, -u, and an integer version
+         of -n.  Selecting this adds sort keys, floating point support, and
+         more.  This adds a little over 3k to a nonstatic build on x86.
+
+         The SuSv3 sort standard is available at:
+         http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
+
 config CONFIG_STTY
        bool "stty"
        default n
@@ -455,6 +473,13 @@ if !CONFIG_ASH && !CONFIG_HUSH && !CONFIG_LASH && !CONFIG_MSH
              and bash) have test builtin.
 endif
 
+config CONFIG_FEATURE_TEST_64
+       bool "  Extend test to 64 bit"
+       default n
+       depends on CONFIG_TEST
+       help
+         Enable 64-bit support in test.
+
 config CONFIG_TOUCH
        bool "touch"
        default n
@@ -538,6 +563,7 @@ config CONFIG_WC
 config CONFIG_WHO
        bool "who"
        default n
+       select CONFIG_FEATURE_U_W_TMP
        help
          who is used to show who is logged on.