use bb_xbind/bb_xlisten
[oweals/busybox.git] / coreutils / Config.in
index c77a1c90f93347008d973673ac67527efd7ec92c..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
@@ -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
@@ -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,7 +203,7 @@ config CONFIG_DU
          du is used to report the amount of disk space used
          for specified files.
 
-config CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
+config CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
        bool "Use a default blocksize of 1024 bytes (1K)"
        default y
        depends on CONFIG_DU
@@ -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
@@ -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
@@ -326,7 +376,7 @@ config CONFIG_FEATURE_LS_USERNAME
 config CONFIG_FEATURE_LS_COLOR
        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.
 
@@ -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