- add libbb function str_tolower to convert a string to lowercase.
[oweals/busybox.git] / miscutils / Config.in
index 5d0ec8a424362e9c2c39a008bae4ab252e6eacec..a1ed2436873c21e5d0caf167be0d23e9c03c132c 100644 (file)
@@ -19,6 +19,13 @@ config BBCONFIG
          The bbconfig applet will print the config file with which
          busybox was built.
 
+config CHRT
+       bool "chrt"
+       default n
+       help
+         manipulate real-time attributes of a process.
+         This requires sched_{g,s}etparam support in your libc.
+
 config CROND
        bool "crond"
        default n
@@ -133,6 +140,11 @@ config LESS
          'less' is a pager, meaning that it displays text files. It possesses
          a wide array of features, and is an improvement over 'more'.
 
+config FEATURE_LESS_MAXLINES
+       int "Max number of input lines less will try to eat"
+       default 9999999
+       depends on LESS
+
 config FEATURE_LESS_BRACKETS
        bool "Enable bracket searching"
        default y
@@ -245,19 +257,19 @@ config MAKEDEVS
          'leaf' is traditionally what busybox follows, it allows multiple
          devices of a particluar type to be created per command.
          e.g. /dev/hda[0-9]
-          Device properties are passed as command line arguments.
+         Device properties are passed as command line arguments.
          .
          'table' reads device properties from a file or stdin, allowing
          a batch of unrelated devices to be made with one command.
-          User/group names are allowed as an alternative to uid/gid.
+         User/group names are allowed as an alternative to uid/gid.
 
 choice
        prompt "Choose makedevs behaviour"
-       depends MAKEDEVS
+       depends on MAKEDEVS
        default FEATURE_MAKEDEVS_TABLE
 
 config FEATURE_MAKEDEVS_LEAF
-        bool "leaf"
+       bool "leaf"
 
 config FEATURE_MAKEDEVS_TABLE
        bool "table"
@@ -284,11 +296,19 @@ config NMETER
        help
          nmeter prints various system parameters continuously.
 
+config RAIDAUTORUN
+       bool "raidautorun"
+       default n
+       help
+         raidautorun tells the kernel md driver to
+         search and start RAID arrays.
+
 config READAHEAD
-        bool "readahead"
+       bool "readahead"
        default n
+       depends on LFS
        help
-         Preload the files listed on the command line into RAM cache so that
+         Preload the files listed on the command line into RAM cache so that
          subsequent reads on these files will not block on disk I/O.
 
          This applet just calls the readahead(2) system call on each file.
@@ -301,19 +321,19 @@ config READAHEAD
          run this applet as a background job.
 
 config RUNLEVEL
-        bool "runlevel"
+       bool "runlevel"
        default n
        help
-         find the current and previous system runlevel.
+         find the current and previous system runlevel.
 
          This applet uses utmp but does not rely on busybox supporing
          utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc.
 
 config RX
-        bool "rx"
+       bool "rx"
        default n
        help
-         Receive files using the Xmodem protocol.
+         Receive files using the Xmodem protocol.
 
 config STRINGS
        bool "strings"
@@ -333,6 +353,16 @@ config TASKSET
        default n
        help
          Retrieve or set a processes's CPU affinity.
+         This requires sched_{g,s}etaffinity support in your libc.
+
+config FEATURE_TASKSET_FANCY
+       bool "fancy output"
+       default y
+       depends on TASKSET
+       help
+         Add code for fancy output. This merely silences a compiler-warning
+         and adds about 135 Bytes. May be needed for machines with alot
+         of CPUs.
 
 config TIME
        bool "time"