817a514b75ee86f16036b8d8d30a1b91dc07f8a6
[openwrt/openwrt.git] / package / utils / busybox / config / miscutils / Config.in
1 # DO NOT EDIT. This file is generated from Config.src
2 #
3 # For a description of the syntax of this configuration file,
4 # see scripts/kbuild/config-language.txt.
5 #
6
7 menu "Miscellaneous Utilities"
8
9 config BUSYBOX_CONFIG_ADJTIMEX
10 bool "adjtimex"
11 default BUSYBOX_DEFAULT_ADJTIMEX
12 select BUSYBOX_CONFIG_PLATFORM_LINUX
13 help
14 Adjtimex reads and optionally sets adjustment parameters for
15 the Linux clock adjustment algorithm.
16 config BUSYBOX_CONFIG_BBCONFIG
17 bool "bbconfig"
18 default BUSYBOX_DEFAULT_BBCONFIG
19 help
20 The bbconfig applet will print the config file with which
21 busybox was built.
22
23 config BUSYBOX_CONFIG_FEATURE_COMPRESS_BBCONFIG
24 bool "Compress bbconfig data"
25 default BUSYBOX_DEFAULT_FEATURE_COMPRESS_BBCONFIG
26 depends on BUSYBOX_CONFIG_BBCONFIG
27 help
28 Store bbconfig data in compressed form, uncompress them on-the-fly
29 before output.
30
31 If you have a really tiny busybox with few applets enabled (and
32 bunzip2 isn't one of them), the overhead of the decompressor might
33 be noticeable. Also, if you run executables directly from ROM
34 and have very little memory, this might not be a win. Otherwise,
35 you probably want this.
36 config BUSYBOX_CONFIG_BEEP
37 bool "beep"
38 default BUSYBOX_DEFAULT_BEEP
39 select BUSYBOX_CONFIG_PLATFORM_LINUX
40 help
41 The beep applets beeps in a given freq/Hz.
42
43 config BUSYBOX_CONFIG_FEATURE_BEEP_FREQ
44 int "default frequency"
45 range 0 2147483647
46 default BUSYBOX_DEFAULT_FEATURE_BEEP_FREQ
47 depends on BUSYBOX_CONFIG_BEEP
48 help
49 Frequency for default beep.
50
51 config BUSYBOX_CONFIG_FEATURE_BEEP_LENGTH_MS
52 int "default length"
53 range 0 2147483647
54 default BUSYBOX_DEFAULT_FEATURE_BEEP_LENGTH_MS
55 depends on BUSYBOX_CONFIG_BEEP
56 help
57 Length in ms for default beep.
58 config BUSYBOX_CONFIG_CHAT
59 bool "chat"
60 default BUSYBOX_DEFAULT_CHAT
61 help
62 Simple chat utility.
63
64 config BUSYBOX_CONFIG_FEATURE_CHAT_NOFAIL
65 bool "Enable NOFAIL expect strings"
66 depends on BUSYBOX_CONFIG_CHAT
67 default BUSYBOX_DEFAULT_FEATURE_CHAT_NOFAIL
68 help
69 When enabled expect strings which are started with a dash trigger
70 no-fail mode. That is when expectation is not met within timeout
71 the script is not terminated but sends next SEND string and waits
72 for next EXPECT string. This allows to compose far more flexible
73 scripts.
74
75 config BUSYBOX_CONFIG_FEATURE_CHAT_TTY_HIFI
76 bool "Force STDIN to be a TTY"
77 depends on BUSYBOX_CONFIG_CHAT
78 default BUSYBOX_DEFAULT_FEATURE_CHAT_TTY_HIFI
79 help
80 Original chat always treats STDIN as a TTY device and sets for it
81 so-called raw mode. This option turns on such behaviour.
82
83 config BUSYBOX_CONFIG_FEATURE_CHAT_IMPLICIT_CR
84 bool "Enable implicit Carriage Return"
85 depends on BUSYBOX_CONFIG_CHAT
86 default BUSYBOX_DEFAULT_FEATURE_CHAT_IMPLICIT_CR
87 help
88 When enabled make chat to terminate all SEND strings with a "\r"
89 unless "\c" is met anywhere in the string.
90
91 config BUSYBOX_CONFIG_FEATURE_CHAT_SWALLOW_OPTS
92 bool "Swallow options"
93 depends on BUSYBOX_CONFIG_CHAT
94 default BUSYBOX_DEFAULT_FEATURE_CHAT_SWALLOW_OPTS
95 help
96 Busybox chat require no options. To make it not fail when used
97 in place of original chat (which has a bunch of options) turn
98 this on.
99
100 config BUSYBOX_CONFIG_FEATURE_CHAT_SEND_ESCAPES
101 bool "Support weird SEND escapes"
102 depends on BUSYBOX_CONFIG_CHAT
103 default BUSYBOX_DEFAULT_FEATURE_CHAT_SEND_ESCAPES
104 help
105 Original chat uses some escape sequences in SEND arguments which
106 are not sent to device but rather performs special actions.
107 E.g. "\K" means to send a break sequence to device.
108 "\d" delays execution for a second, "\p" -- for a 1/100 of second.
109 Before turning this option on think twice: do you really need them?
110
111 config BUSYBOX_CONFIG_FEATURE_CHAT_VAR_ABORT_LEN
112 bool "Support variable-length ABORT conditions"
113 depends on BUSYBOX_CONFIG_CHAT
114 default BUSYBOX_DEFAULT_FEATURE_CHAT_VAR_ABORT_LEN
115 help
116 Original chat uses fixed 50-bytes length ABORT conditions. Say N here.
117
118 config BUSYBOX_CONFIG_FEATURE_CHAT_CLR_ABORT
119 bool "Support revoking of ABORT conditions"
120 depends on BUSYBOX_CONFIG_CHAT
121 default BUSYBOX_DEFAULT_FEATURE_CHAT_CLR_ABORT
122 help
123 Support CLR_ABORT directive.
124 config BUSYBOX_CONFIG_CHRT
125 bool "chrt"
126 default BUSYBOX_DEFAULT_CHRT
127 help
128 manipulate real-time attributes of a process.
129 This requires sched_{g,s}etparam support in your libc.
130 config BUSYBOX_CONFIG_CONSPY
131 bool "conspy"
132 default BUSYBOX_DEFAULT_CONSPY
133 select BUSYBOX_CONFIG_PLATFORM_LINUX
134 help
135 A text-mode VNC like program for Linux virtual terminals.
136 example: conspy NUM shared access to console num
137 or conspy -nd NUM screenshot of console num
138 or conspy -cs NUM poor man's GNU screen like
139 config BUSYBOX_CONFIG_CROND
140 bool "crond"
141 default BUSYBOX_DEFAULT_CROND
142 select BUSYBOX_CONFIG_FEATURE_SYSLOG
143 help
144 Crond is a background daemon that parses individual crontab
145 files and executes commands on behalf of the users in question.
146 This is a port of dcron from slackware. It uses files of the
147 format /var/spool/cron/crontabs/<username> files, for example:
148 $ cat /var/spool/cron/crontabs/root
149 # Run daily cron jobs at 4:40 every day:
150 40 4 * * * /etc/cron/daily > /dev/null 2>&1
151
152 config BUSYBOX_CONFIG_FEATURE_CROND_D
153 bool "Support option -d to redirect output to stderr"
154 depends on BUSYBOX_CONFIG_CROND
155 default BUSYBOX_DEFAULT_FEATURE_CROND_D
156 help
157 -d N sets loglevel (0:most verbose) and directs all output to stderr.
158
159 config BUSYBOX_CONFIG_FEATURE_CROND_CALL_SENDMAIL
160 bool "Report command output via email (using sendmail)"
161 default BUSYBOX_DEFAULT_FEATURE_CROND_CALL_SENDMAIL
162 depends on BUSYBOX_CONFIG_CROND
163 help
164 Command output will be sent to corresponding user via email.
165
166 config BUSYBOX_CONFIG_FEATURE_CROND_DIR
167 string "crond spool directory"
168 default BUSYBOX_DEFAULT_FEATURE_CROND_DIR
169 depends on BUSYBOX_CONFIG_CROND || BUSYBOX_CONFIG_CRONTAB
170 help
171 Location of crond spool.
172 config BUSYBOX_CONFIG_CRONTAB
173 bool "crontab"
174 default BUSYBOX_DEFAULT_CRONTAB
175 help
176 Crontab manipulates the crontab for a particular user. Only
177 the superuser may specify a different user and/or crontab directory.
178 Note that Busybox binary must be setuid root for this applet to
179 work properly.
180 config BUSYBOX_CONFIG_DC
181 bool "dc"
182 default BUSYBOX_DEFAULT_DC
183 help
184 Dc is a reverse-polish desk calculator which supports unlimited
185 precision arithmetic.
186
187 config BUSYBOX_CONFIG_FEATURE_DC_LIBM
188 bool "Enable power and exp functions (requires libm)"
189 default BUSYBOX_DEFAULT_FEATURE_DC_LIBM
190 depends on BUSYBOX_CONFIG_DC
191 help
192 Enable power and exp functions.
193 NOTE: This will require libm to be present for linking.
194 config BUSYBOX_CONFIG_DEVFSD
195 bool "devfsd (obsolete)"
196 default BUSYBOX_DEFAULT_DEVFSD
197 select BUSYBOX_CONFIG_PLATFORM_LINUX
198 select BUSYBOX_CONFIG_FEATURE_SYSLOG
199 help
200 This is deprecated and should NOT be used anymore.
201 Use linux >= 2.6 (optionally with hotplug) and mdev instead!
202 See docs/mdev.txt for detailed instructions on how to use mdev
203 instead.
204
205 Provides compatibility with old device names on a devfs systems.
206 You should set it to true if you have devfs enabled.
207 The following keywords in devsfd.conf are supported:
208 "CLEAR_CONFIG", "INCLUDE", "OPTIONAL_INCLUDE", "RESTORE",
209 "PERMISSIONS", "EXECUTE", "COPY", "IGNORE",
210 "MKOLDCOMPAT", "MKNEWCOMPAT","RMOLDCOMPAT", "RMNEWCOMPAT".
211
212 But only if they are written UPPERCASE!!!!!!!!
213
214 config BUSYBOX_CONFIG_DEVFSD_MODLOAD
215 bool "Adds support for MODLOAD keyword in devsfd.conf"
216 default BUSYBOX_DEFAULT_DEVFSD_MODLOAD
217 depends on BUSYBOX_CONFIG_DEVFSD
218 help
219 This actually doesn't work with busybox modutils but needs
220 the external modutils.
221
222 config BUSYBOX_CONFIG_DEVFSD_FG_NP
223 bool "Enables the -fg and -np options"
224 default BUSYBOX_DEFAULT_DEVFSD_FG_NP
225 depends on BUSYBOX_CONFIG_DEVFSD
226 help
227 -fg Run the daemon in the foreground.
228 -np Exit after parsing the configuration file.
229 Do not poll for events.
230
231 config BUSYBOX_CONFIG_DEVFSD_VERBOSE
232 bool "Increases logging (and size)"
233 default BUSYBOX_DEFAULT_DEVFSD_VERBOSE
234 depends on BUSYBOX_CONFIG_DEVFSD
235 help
236 Increases logging to stderr or syslog.
237
238 config BUSYBOX_CONFIG_FEATURE_DEVFS
239 bool "Use devfs names for all devices (obsolete)"
240 default BUSYBOX_DEFAULT_FEATURE_DEVFS
241 select BUSYBOX_CONFIG_PLATFORM_LINUX
242 help
243 This is obsolete and should NOT be used anymore.
244 Use linux >= 2.6 (optionally with hotplug) and mdev instead!
245
246 For legacy systems -- if there is no way around devfsd -- this
247 tells busybox to look for names like /dev/loop/0 instead of
248 /dev/loop0. If your /dev directory has normal names instead of
249 devfs names, you don't want this.
250 config BUSYBOX_CONFIG_DEVMEM
251 bool "devmem"
252 default BUSYBOX_DEFAULT_DEVMEM
253 help
254 devmem is a small program that reads and writes from physical
255 memory using /dev/mem.
256 config BUSYBOX_CONFIG_EJECT
257 bool "eject"
258 default BUSYBOX_DEFAULT_EJECT
259 select BUSYBOX_CONFIG_PLATFORM_LINUX
260 help
261 Used to eject cdroms. (defaults to /dev/cdrom)
262
263 config BUSYBOX_CONFIG_FEATURE_EJECT_SCSI
264 bool "SCSI support"
265 default BUSYBOX_DEFAULT_FEATURE_EJECT_SCSI
266 depends on BUSYBOX_CONFIG_EJECT
267 help
268 Add the -s option to eject, this allows to eject SCSI-Devices and
269 usb-storage devices.
270 config BUSYBOX_CONFIG_FBSPLASH
271 bool "fbsplash"
272 default BUSYBOX_DEFAULT_FBSPLASH
273 select BUSYBOX_CONFIG_PLATFORM_LINUX
274 help
275 Shows splash image and progress bar on framebuffer device.
276 Can be used during boot phase of an embedded device. ~2kb.
277 Usage:
278 - use kernel option 'vga=xxx' or otherwise enable fb device.
279 - put somewhere fbsplash.cfg file and an image in .ppm format.
280 - $ setsid fbsplash [params] &
281 -c: hide cursor
282 -d /dev/fbN: framebuffer device (if not /dev/fb0)
283 -s path_to_image_file (can be "-" for stdin)
284 -i path_to_cfg_file (can be "-" for stdin)
285 -f path_to_fifo (can be "-" for stdin)
286 - if you want to run it only in presence of kernel parameter:
287 grep -q "fbsplash=on" </proc/cmdline && setsid fbsplash [params] &
288 - commands for fifo:
289 "NN" (ASCII decimal number) - percentage to show on progress bar
290 "exit" - well you guessed it
291 config BUSYBOX_CONFIG_FLASH_ERASEALL
292 bool "flash_eraseall"
293 default BUSYBOX_DEFAULT_FLASH_ERASEALL # doesn't build on Ubuntu 8.04
294 help
295 The flash_eraseall binary from mtd-utils as of git head c4c6a59eb.
296 This utility is used to erase the whole MTD device.
297 config BUSYBOX_CONFIG_FLASH_LOCK
298 bool "flash_lock"
299 default BUSYBOX_DEFAULT_FLASH_LOCK # doesn't build on Ubuntu 8.04
300 help
301 The flash_lock binary from mtd-utils as of git head 5ec0c10d0. This
302 utility locks part or all of the flash device.
303
304 config BUSYBOX_CONFIG_FLASH_UNLOCK
305 bool "flash_unlock"
306 default BUSYBOX_DEFAULT_FLASH_UNLOCK # doesn't build on Ubuntu 8.04
307 help
308 The flash_unlock binary from mtd-utils as of git head 5ec0c10d0. This
309 utility unlocks part or all of the flash device.
310 config BUSYBOX_CONFIG_FLASHCP
311 bool "flashcp"
312 default BUSYBOX_DEFAULT_FLASHCP # doesn't build on Ubuntu 8.04
313 help
314 The flashcp binary, inspired by mtd-utils as of git head 5eceb74f7.
315 This utility is used to copy images into a MTD device.
316 config BUSYBOX_CONFIG_HDPARM
317 bool "hdparm"
318 default BUSYBOX_DEFAULT_HDPARM
319 select BUSYBOX_CONFIG_PLATFORM_LINUX
320 help
321 Get/Set hard drive parameters. Primarily intended for ATA
322 drives. Adds about 13k (or around 30k if you enable the
323 FEATURE_HDPARM_GET_IDENTITY option)....
324
325 config BUSYBOX_CONFIG_FEATURE_HDPARM_GET_IDENTITY
326 bool "Support obtaining detailed information directly from drives"
327 default BUSYBOX_DEFAULT_FEATURE_HDPARM_GET_IDENTITY
328 depends on BUSYBOX_CONFIG_HDPARM
329 help
330 Enables the -I and -i options to obtain detailed information
331 directly from drives about their capabilities and supported ATA
332 feature set. If no device name is specified, hdparm will read
333 identify data from stdin. Enabling this option will add about 16k...
334
335 config BUSYBOX_CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF
336 bool "Register an IDE interface (DANGEROUS)"
337 default BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_SCAN_HWIF
338 depends on BUSYBOX_CONFIG_HDPARM
339 help
340 Enables the 'hdparm -R' option to register an IDE interface.
341 This is dangerous stuff, so you should probably say N.
342
343 config BUSYBOX_CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
344 bool "Un-register an IDE interface (DANGEROUS)"
345 default BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
346 depends on BUSYBOX_CONFIG_HDPARM
347 help
348 Enables the 'hdparm -U' option to un-register an IDE interface.
349 This is dangerous stuff, so you should probably say N.
350
351 config BUSYBOX_CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET
352 bool "Perform device reset (DANGEROUS)"
353 default BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_DRIVE_RESET
354 depends on BUSYBOX_CONFIG_HDPARM
355 help
356 Enables the 'hdparm -w' option to perform a device reset.
357 This is dangerous stuff, so you should probably say N.
358
359 config BUSYBOX_CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
360 bool "Tristate device for hotswap (DANGEROUS)"
361 default BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
362 depends on BUSYBOX_CONFIG_HDPARM
363 help
364 Enables the 'hdparm -x' option to tristate device for hotswap,
365 and the '-b' option to get/set bus state. This is dangerous
366 stuff, so you should probably say N.
367
368 config BUSYBOX_CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA
369 bool "Get/set using_dma flag"
370 default BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_GETSET_DMA
371 depends on BUSYBOX_CONFIG_HDPARM
372 help
373 Enables the 'hdparm -d' option to get/set using_dma flag.
374 config BUSYBOX_CONFIG_I2CGET
375 bool "i2cget"
376 default BUSYBOX_DEFAULT_I2CGET
377 select BUSYBOX_CONFIG_PLATFORM_LINUX
378 help
379 Read from I2C/SMBus chip registers.
380
381 config BUSYBOX_CONFIG_I2CSET
382 bool "i2cset"
383 default BUSYBOX_DEFAULT_I2CSET
384 select BUSYBOX_CONFIG_PLATFORM_LINUX
385 help
386 Set I2C registers.
387
388 config BUSYBOX_CONFIG_I2CDUMP
389 bool "i2cdump"
390 default BUSYBOX_DEFAULT_I2CDUMP
391 select BUSYBOX_CONFIG_PLATFORM_LINUX
392 help
393 Examine I2C registers.
394
395 config BUSYBOX_CONFIG_I2CDETECT
396 bool "i2cdetect"
397 default BUSYBOX_DEFAULT_I2CDETECT
398 select BUSYBOX_CONFIG_PLATFORM_LINUX
399 help
400 Detect I2C chips.
401
402 config BUSYBOX_CONFIG_INOTIFYD
403 bool "inotifyd"
404 default BUSYBOX_DEFAULT_INOTIFYD # doesn't build on Knoppix 5
405 help
406 Simple inotify daemon. Reports filesystem changes. Requires
407 kernel >= 2.6.13
408 config BUSYBOX_CONFIG_IONICE
409 bool "ionice"
410 default BUSYBOX_DEFAULT_IONICE
411 select BUSYBOX_CONFIG_PLATFORM_LINUX
412 help
413 Set/set program io scheduling class and priority
414 Requires kernel >= 2.6.13
415 config BUSYBOX_CONFIG_LAST
416 bool "last"
417 default BUSYBOX_DEFAULT_LAST
418 depends on BUSYBOX_CONFIG_FEATURE_WTMP
419 help
420 'last' displays a list of the last users that logged into the system.
421
422 config BUSYBOX_CONFIG_FEATURE_LAST_FANCY
423 bool "Turn on output of extra information"
424 default BUSYBOX_DEFAULT_FEATURE_LAST_FANCY
425 depends on BUSYBOX_CONFIG_LAST
426 help
427 'last' displays detailed information about the last users that
428 logged into the system (mimics sysvinit last). +900 bytes.
429 config BUSYBOX_CONFIG_LESS
430 bool "less"
431 default BUSYBOX_DEFAULT_LESS
432 help
433 'less' is a pager, meaning that it displays text files. It possesses
434 a wide array of features, and is an improvement over 'more'.
435
436 config BUSYBOX_CONFIG_FEATURE_LESS_MAXLINES
437 int "Max number of input lines less will try to eat"
438 default BUSYBOX_DEFAULT_FEATURE_LESS_MAXLINES
439 depends on BUSYBOX_CONFIG_LESS
440
441 config BUSYBOX_CONFIG_FEATURE_LESS_BRACKETS
442 bool "Enable bracket searching"
443 default BUSYBOX_DEFAULT_FEATURE_LESS_BRACKETS
444 depends on BUSYBOX_CONFIG_LESS
445 help
446 This option adds the capability to search for matching left and right
447 brackets, facilitating programming.
448
449 config BUSYBOX_CONFIG_FEATURE_LESS_FLAGS
450 bool "Enable -m/-M"
451 default BUSYBOX_DEFAULT_FEATURE_LESS_FLAGS
452 depends on BUSYBOX_CONFIG_LESS
453 help
454 The -M/-m flag enables a more sophisticated status line.
455
456 config BUSYBOX_CONFIG_FEATURE_LESS_TRUNCATE
457 bool "Enable -S"
458 default BUSYBOX_DEFAULT_FEATURE_LESS_TRUNCATE
459 depends on BUSYBOX_CONFIG_LESS
460 help
461 The -S flag causes long lines to be truncated rather than
462 wrapped.
463
464 config BUSYBOX_CONFIG_FEATURE_LESS_MARKS
465 bool "Enable marks"
466 default BUSYBOX_DEFAULT_FEATURE_LESS_MARKS
467 depends on BUSYBOX_CONFIG_LESS
468 help
469 Marks enable positions in a file to be stored for easy reference.
470
471 config BUSYBOX_CONFIG_FEATURE_LESS_REGEXP
472 bool "Enable regular expressions"
473 default BUSYBOX_DEFAULT_FEATURE_LESS_REGEXP
474 depends on BUSYBOX_CONFIG_LESS
475 help
476 Enable regular expressions, allowing complex file searches.
477
478 config BUSYBOX_CONFIG_FEATURE_LESS_WINCH
479 bool "Enable automatic resizing on window size changes"
480 default BUSYBOX_DEFAULT_FEATURE_LESS_WINCH
481 depends on BUSYBOX_CONFIG_LESS
482 help
483 Makes less track window size changes.
484
485 config BUSYBOX_CONFIG_FEATURE_LESS_ASK_TERMINAL
486 bool "Use 'tell me cursor position' ESC sequence to measure window"
487 default BUSYBOX_DEFAULT_FEATURE_LESS_ASK_TERMINAL
488 depends on BUSYBOX_CONFIG_FEATURE_LESS_WINCH
489 help
490 Makes less track window size changes.
491 If terminal size can't be retrieved and $LINES/$COLUMNS are not set,
492 this option makes less perform a last-ditch effort to find it:
493 position cursor to 999,999 and ask terminal to report real
494 cursor position using "ESC [ 6 n" escape sequence, then read stdin.
495
496 This is not clean but helps a lot on serial lines and such.
497
498 config BUSYBOX_CONFIG_FEATURE_LESS_DASHCMD
499 bool "Enable flag changes ('-' command)"
500 default BUSYBOX_DEFAULT_FEATURE_LESS_DASHCMD
501 depends on BUSYBOX_CONFIG_LESS
502 help
503 This enables the ability to change command-line flags within
504 less itself ('-' keyboard command).
505
506 config BUSYBOX_CONFIG_FEATURE_LESS_LINENUMS
507 bool "Enable dynamic switching of line numbers"
508 default BUSYBOX_DEFAULT_FEATURE_LESS_LINENUMS
509 depends on BUSYBOX_CONFIG_FEATURE_LESS_DASHCMD
510 help
511 Enables "-N" command.
512 config BUSYBOX_CONFIG_LOCK
513 bool "lock"
514 default BUSYBOX_DEFAULT_LOCK
515 help
516 Small utility for using locks in scripts
517 config BUSYBOX_CONFIG_MAKEDEVS
518 bool "makedevs"
519 default BUSYBOX_DEFAULT_MAKEDEVS
520 help
521 'makedevs' is a utility used to create a batch of devices with
522 one command.
523
524 There are two choices for command line behaviour, the interface
525 as used by LEAF/Linux Router Project, or a device table file.
526
527 'leaf' is traditionally what busybox follows, it allows multiple
528 devices of a particluar type to be created per command.
529 e.g. /dev/hda[0-9]
530 Device properties are passed as command line arguments.
531
532 'table' reads device properties from a file or stdin, allowing
533 a batch of unrelated devices to be made with one command.
534 User/group names are allowed as an alternative to uid/gid.
535
536 choice
537 prompt "Choose makedevs behaviour"
538 depends on BUSYBOX_CONFIG_MAKEDEVS
539 default BUSYBOX_CONFIG_FEATURE_MAKEDEVS_TABLE
540
541 config BUSYBOX_CONFIG_FEATURE_MAKEDEVS_LEAF
542 bool "leaf"
543
544 config BUSYBOX_CONFIG_FEATURE_MAKEDEVS_TABLE
545 bool "table"
546
547 endchoice
548 config BUSYBOX_CONFIG_MAN
549 bool "man"
550 default BUSYBOX_DEFAULT_MAN
551 help
552 Format and display manual pages.
553 config BUSYBOX_CONFIG_MICROCOM
554 bool "microcom"
555 default BUSYBOX_DEFAULT_MICROCOM
556 help
557 The poor man's minicom utility for chatting with serial port devices.
558 config BUSYBOX_CONFIG_MOUNTPOINT
559 bool "mountpoint"
560 default BUSYBOX_DEFAULT_MOUNTPOINT
561 help
562 mountpoint checks if the directory is a mountpoint.
563 config BUSYBOX_CONFIG_MT
564 bool "mt"
565 default BUSYBOX_DEFAULT_MT
566 help
567 mt is used to control tape devices. You can use the mt utility
568 to advance or rewind a tape past a specified number of archive
569 files on the tape.
570 config BUSYBOX_CONFIG_NANDWRITE
571 bool "nandwrite"
572 default BUSYBOX_DEFAULT_NANDWRITE
573 select BUSYBOX_CONFIG_PLATFORM_LINUX
574 help
575 Write to the specified MTD device, with bad blocks awareness
576
577 config BUSYBOX_CONFIG_NANDDUMP
578 bool "nanddump"
579 default BUSYBOX_DEFAULT_NANDDUMP
580 select BUSYBOX_CONFIG_PLATFORM_LINUX
581 help
582 Dump the content of raw NAND chip
583 config BUSYBOX_CONFIG_RAIDAUTORUN
584 bool "raidautorun"
585 default BUSYBOX_DEFAULT_RAIDAUTORUN
586 select BUSYBOX_CONFIG_PLATFORM_LINUX
587 help
588 raidautorun tells the kernel md driver to
589 search and start RAID arrays.
590 config BUSYBOX_CONFIG_READAHEAD
591 bool "readahead"
592 default BUSYBOX_DEFAULT_READAHEAD
593 depends on BUSYBOX_CONFIG_LFS
594 select BUSYBOX_CONFIG_PLATFORM_LINUX
595 help
596 Preload the files listed on the command line into RAM cache so that
597 subsequent reads on these files will not block on disk I/O.
598
599 This applet just calls the readahead(2) system call on each file.
600 It is mainly useful in system startup scripts to preload files
601 or executables before they are used. When used at the right time
602 (in particular when a CPU bound process is running) it can
603 significantly speed up system startup.
604
605 As readahead(2) blocks until each file has been read, it is best to
606 run this applet as a background job.
607 config BUSYBOX_CONFIG_RFKILL
608 bool "rfkill"
609 default BUSYBOX_DEFAULT_RFKILL # doesn't build on Ubuntu 9.04
610 select BUSYBOX_CONFIG_PLATFORM_LINUX
611 help
612 Enable/disable wireless devices.
613
614 rfkill list : list all wireless devices
615 rfkill list bluetooth : list all bluetooth devices
616 rfkill list 1 : list device corresponding to the given index
617 rfkill block|unblock wlan : block/unblock all wlan(wifi) devices
618
619 config BUSYBOX_CONFIG_RUNLEVEL
620 bool "runlevel"
621 default BUSYBOX_DEFAULT_RUNLEVEL
622 depends on BUSYBOX_CONFIG_FEATURE_UTMP
623 help
624 find the current and previous system runlevel.
625
626 This applet uses utmp but does not rely on busybox supporing
627 utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc.
628 config BUSYBOX_CONFIG_RX
629 bool "rx"
630 default BUSYBOX_DEFAULT_RX
631 select BUSYBOX_CONFIG_PLATFORM_LINUX
632 help
633 Receive files using the Xmodem protocol.
634 config BUSYBOX_CONFIG_SETSERIAL
635 bool "setserial"
636 default BUSYBOX_DEFAULT_SETSERIAL
637 select BUSYBOX_CONFIG_PLATFORM_LINUX
638 help
639 Retrieve or set Linux serial port.
640 config BUSYBOX_CONFIG_SETSID
641 bool "setsid"
642 default BUSYBOX_DEFAULT_SETSID
643 help
644 setsid runs a program in a new session
645 config BUSYBOX_CONFIG_STRINGS
646 bool "strings"
647 default BUSYBOX_DEFAULT_STRINGS
648 help
649 strings prints the printable character sequences for each file
650 specified.
651 config BUSYBOX_CONFIG_TASKSET
652 bool "taskset"
653 default BUSYBOX_DEFAULT_TASKSET # doesn't build on some non-x86 targets (m68k)
654 help
655 Retrieve or set a processes's CPU affinity.
656 This requires sched_{g,s}etaffinity support in your libc.
657
658 config BUSYBOX_CONFIG_FEATURE_TASKSET_FANCY
659 bool "Fancy output"
660 default BUSYBOX_DEFAULT_FEATURE_TASKSET_FANCY
661 depends on BUSYBOX_CONFIG_TASKSET
662 help
663 Add code for fancy output. This merely silences a compiler-warning
664 and adds about 135 Bytes. May be needed for machines with alot
665 of CPUs.
666 config BUSYBOX_CONFIG_TIME
667 bool "time"
668 default BUSYBOX_DEFAULT_TIME
669 help
670 The time command runs the specified program with the given arguments.
671 When the command finishes, time writes a message to standard output
672 giving timing statistics about this program run.
673 config BUSYBOX_CONFIG_TIMEOUT
674 bool "timeout"
675 default BUSYBOX_DEFAULT_TIMEOUT
676 help
677 Runs a program and watches it. If it does not terminate in
678 specified number of seconds, it is sent a signal.
679 config BUSYBOX_CONFIG_TTYSIZE
680 bool "ttysize"
681 default BUSYBOX_DEFAULT_TTYSIZE
682 help
683 A replacement for "stty size". Unlike stty, can report only width,
684 only height, or both, in any order. It also does not complain on
685 error, but returns default 80x24.
686 Usage in shell scripts: width=`ttysize w`.
687 config BUSYBOX_CONFIG_UBIATTACH
688 bool "ubiattach"
689 default BUSYBOX_DEFAULT_UBIATTACH
690 select BUSYBOX_CONFIG_PLATFORM_LINUX
691 help
692 Attach MTD device to an UBI device.
693
694 config BUSYBOX_CONFIG_UBIDETACH
695 bool "ubidetach"
696 default BUSYBOX_DEFAULT_UBIDETACH
697 select BUSYBOX_CONFIG_PLATFORM_LINUX
698 help
699 Detach MTD device from an UBI device.
700
701 config BUSYBOX_CONFIG_UBIMKVOL
702 bool "ubimkvol"
703 default BUSYBOX_DEFAULT_UBIMKVOL
704 select BUSYBOX_CONFIG_PLATFORM_LINUX
705 help
706 Create a UBI volume.
707
708 config BUSYBOX_CONFIG_UBIRMVOL
709 bool "ubirmvol"
710 default BUSYBOX_DEFAULT_UBIRMVOL
711 select BUSYBOX_CONFIG_PLATFORM_LINUX
712 help
713 Delete a UBI volume.
714
715 config BUSYBOX_CONFIG_UBIRSVOL
716 bool "ubirsvol"
717 default BUSYBOX_DEFAULT_UBIRSVOL
718 select BUSYBOX_CONFIG_PLATFORM_LINUX
719 help
720 Resize a UBI volume.
721
722 config BUSYBOX_CONFIG_UBIUPDATEVOL
723 bool "ubiupdatevol"
724 default BUSYBOX_DEFAULT_UBIUPDATEVOL
725 select BUSYBOX_CONFIG_PLATFORM_LINUX
726 help
727 Update a UBI volume.
728 config BUSYBOX_CONFIG_UBIRENAME
729 bool "ubirename"
730 default BUSYBOX_DEFAULT_UBIRENAME
731 select BUSYBOX_CONFIG_PLATFORM_LINUX
732 help
733 Utility to rename UBI volumes
734 config BUSYBOX_CONFIG_VOLNAME
735 bool "volname"
736 default BUSYBOX_DEFAULT_VOLNAME
737 help
738 Prints a CD-ROM volume name.
739 config BUSYBOX_CONFIG_WALL
740 bool "wall"
741 default BUSYBOX_DEFAULT_WALL
742 depends on BUSYBOX_CONFIG_FEATURE_UTMP
743 help
744 Write a message to all users that are logged in.
745 config BUSYBOX_CONFIG_WATCHDOG
746 bool "watchdog"
747 default BUSYBOX_DEFAULT_WATCHDOG
748 select BUSYBOX_CONFIG_PLATFORM_LINUX
749 help
750 The watchdog utility is used with hardware or software watchdog
751 device drivers. It opens the specified watchdog device special file
752 and periodically writes a magic character to the device. If the
753 watchdog applet ever fails to write the magic character within a
754 certain amount of time, the watchdog device assumes the system has
755 hung, and will cause the hardware to reboot.
756
757 endmenu