Replaced by md5_sha1_sum.c
[oweals/busybox.git] / coreutils / Config.in
index e23bb754c60dd710c34a253dbff4782f54a3c71c..a388cd9e8eed9078e2d5ebd52494a37bbf78f971 100644 (file)
@@ -17,7 +17,7 @@ config CONFIG_CAL
        bool "cal"
        default n
        help
-         cal is used to display a montly calender.
+         cal is used to display a monthly calender.
 
 config CONFIG_CAT
        bool "cat"
@@ -30,7 +30,7 @@ config CONFIG_CHGRP
        bool "chgrp"
        default n
        help
-         chgrp is used to change the group owership of files.
+         chgrp is used to change the group ownership of files.
 
 config CONFIG_CHMOD
        bool "chmod"
@@ -42,7 +42,7 @@ config CONFIG_CHOWN
        bool "chown"
        default n
        help
-         chown is used too change the user and/or group ownership
+         chown is used to change the user and/or group ownership
          of files.
 
 config CONFIG_CHROOT
@@ -114,14 +114,14 @@ config CONFIG_DIRNAME
        bool "dirname"
        default n
        help
-         dirname is used to strip a non directory suffix from
+         dirname is used to strip a non-directory suffix from
          a file name.
 
 config CONFIG_DOS2UNIX
        bool "dos2unix/unix2dos"
        default n
        help
-         dos2unix is uses to convert a text file from DOS format to
+         dos2unix is used to convert a text file from DOS format to
          UNIX format, and vice versa.
 
 config CONFIG_UNIX2DOS
@@ -161,7 +161,7 @@ config CONFIG_ENV
        default n
        help
          env is used to set an environment variable and run
-         a command, without options it displays the current
+         a command; without options it displays the current
          environment.
 
 config CONFIG_EXPR
@@ -218,6 +218,12 @@ config CONFIG_ID
        help
          id displays the current user and group ID names.
 
+config CONFIG_INSTALL
+       bool "install"
+       default n
+       help
+         Copy files and set attributes.
+
 config CONFIG_LENGTH
        bool "length"
        default n
@@ -347,7 +353,7 @@ config CONFIG_REALPATH
        default n
        help
          Return the canonicalized absolute pathname.
-         This isnt provided by GNU shellutils, but where else does it belong.
+         This isn't provided by GNU shellutils, but where else does it belong.
 
 config CONFIG_RM
        bool "rm"
@@ -367,13 +373,6 @@ config CONFIG_SHA1SUM
        help
          Compute and check SHA1 message digest
 
-config CONFIG_FEATURE_SHA1SUM_CHECK
-       bool "  Enale -c and -w options"
-       default n
-       help
-         Enabling the -c and -w options allow files to be checked
-         against pre-calculated hash values.
-
 config CONFIG_SLEEP
        bool "sleep (single integer arg with no suffix)"
        default n
@@ -393,22 +392,6 @@ config CONFIG_SORT
        help
          sort is used to sort lines of text in specified files.
 
-config CONFIG_FEATURE_SORT_REVERSE
-       bool "  Enable reverse sort"
-       default y
-       depends on CONFIG_SORT
-       help
-         Enable the `-r' option that allows sort to sort lines of
-         text in reverse.
-
-config CONFIG_FEATURE_SORT_UNIQUE
-       bool "  Enable unique sort"
-       default y
-       depends on CONFIG_SORT
-       help
-         Enable the `-u' option that allows sort to only sort lines
-         that are uniq. 
-
 config CONFIG_STTY
        bool "stty"
        default n
@@ -429,11 +412,12 @@ config CONFIG_TAIL
          from files.
 
 config CONFIG_FEATURE_FANCY_TAIL
-       bool "  Enable extra tail options (-c, -q, -s, and -v)"
+       bool "  Enable extra tail options (-q, -s, and -v)"
        default y
        depends on CONFIG_TAIL
        help
-         Enable tail options (-c, -q, -s, and -v).
+         The options (-q, -s, and -v) are provided by GNU tail, but
+         are not specific in the SUSv3 standard.
 
 config CONFIG_TEE
        bool "tee"
@@ -462,7 +446,7 @@ if !CONFIG_ASH && !CONFIG_HUSH && !CONFIG_LASH && !CONFIG_MSH
            help
              test is used to check file types and compare values,
              returning an appropriate exit code. The shells (ash
-             and bash have test builtin).
+             and bash) have test builtin.
 endif
 
 config CONFIG_TOUCH
@@ -576,14 +560,18 @@ config CONFIG_FEATURE_PRESERVE_HARDLINKS
          Allow cp and mv to preserve hard links.
 
 comment "Common options for ls and more"
-    depends on CONFIG_LS || CONFIG_MORE
+       depends on CONFIG_LS || CONFIG_MORE
 
 config CONFIG_FEATURE_AUTOWIDTH
        bool "  Calculate terminal & column widths"
-       default n
+       default y
        depends on CONFIG_LS || CONFIG_MORE
        help
-         Allow ls and more to calculate terminal and column widths.
+         This option allows utilities such as 'ls' and 'more' to determine the
+         width of the screen, which can allow them to display additional text
+         or avoid wrapping text onto the next line.  If you leave this
+         disabled, your utilities will be especially primitive and will be
+         unable to determine the current screen width.
 
 comment "Common options for df, du, ls"
     depends on CONFIG_DF || CONFIG_DU || CONFIG_LS
@@ -595,4 +583,15 @@ config CONFIG_FEATURE_HUMAN_READABLE
        help
          Allow df, du, and ls to have human readable output.
 
+comment "Common options for md5sum, sha1sum"
+    depends on CONFIG_MD5SUM || CONFIG_SHA1SUM
+
+config CONFIG_FEATURE_MD5_SHA1_SUM_CHECK
+       bool "  Enable -c and -w options"
+       default n
+       depends on CONFIG_MD5SUM || CONFIG_SHA1SUM
+       help
+         Enabling the -c and -w options allows files to be checked
+         against pre-calculated hash values.
+
 endmenu