use bb_xbind/bb_xlisten
[oweals/busybox.git] / coreutils / Config.in
index 62c5c327d5dbdc0a1d853bba65654eb1c15653e6..605649baf062f61faa3ae397934fbe9026221917 100644 (file)
@@ -26,6 +26,13 @@ config CONFIG_CAT
          cat is used to concatenate files and print them to the standard
          output.  Enable this option if you wish to enable the 'cat' utility.
 
+config CONFIG_CATV
+       bool "catv"
+       default n
+       help
+         Display nonprinting characters as escape sequences (like some
+         implementations' cat -v option).
+
 config CONFIG_CHGRP
        bool "chgrp"
        default n
@@ -52,6 +59,12 @@ config CONFIG_CHROOT
          chroot is used to change the root directory and run a command.
          The default command is `/bin/sh'.
 
+config CONFIG_CKSUM
+       bool "cksum"
+       default n
+       help
+         cksum is used to calculate the CRC32 checksum of a file.
+
 config CONFIG_CMP
        bool "cmp"
        default n
@@ -87,7 +100,7 @@ config CONFIG_DATE
          current time in the given format.
 
 config CONFIG_FEATURE_DATE_ISOFMT
-       bool "  Enable ISO date format output (-I)"
+       bool "Enable ISO date format output (-I)"
        default y
        depends on CONFIG_DATE
        help
@@ -102,6 +115,26 @@ config CONFIG_DD
          by default) using specific input and output blocksizes,
          while optionally performing conversions on it.
 
+config CONFIG_FEATURE_DD_SIGNAL_HANDLING
+       bool "Enable DD signal handling for status reporting"
+       default y
+       depends on CONFIG_DD
+       help
+         sending a SIGUSR1 signal to a running `dd' process makes it 
+         print to standard error the number of records read and written 
+         so far, then to resume copying.
+
+         $ dd if=/dev/zero of=/dev/null& pid=$! $ kill -USR1 $pid; sleep 1; kill $pid 
+         10899206+0 records in 10899206+0 records out
+
+config CONFIG_FEATURE_DD_IBS_OBS
+       bool "Enable ibs, obs and conv options"
+       default n
+       depends on CONFIG_DD
+       help
+         Enables support for writing a certain number of bytes in and out,
+         at a time, and performing conversions on the data stream.
+
 config CONFIG_DF
        bool "df"
        default n
@@ -118,7 +151,7 @@ config CONFIG_DIFF
          the patch command.
 
 config CONFIG_FEATURE_DIFF_BINARY
-       bool "  Enable checks for binary files"
+       bool "Enable checks for binary files"
        default y
        depends on CONFIG_DIFF
        help
@@ -126,7 +159,7 @@ config CONFIG_FEATURE_DIFF_BINARY
          before a comparison is carried out.
 
 config CONFIG_FEATURE_DIFF_DIR
-       bool "  Enable directory support"
+       bool "Enable directory support"
        default y
        depends on CONFIG_DIFF
        help
@@ -134,7 +167,7 @@ config CONFIG_FEATURE_DIFF_DIR
          comparison.
 
 config CONFIG_FEATURE_DIFF_MINIMAL
-       bool "  Enable -d option to find smaller sets of changes"
+       bool "Enable -d option to find smaller sets of changes"
        default n
        depends on CONFIG_DIFF
        help
@@ -159,6 +192,9 @@ config CONFIG_UNIX2DOS
        bool
        default y
        depends on CONFIG_DOS2UNIX
+       help
+         unix2dos is used to convert a text file from UNIX format to
+         DOS format, and vice versa.
 
 config CONFIG_DU
        bool "du (default blocksize of 512 bytes)"
@@ -167,8 +203,8 @@ config CONFIG_DU
          du is used to report the amount of disk space used
          for specified files.
 
-config CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
-       bool "  Use a default blocksize of 1024 bytes (1K)"
+config CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
+       bool "Use a default blocksize of 1024 bytes (1K)"
        default y
        depends on CONFIG_DU
        help
@@ -182,7 +218,7 @@ config CONFIG_ECHO
 
 # this entry also appears in shell/Config.in, next to the echo builtin
 config CONFIG_FEATURE_FANCY_ECHO
-       bool "  Enable echo options (-n and -e)"
+       bool "Enable echo options (-n and -e)"
        default y
        depends on CONFIG_ECHO
        help
@@ -196,6 +232,13 @@ config CONFIG_ENV
          a command; without options it displays the current
          environment.
 
+config CONFIG_FEATURE_ENV_LONG_OPTIONS
+       bool "Enable long options"
+       default n
+       depends on CONFIG_ENV && CONFIG_GETOPT_LONG
+       help
+         Support long options for the env applet.
+
 config CONFIG_EXPR
        bool "expr"
        default n
@@ -204,7 +247,7 @@ config CONFIG_EXPR
          to standard output.
 
 config CONFIG_EXPR_MATH_SUPPORT_64
-       bool "    Extend Posix numbers support to 64 bit"
+       bool "Extend Posix numbers support to 64 bit"
        default n
        depends on CONFIG_EXPR
        help
@@ -232,7 +275,7 @@ config CONFIG_HEAD
          from files.
 
 config CONFIG_FEATURE_FANCY_HEAD
-       bool "  Enable head options (-c, -q, and -v)"
+       bool "Enable head options (-c, -q, and -v)"
        default n
        depends on CONFIG_HEAD
        help
@@ -257,6 +300,13 @@ config CONFIG_INSTALL
        help
          Copy files and set attributes.
 
+config CONFIG_FEATURE_INSTALL_LONG_OPTIONS
+       bool "Enable long options"
+       default n
+       depends on CONFIG_INSTALL && CONFIG_GETOPT_LONG
+       help
+         Support long options for the install applet.
+
 config CONFIG_LENGTH
        bool "length"
        default n
@@ -282,56 +332,56 @@ config CONFIG_LS
          ls is used to list the contents of directories.
 
 config CONFIG_FEATURE_LS_FILETYPES
-       bool "  Enable filetyping options (-p and -F)"
+       bool "Enable filetyping options (-p and -F)"
        default y
        depends on CONFIG_LS
        help
          Enable the ls options (-p and -F).
 
 config CONFIG_FEATURE_LS_FOLLOWLINKS
-       bool "  Enable symlinks dereferencing (-L)"
+       bool "Enable symlinks dereferencing (-L)"
        default y
        depends on CONFIG_LS
        help
          Enable the ls option (-L).
 
 config CONFIG_FEATURE_LS_RECURSIVE
-       bool "  Enable recursion (-R)"
+       bool "Enable recursion (-R)"
        default y
        depends on CONFIG_LS
        help
          Enable the ls option (-R).
 
 config CONFIG_FEATURE_LS_SORTFILES
-       bool "  Sort the file names"
+       bool "Sort the file names"
        default y
        depends on CONFIG_LS
        help
          Allow ls to sort file names alphabetically.
 
 config CONFIG_FEATURE_LS_TIMESTAMPS
-       bool "  Show file timestamps"
+       bool "Show file timestamps"
        default y
        depends on CONFIG_LS
        help
          Allow ls to display timestamps for files.
 
 config CONFIG_FEATURE_LS_USERNAME
-       bool "  Show username/groupnames"
+       bool "Show username/groupnames"
        default y
        depends on CONFIG_LS
        help
          Allow ls to display username/groupname for files.
 
 config CONFIG_FEATURE_LS_COLOR
-       bool "  Allow use of color to identify file types"
+       bool "Allow use of color to identify file types"
        default y
-       depends on CONFIG_LS
+       depends on CONFIG_LS && CONFIG_GETOPT_LONG
        help
          This enables the --color option to ls.
 
 config CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
-       bool "  Produce colored ls output by default"
+       bool "Produce colored ls output by default"
        default n
        depends on CONFIG_FEATURE_LS_COLOR
        help
@@ -353,6 +403,13 @@ config CONFIG_MKDIR
        help
          mkdir is used to create directories with the specified names.
 
+config CONFIG_FEATURE_MKDIR_LONG_OPTIONS
+       bool "Enable long options"
+       default n
+       depends on CONFIG_MKDIR && CONFIG_GETOPT_LONG
+       help
+         Support long options for the mkdir applet.
+
 config CONFIG_MKFIFO
        bool "mkfifo"
        default n
@@ -373,6 +430,13 @@ config CONFIG_MV
        help
          mv is used to move or rename files or directories.
 
+config CONFIG_FEATURE_MV_LONG_OPTIONS
+       bool "Enable long options"
+       default n
+       depends on CONFIG_MV && CONFIG_GETOPT_LONG
+       help
+         Support long options for the mv applet.
+
 config CONFIG_NICE
        bool "nice"
        default n
@@ -448,7 +512,7 @@ config CONFIG_SLEEP
          sleep is used to pause for a specified number of seconds,
 
 config CONFIG_FEATURE_FANCY_SLEEP
-       bool "  Enable multiple integer args and optional time suffixes"
+       bool "Enable multiple integer args and optional time suffixes"
        default n
        depends on CONFIG_SLEEP
        help
@@ -461,7 +525,7 @@ config CONFIG_SORT
          sort is used to sort lines of text in specified files.
 
 config CONFIG_FEATURE_SORT_BIG
-       bool "  full SuSv3 compliant sort (Support -ktcsbdfiozgM)"
+       bool "full SuSv3 compliant sort (Support -ktcsbdfiozgM)"
        default y
        depends on CONFIG_SORT
        help
@@ -479,7 +543,7 @@ config CONFIG_STAT
          display file or filesystem status.
 
 config CONFIG_FEATURE_STAT_FORMAT
-       bool "  Enable custom formats (-c)"
+       bool "Enable custom formats (-c)"
        default n
        depends on CONFIG_STAT
        help
@@ -513,7 +577,7 @@ config CONFIG_TAIL
          from files.
 
 config CONFIG_FEATURE_FANCY_TAIL
-       bool "  Enable extra tail options (-q, -s, and -v)"
+       bool "Enable extra tail options (-q, -s, and -v)"
        default y
        depends on CONFIG_TAIL
        help
@@ -528,7 +592,7 @@ config CONFIG_TEE
          to standard output and files.
 
 config CONFIG_FEATURE_TEE_USE_BLOCK_IO
-       bool "  Enable block i/o (larger/faster) instead of byte i/o."
+       bool "Enable block i/o (larger/faster) instead of byte i/o."
        default n
        depends on CONFIG_TEE
        help
@@ -543,7 +607,7 @@ config CONFIG_TEST
          and bash) have test builtin.
 
 config CONFIG_FEATURE_TEST_64
-       bool "  Extend test to 64 bit"
+       bool "Extend test to 64 bit"
        default n
        depends on CONFIG_TEST
        help
@@ -564,7 +628,7 @@ config CONFIG_TR
          input, writing to standard output.
 
 config CONFIG_FEATURE_TR_CLASSES
-       bool "  Enable character classes (such as [:upper:])"
+       bool "Enable character classes (such as [:upper:])"
        default n
        depends on CONFIG_TR
        help
@@ -572,7 +636,7 @@ config CONFIG_FEATURE_TR_CLASSES
          tr [:upper:] [:lower:] to convert input into lowercase.
 
 config CONFIG_FEATURE_TR_EQUIV
-       bool "  Enable equivalence classes"
+       bool "Enable equivalence classes"
        default n
        depends on CONFIG_TR
        help
@@ -665,7 +729,7 @@ comment "Common options for cp and mv"
        depends on CONFIG_CP || CONFIG_MV
 
 config CONFIG_FEATURE_PRESERVE_HARDLINKS
-       bool "  Preserve hard links"
+       bool "Preserve hard links"
        default n
        depends on CONFIG_CP || CONFIG_MV
        help
@@ -675,7 +739,7 @@ comment "Common options for ls, more and telnet"
        depends on CONFIG_LS || CONFIG_MORE || CONFIG_TELNET
 
 config CONFIG_FEATURE_AUTOWIDTH
-       bool "  Calculate terminal & column widths"
+       bool "Calculate terminal & column widths"
        default y
        depends on CONFIG_LS || CONFIG_MORE || CONFIG_TELNET
        help
@@ -689,7 +753,7 @@ comment "Common options for df, du, ls"
        depends on CONFIG_DF || CONFIG_DU || CONFIG_LS
 
 config CONFIG_FEATURE_HUMAN_READABLE
-       bool "  Support for human readable output (example 13k, 23M, 235G)"
+       bool "Support for human readable output (example 13k, 23M, 235G)"
        default n
        depends on CONFIG_DF || CONFIG_DU || CONFIG_LS
        help
@@ -699,7 +763,7 @@ comment "Common options for md5sum, sha1sum"
        depends on CONFIG_MD5SUM || CONFIG_SHA1SUM
 
 config CONFIG_FEATURE_MD5_SHA1_SUM_CHECK
-       bool "  Enable -c, -s and -w options"
+       bool "Enable -c, -s and -w options"
        default n
        depends on CONFIG_MD5SUM || CONFIG_SHA1SUM
        help