blob: ac1e2b57caa0657b0b490d1ee38b6a1cff8ba2b2 [file] [log] [blame]
Eric Andersenc9f20d92002-12-05 08:41:41 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Miscellaneous Utilities"
7
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00008config ADJTIMEX
Eric Andersenc9f20d92002-12-05 08:41:41 +00009 bool "adjtimex"
10 default n
11 help
Eric Andersene5642112003-07-14 19:37:08 +000012 Adjtimex reads and optionally sets adjustment parameters for
13 the Linux clock adjustment algorithm.
Eric Andersenc9f20d92002-12-05 08:41:41 +000014
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000015config BBCONFIG
Mike Frysinger9ed10942005-09-18 04:43:32 +000016 bool "bbconfig"
17 default n
18 help
19 The bbconfig applet will print the config file with which
20 busybox was built.
21
Denis Vlasenko5233cd32008-02-18 23:24:46 +000022config CHAT
23 bool "chat"
24 default n
25 help
26 Simple chat utility.
27
28config FEATURE_CHAT_NOFAIL
29 bool "Enable NOFAIL expect strings"
Denis Vlasenko86174542008-02-19 11:36:22 +000030 depends on CHAT
Denis Vlasenko5233cd32008-02-18 23:24:46 +000031 default y
32 help
33 When enabled expect strings which are started with a dash trigger
34 no-fail mode. That is when expectation is not met within timeout
35 the script is not terminated but sends next SEND string and waits
36 for next EXPECT string. This allows to compose far more flexible
37 scripts.
38
39config FEATURE_CHAT_TTY_HIFI
40 bool "Force STDIN to be a TTY"
Denis Vlasenko86174542008-02-19 11:36:22 +000041 depends on CHAT
Denis Vlasenko5233cd32008-02-18 23:24:46 +000042 default n
43 help
44 Original chat always treats STDIN as a TTY device and sets for it
45 so-called raw mode. This option turns on such behaviour.
46
47config FEATURE_CHAT_IMPLICIT_CR
48 bool "Enable implicit Carriage Return"
Denis Vlasenko86174542008-02-19 11:36:22 +000049 depends on CHAT
Denis Vlasenko5233cd32008-02-18 23:24:46 +000050 default y
51 help
52 When enabled make chat to terminate all SEND strings with a "\r"
53 unless "\c" is met anywhere in the string.
54
55config FEATURE_CHAT_SWALLOW_OPTS
56 bool "Swallow options"
Denis Vlasenko86174542008-02-19 11:36:22 +000057 depends on CHAT
Denis Vlasenko5233cd32008-02-18 23:24:46 +000058 default n
59 help
60 Busybox chat require no options. To make it not fail when used
61 in place of original chat (which has a bunch of options) turn
62 this on.
63
64config FEATURE_CHAT_SEND_ESCAPES
65 bool "Support weird SEND escapes"
Denis Vlasenko86174542008-02-19 11:36:22 +000066 depends on CHAT
Denis Vlasenko5233cd32008-02-18 23:24:46 +000067 default n
68 help
69 Original chat uses some escape sequences in SEND arguments which
70 are not sent to device but rather performs special actions.
71 E.g. "\K" means to send a break sequence to device.
72 "\d" delays execution for a second, "\p" -- for a 1/100 of second.
73 Before turning this option on think twice: do you really need them?
74
75config FEATURE_CHAT_VAR_ABORT_LEN
76 bool "Support variable-length ABORT conditions"
Denis Vlasenko86174542008-02-19 11:36:22 +000077 depends on CHAT
Denis Vlasenko5233cd32008-02-18 23:24:46 +000078 default n
79 help
80 Original chat uses fixed 50-bytes length ABORT conditions. Say N here.
81
82config FEATURE_CHAT_CLR_ABORT
83 bool "Support revoking of ABORT conditions"
Denis Vlasenko86174542008-02-19 11:36:22 +000084 depends on CHAT
Denis Vlasenko5233cd32008-02-18 23:24:46 +000085 default n
86 help
87 Support CLR_ABORT directive.
88
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000089config CHRT
90 bool "chrt"
91 default n
92 help
93 manipulate real-time attributes of a process.
94 This requires sched_{g,s}etparam support in your libc.
95
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000096config CROND
Eric Andersenc9f20d92002-12-05 08:41:41 +000097 bool "crond"
98 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000099 select FEATURE_SUID
100 select FEATURE_SYSLOG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000101 help
Eric Andersene5642112003-07-14 19:37:08 +0000102 Crond is a background daemon that parses individual crontab
103 files and executes commands on behalf of the users in question.
Eric Andersen98e4eab2004-07-20 08:07:10 +0000104 This is a port of dcron from slackware. It uses files of the
105 format /var/spool/cron/crontabs/<username> files, for example:
106 $ cat /var/spool/cron/crontabs/root
107 # Run daily cron jobs at 4:40 every day:
108 40 4 * * * /etc/cron/daily > /dev/null 2>&1
Eric Andersen13879102004-08-26 23:13:00 +0000109 Note that Busybox binary must be setuid root for this applet to
110 work properly.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000111
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000112config DEBUG_CROND_OPTION
Bernhard Reutner-Fischeref216292006-05-20 14:14:05 +0000113 bool "Support debug option -d"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000114 depends on CROND
Bernhard Reutner-Fischeref216292006-05-20 14:14:05 +0000115 default n
116 help
117 Support option -d to enter debug mode.
118
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000119config FEATURE_CROND_CALL_SENDMAIL
Rob Landley2ec922e2006-04-13 23:22:16 +0000120 bool "Using /usr/sbin/sendmail?"
Eric Andersen35e643b2003-07-28 07:40:39 +0000121 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000122 depends on CROND
Eric Andersen35e643b2003-07-28 07:40:39 +0000123 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000124 Support calling /usr/sbin/sendmail for send cmd outputs.
Eric Andersen35e643b2003-07-28 07:40:39 +0000125
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000126config CRONTAB
Eric Andersenc9f20d92002-12-05 08:41:41 +0000127 bool "crontab"
128 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000129 select FEATURE_SUID
Eric Andersenc9f20d92002-12-05 08:41:41 +0000130 help
Eric Andersene5642112003-07-14 19:37:08 +0000131 Crontab manipulates the crontab for a particular user. Only
132 the superuser may specify a different user and/or crontab directory.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000133
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000134config DC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000135 bool "dc"
136 default n
137 help
Eric Andersene5642112003-07-14 19:37:08 +0000138 Dc is a reverse-polish desk calculator which supports unlimited
139 precision arithmetic.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000140
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000141config DEVFSD
Rob Landley4c5ad2f2006-06-07 20:11:53 +0000142 bool "devfsd (obsolete)"
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000143 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000144 select FEATURE_SYSLOG
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000145 help
Rob Landley1f9145c2006-07-12 21:31:16 +0000146 This is deprecated, and will be removed at the end of 2008.
Rob Landley4c5ad2f2006-06-07 20:11:53 +0000147
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000148 Provides compatibility with old device names on a devfs systems.
149 You should set it to true if you have devfs enabled.
Eric Andersenf18bd892003-12-19 11:07:59 +0000150 The following keywords in devsfd.conf are supported:
151 "CLEAR_CONFIG", "INCLUDE", "OPTIONAL_INCLUDE", "RESTORE",
152 "PERMISSIONS", "EXECUTE", "COPY", "IGNORE",
153 "MKOLDCOMPAT", "MKNEWCOMPAT","RMOLDCOMPAT", "RMNEWCOMPAT".
154
155 But only if they are written UPPERCASE!!!!!!!!
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000156
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000157config DEVFSD_MODLOAD
Eric Andersenf18bd892003-12-19 11:07:59 +0000158 bool "Adds support for MODLOAD keyword in devsfd.conf"
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000159 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000160 depends on DEVFSD
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000161 help
Rob Landley4c5ad2f2006-06-07 20:11:53 +0000162 This actually doesn't work with busybox modutils but needs
163 the external modutils.
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000164
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000165config DEVFSD_FG_NP
Eric Andersenf18bd892003-12-19 11:07:59 +0000166 bool "Enables the -fg and -np options"
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000167 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000168 depends on DEVFSD
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000169 help
Eric Andersenf18bd892003-12-19 11:07:59 +0000170 -fg Run the daemon in the foreground.
171 -np Exit after parsing the configuration file. Do not poll for events.
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000172
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000173config DEVFSD_VERBOSE
Eric Andersenf18bd892003-12-19 11:07:59 +0000174 bool "Increases logging (and size)"
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000175 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000176 depends on DEVFSD
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000177 help
Eric Andersenf18bd892003-12-19 11:07:59 +0000178 Increases logging to stderr or syslog.
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000179
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000180config FEATURE_DEVFS
Rob Landley4c5ad2f2006-06-07 20:11:53 +0000181 bool " Use devfs names for all devices (obsolete)"
182 default n
183 help
Rob Landley1f9145c2006-07-12 21:31:16 +0000184 This is obsolete and will be going away at the end of 2008..
185
Rob Landley4c5ad2f2006-06-07 20:11:53 +0000186 This tells busybox to look for names like /dev/loop/0 instead of
187 /dev/loop0. If your /dev directory has normal names instead of
188 devfs names, you don't want this.
189
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000190config EJECT
Mike Frysinger55e2cf62005-05-11 00:25:47 +0000191 bool "eject"
192 default n
193 help
194 Used to eject cdroms. (defaults to /dev/cdrom)
195
Bernhard Reutner-Fischerafdad652008-02-08 15:04:00 +0000196config FEATURE_EJECT_SCSI
197 bool "eject scsi support"
198 default n
199 depends on EJECT
200 help
201 Add the -s option to eject, this allows to eject SCSI-Devices and
202 usb-storage devices.
203
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000204config LAST
Eric Andersen2e9c2572003-08-08 22:26:06 +0000205 bool "last"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000206 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000207 select FEATURE_WTMP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000208 help
Eric Andersen2e9c2572003-08-08 22:26:06 +0000209 'last' displays a list of the last users that logged into the system.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000210
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000211config LESS
Rob Landley9200e792005-09-15 19:26:59 +0000212 bool "less"
213 default n
214 help
215 'less' is a pager, meaning that it displays text files. It possesses
216 a wide array of features, and is an improvement over 'more'.
217
Denis Vlasenko9a7cef92006-12-20 02:46:48 +0000218config FEATURE_LESS_MAXLINES
219 int "Max number of input lines less will try to eat"
220 default 9999999
221 depends on LESS
222
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000223config FEATURE_LESS_BRACKETS
Rob Landley2ec922e2006-04-13 23:22:16 +0000224 bool "Enable bracket searching"
Rob Landley9200e792005-09-15 19:26:59 +0000225 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000226 depends on LESS
Rob Landley9200e792005-09-15 19:26:59 +0000227 help
228 This option adds the capability to search for matching left and right
229 brackets, facilitating programming.
230
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000231config FEATURE_LESS_FLAGS
Rob Landley2ec922e2006-04-13 23:22:16 +0000232 bool "Enable extra flags"
Rob Landley9200e792005-09-15 19:26:59 +0000233 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000234 depends on LESS
Rob Landley9200e792005-09-15 19:26:59 +0000235 help
236 The extra flags provided do the following:
237
238 The -M flag enables a more sophisticated status line.
239 The -m flag enables a simpler status line with a percentage.
240
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000241config FEATURE_LESS_FLAGCS
Rob Landley2ec922e2006-04-13 23:22:16 +0000242 bool "Enable flag changes"
Rob Landley9200e792005-09-15 19:26:59 +0000243 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000244 depends on LESS
Rob Landley9200e792005-09-15 19:26:59 +0000245 help
246 This enables the ability to change command-line flags within
247 less itself.
248
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000249config FEATURE_LESS_MARKS
Rob Landley2ec922e2006-04-13 23:22:16 +0000250 bool "Enable marks"
Rob Landley9200e792005-09-15 19:26:59 +0000251 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000252 depends on LESS
Rob Landley9200e792005-09-15 19:26:59 +0000253 help
254 Marks enable positions in a file to be stored for easy reference.
255
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000256config FEATURE_LESS_REGEXP
Rob Landley2ec922e2006-04-13 23:22:16 +0000257 bool "Enable regular expressions"
Rob Landley9200e792005-09-15 19:26:59 +0000258 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000259 depends on LESS
Rob Landley9200e792005-09-15 19:26:59 +0000260 help
261 Enable regular expressions, allowing complex file searches.
262
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000263config HDPARM
Eric Andersen3443bd72003-07-22 07:30:36 +0000264 bool "hdparm"
265 default n
266 help
267 Get/Set hard drive parameters. Primarily intended for ATA
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000268 drives. Adds about 13k (or around 30k if you enable the
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000269 FEATURE_HDPARM_GET_IDENTITY option)....
Eric Andersen3443bd72003-07-22 07:30:36 +0000270
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000271config FEATURE_HDPARM_GET_IDENTITY
Rob Landley2ec922e2006-04-13 23:22:16 +0000272 bool "Support obtaining detailed information directly from drives"
Eric Andersen3443bd72003-07-22 07:30:36 +0000273 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000274 depends on HDPARM
Eric Andersen3443bd72003-07-22 07:30:36 +0000275 help
Rob Landley06208412006-05-31 22:52:57 +0000276 Enables the -I and -i options to obtain detailed information
Eric Andersen3443bd72003-07-22 07:30:36 +0000277 directly from drives about their capabilities and supported ATA
Rob Landley06208412006-05-31 22:52:57 +0000278 feature set. If no device name is specified, hdparm will read
279 identify data from stdin. Enabling this option will add about 16k...
Eric Andersen3443bd72003-07-22 07:30:36 +0000280
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000281config FEATURE_HDPARM_HDIO_SCAN_HWIF
Rob Landley2ec922e2006-04-13 23:22:16 +0000282 bool "Register an IDE interface (DANGEROUS)"
Eric Andersen3443bd72003-07-22 07:30:36 +0000283 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000284 depends on HDPARM
Eric Andersen3443bd72003-07-22 07:30:36 +0000285 help
286 Enables the 'hdparm -R' option to register an IDE interface.
287 This is dangerous stuff, so you should probably say N.
288
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000289config FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
Rob Landley2ec922e2006-04-13 23:22:16 +0000290 bool "Un-register an IDE interface (DANGEROUS)"
Eric Andersen3443bd72003-07-22 07:30:36 +0000291 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000292 depends on HDPARM
Eric Andersen3443bd72003-07-22 07:30:36 +0000293 help
294 Enables the 'hdparm -U' option to un-register an IDE interface.
295 This is dangerous stuff, so you should probably say N.
296
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000297config FEATURE_HDPARM_HDIO_DRIVE_RESET
Rob Landley2ec922e2006-04-13 23:22:16 +0000298 bool "perform device reset (DANGEROUS)"
Eric Andersen3443bd72003-07-22 07:30:36 +0000299 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000300 depends on HDPARM
Eric Andersen3443bd72003-07-22 07:30:36 +0000301 help
302 Enables the 'hdparm -w' option to perform a device reset.
303 This is dangerous stuff, so you should probably say N.
304
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000305config FEATURE_HDPARM_HDIO_TRISTATE_HWIF
Rob Landley2ec922e2006-04-13 23:22:16 +0000306 bool "tristate device for hotswap (DANGEROUS)"
Eric Andersen3443bd72003-07-22 07:30:36 +0000307 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000308 depends on HDPARM
Eric Andersen3443bd72003-07-22 07:30:36 +0000309 help
310 Enables the 'hdparm -x' option to tristate device for hotswap,
311 and the '-b' option to get/set bus state. This is dangerous
312 stuff, so you should probably say N.
313
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000314config FEATURE_HDPARM_HDIO_GETSET_DMA
Rob Landley2ec922e2006-04-13 23:22:16 +0000315 bool "get/set using_dma flag (DANGEROUS)"
Eric Andersen0a57a792003-08-06 08:57:35 +0000316 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000317 depends on HDPARM
Eric Andersen0a57a792003-08-06 08:57:35 +0000318 help
319 Enables the 'hdparm -d' option to get/set using_dma flag.
320 This is dangerous stuff, so you should probably say N.
321
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000322config MAKEDEVS
Eric Andersenc9f20d92002-12-05 08:41:41 +0000323 bool "makedevs"
324 default n
325 help
Eric Andersen3d925622005-06-09 10:16:02 +0000326 'makedevs' is a utility used to create a batch of devices with
327 one command.
328 .
329 There are two choices for command line behaviour, the interface
330 as used by LEAF/Linux Router Project, or a device table file.
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000331 .
Eric Andersen3d925622005-06-09 10:16:02 +0000332 'leaf' is traditionally what busybox follows, it allows multiple
333 devices of a particluar type to be created per command.
334 e.g. /dev/hda[0-9]
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000335 Device properties are passed as command line arguments.
Eric Andersen3d925622005-06-09 10:16:02 +0000336 .
337 'table' reads device properties from a file or stdin, allowing
Bernhard Reutner-Fischer771b1862006-03-24 14:30:05 +0000338 a batch of unrelated devices to be made with one command.
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000339 User/group names are allowed as an alternative to uid/gid.
Eric Andersen3d925622005-06-09 10:16:02 +0000340
341choice
342 prompt "Choose makedevs behaviour"
Mike Frysinger08e70972007-01-24 09:14:09 +0000343 depends on MAKEDEVS
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000344 default FEATURE_MAKEDEVS_TABLE
Eric Andersen3d925622005-06-09 10:16:02 +0000345
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000346config FEATURE_MAKEDEVS_LEAF
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000347 bool "leaf"
Eric Andersen3d925622005-06-09 10:16:02 +0000348
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000349config FEATURE_MAKEDEVS_TABLE
Eric Andersen3d925622005-06-09 10:16:02 +0000350 bool "table"
351
352endchoice
Eric Andersenc9f20d92002-12-05 08:41:41 +0000353
Denis Vlasenko23856ab2007-09-22 20:51:41 +0000354config MICROCOM
355 bool "microcom"
356 default n
357 help
358 The poor man's minicom utility for chatting with serial port devices.
359
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000360config MOUNTPOINT
Rob Landleyd00b3a52005-08-20 05:07:08 +0000361 bool "mountpoint"
362 default n
363 help
364 mountpoint checks if the directory is a mountpoint.
365
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000366config MT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000367 bool "mt"
368 default n
369 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000370 mt is used to control tape devices. You can use the mt utility
Eric Andersene5642112003-07-14 19:37:08 +0000371 to advance or rewind a tape past a specified number of archive
372 files on the tape.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000373
Denis Vlasenkoc108ed52006-10-20 19:39:48 +0000374config RAIDAUTORUN
375 bool "raidautorun"
376 default n
377 help
378 raidautorun tells the kernel md driver to
379 search and start RAID arrays.
380
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000381config READAHEAD
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000382 bool "readahead"
Rob Landley0e4690d2006-08-20 22:12:18 +0000383 default n
Bernhard Reutner-Fischerf98d6372007-01-26 09:03:23 +0000384 depends on LFS
Rob Landley0e4690d2006-08-20 22:12:18 +0000385 help
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000386 Preload the files listed on the command line into RAM cache so that
Rob Landley0e4690d2006-08-20 22:12:18 +0000387 subsequent reads on these files will not block on disk I/O.
388
389 This applet just calls the readahead(2) system call on each file.
390 It is mainly useful in system startup scripts to preload files
391 or executables before they are used. When used at the right time
392 (in particular when a CPU boundprocess is running) it can
393 significantly speed up system startup.
394
395 As readahead(2) blocks until each file has been read, it is best to
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000396 run this applet as a background job.
Rob Landley0e4690d2006-08-20 22:12:18 +0000397
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000398config RUNLEVEL
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000399 bool "runlevel"
Bernhard Reutner-Fischer62d7acc2005-10-28 20:37:03 +0000400 default n
401 help
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000402 find the current and previous system runlevel.
Bernhard Reutner-Fischer62d7acc2005-10-28 20:37:03 +0000403
404 This applet uses utmp but does not rely on busybox supporing
405 utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc.
406
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000407config RX
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000408 bool "rx"
Glenn L McGrath8f3bc4c2003-12-20 07:30:35 +0000409 default n
410 help
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000411 Receive files using the Xmodem protocol.
Glenn L McGrath8f3bc4c2003-12-20 07:30:35 +0000412
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000413config SCRIPT
414 bool "script"
415 default n
416 help
417 The script makes typescript of terminal session.
418
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000419config STRINGS
Eric Andersenc9f20d92002-12-05 08:41:41 +0000420 bool "strings"
421 default n
422 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000423 strings prints the printable character sequences for each file
Eric Andersene5642112003-07-14 19:37:08 +0000424 specified.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000425
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000426config SETSID
Paul Fox42403642005-08-01 22:52:09 +0000427 bool "setsid"
428 default n
429 help
430 setsid runs a program in a new session
431
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000432config TASKSET
Bernhard Reutner-Fischer16d3e4e2006-06-07 15:44:59 +0000433 bool "taskset"
434 default n
435 help
Mike Frysinger259472e2006-07-03 05:22:36 +0000436 Retrieve or set a processes's CPU affinity.
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +0000437 This requires sched_{g,s}etaffinity support in your libc.
438
439config FEATURE_TASKSET_FANCY
440 bool "fancy output"
441 default y
442 depends on TASKSET
443 help
444 Add code for fancy output. This merely silences a compiler-warning
445 and adds about 135 Bytes. May be needed for machines with alot
446 of CPUs.
Rob Landley12d94192006-06-30 22:20:43 +0000447
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000448config TIME
Eric Andersenc9f20d92002-12-05 08:41:41 +0000449 bool "time"
450 default n
451 help
Eric Andersene5642112003-07-14 19:37:08 +0000452 The time command runs the specified program with the given arguments.
453 When the command finishes, time writes a message to standard output
454 giving timing statistics about this program run.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000455
Denis Vlasenkoc01af952007-08-02 22:23:47 +0000456config TTYSIZE
457 bool "ttysize"
458 default n
459 help
460 A replacement for "stty size". Unlike stty, can report only width,
461 only height, or both, in any order. It also does not complain on error,
462 but returns default 80x24. Usage in shell scripts: width=`ttysize w`.
463
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000464config WATCHDOG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000465 bool "watchdog"
466 default n
467 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000468 The watchdog utility is used with hardware or software watchdog
Eric Andersen795c4ba2003-07-22 10:11:48 +0000469 device drivers. It opens the specified watchdog device special file
470 and periodically writes a magic character to the device. If the
471 watchdog applet ever fails to write the magic character within a
Eric Andersenac00aa72003-07-26 08:07:56 +0000472 certain amount of time, the watchdog device assumes the system has
473 hung, and will cause the hardware to reboot.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000474
475endmenu