Config.in 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Miscellaneous Utilities"
  6. config BUSYBOX_CONFIG_CONSPY
  7. bool "conspy"
  8. default n
  9. help
  10. A text-mode VNC like program for Linux virtual terminals.
  11. example: conspy NUM shared access to console num
  12. or conspy -nd NUM screenshot of console num
  13. or conspy -cs NUM poor man's GNU screen like
  14. config BUSYBOX_CONFIG_UBIATTACH
  15. bool "ubiattach"
  16. default n
  17. help
  18. Attach MTD device to an UBI device.
  19. config BUSYBOX_CONFIG_UBIDETACH
  20. bool "ubidetach"
  21. default n
  22. help
  23. Detach MTD device from an UBI device.
  24. config BUSYBOX_CONFIG_ADJTIMEX
  25. bool "adjtimex"
  26. default n
  27. help
  28. Adjtimex reads and optionally sets adjustment parameters for
  29. the Linux clock adjustment algorithm.
  30. config BUSYBOX_CONFIG_BBCONFIG
  31. bool "bbconfig"
  32. default n
  33. help
  34. The bbconfig applet will print the config file with which
  35. busybox was built.
  36. config BUSYBOX_CONFIG_BEEP
  37. bool "beep"
  38. default n
  39. help
  40. The beep applets beeps in a given freq/Hz.
  41. config BUSYBOX_CONFIG_FEATURE_BEEP_FREQ
  42. int "default frequency"
  43. range 0 2147483647
  44. default 4000
  45. depends on BUSYBOX_CONFIG_BEEP
  46. help
  47. Frequency for default beep.
  48. config BUSYBOX_CONFIG_FEATURE_BEEP_LENGTH_MS
  49. int "default length"
  50. range 0 2147483647
  51. default 30
  52. depends on BUSYBOX_CONFIG_BEEP
  53. help
  54. Length in ms for default beep.
  55. config BUSYBOX_CONFIG_CHAT
  56. bool "chat"
  57. default n
  58. help
  59. Simple chat utility.
  60. config BUSYBOX_CONFIG_FEATURE_CHAT_NOFAIL
  61. bool "Enable NOFAIL expect strings"
  62. depends on BUSYBOX_CONFIG_CHAT
  63. default n
  64. help
  65. When enabled expect strings which are started with a dash trigger
  66. no-fail mode. That is when expectation is not met within timeout
  67. the script is not terminated but sends next SEND string and waits
  68. for next EXPECT string. This allows to compose far more flexible
  69. scripts.
  70. config BUSYBOX_CONFIG_FEATURE_CHAT_TTY_HIFI
  71. bool "Force STDIN to be a TTY"
  72. depends on BUSYBOX_CONFIG_CHAT
  73. default n
  74. help
  75. Original chat always treats STDIN as a TTY device and sets for it
  76. so-called raw mode. This option turns on such behaviour.
  77. config BUSYBOX_CONFIG_FEATURE_CHAT_IMPLICIT_CR
  78. bool "Enable implicit Carriage Return"
  79. depends on BUSYBOX_CONFIG_CHAT
  80. default n
  81. help
  82. When enabled make chat to terminate all SEND strings with a "\r"
  83. unless "\c" is met anywhere in the string.
  84. config BUSYBOX_CONFIG_FEATURE_CHAT_SWALLOW_OPTS
  85. bool "Swallow options"
  86. depends on BUSYBOX_CONFIG_CHAT
  87. default n
  88. help
  89. Busybox chat require no options. To make it not fail when used
  90. in place of original chat (which has a bunch of options) turn
  91. this on.
  92. config BUSYBOX_CONFIG_FEATURE_CHAT_SEND_ESCAPES
  93. bool "Support weird SEND escapes"
  94. depends on BUSYBOX_CONFIG_CHAT
  95. default n
  96. help
  97. Original chat uses some escape sequences in SEND arguments which
  98. are not sent to device but rather performs special actions.
  99. E.g. "\K" means to send a break sequence to device.
  100. "\d" delays execution for a second, "\p" -- for a 1/100 of second.
  101. Before turning this option on think twice: do you really need them?
  102. config BUSYBOX_CONFIG_FEATURE_CHAT_VAR_ABORT_LEN
  103. bool "Support variable-length ABORT conditions"
  104. depends on BUSYBOX_CONFIG_CHAT
  105. default n
  106. help
  107. Original chat uses fixed 50-bytes length ABORT conditions. Say N here.
  108. config BUSYBOX_CONFIG_FEATURE_CHAT_CLR_ABORT
  109. bool "Support revoking of ABORT conditions"
  110. depends on BUSYBOX_CONFIG_CHAT
  111. default n
  112. help
  113. Support CLR_ABORT directive.
  114. config BUSYBOX_CONFIG_CHRT
  115. bool "chrt"
  116. default n
  117. help
  118. manipulate real-time attributes of a process.
  119. This requires sched_{g,s}etparam support in your libc.
  120. config BUSYBOX_CONFIG_CROND
  121. bool "crond"
  122. default y
  123. select BUSYBOX_CONFIG_FEATURE_SUID
  124. select BUSYBOX_CONFIG_FEATURE_SYSLOG
  125. help
  126. Crond is a background daemon that parses individual crontab
  127. files and executes commands on behalf of the users in question.
  128. This is a port of dcron from slackware. It uses files of the
  129. format /var/spool/cron/crontabs/<username> files, for example:
  130. $ cat /var/spool/cron/crontabs/root
  131. # Run daily cron jobs at 4:40 every day:
  132. 40 4 * * * /etc/cron/daily > /dev/null 2>&1
  133. config BUSYBOX_CONFIG_FEATURE_CROND_D
  134. bool "Support option -d to redirect output to stderr"
  135. depends on BUSYBOX_CONFIG_CROND
  136. default n
  137. help
  138. -d sets loglevel to 0 (most verbose) and directs all output to stderr.
  139. config BUSYBOX_CONFIG_FEATURE_CROND_CALL_SENDMAIL
  140. bool "Report command output via email (using sendmail)"
  141. default n
  142. depends on BUSYBOX_CONFIG_CROND
  143. help
  144. Command output will be sent to corresponding user via email.
  145. config BUSYBOX_CONFIG_FEATURE_CROND_DIR
  146. string "crond spool directory"
  147. default "/var/spool/cron"
  148. depends on BUSYBOX_CONFIG_CROND || BUSYBOX_CONFIG_CRONTAB
  149. help
  150. Location of crond spool.
  151. config BUSYBOX_CONFIG_CRONTAB
  152. bool "crontab"
  153. default y
  154. select BUSYBOX_CONFIG_FEATURE_SUID
  155. help
  156. Crontab manipulates the crontab for a particular user. Only
  157. the superuser may specify a different user and/or crontab directory.
  158. Note that Busybox binary must be setuid root for this applet to
  159. work properly.
  160. config BUSYBOX_CONFIG_DC
  161. bool "dc"
  162. default n
  163. help
  164. Dc is a reverse-polish desk calculator which supports unlimited
  165. precision arithmetic.
  166. config BUSYBOX_CONFIG_FEATURE_DC_LIBM
  167. bool "Enable power and exp functions (requires libm)"
  168. default n
  169. depends on BUSYBOX_CONFIG_DC
  170. help
  171. Enable power and exp functions.
  172. NOTE: This will require libm to be present for linking.
  173. config BUSYBOX_CONFIG_DEVFSD
  174. bool "devfsd (obsolete)"
  175. default n
  176. select BUSYBOX_CONFIG_FEATURE_SYSLOG
  177. help
  178. This is deprecated and should NOT be used anymore.
  179. Use linux >= 2.6 (optionally with hotplug) and mdev instead!
  180. See docs/mdev.txt for detailed instructions on how to use mdev
  181. instead.
  182. Provides compatibility with old device names on a devfs systems.
  183. You should set it to true if you have devfs enabled.
  184. The following keywords in devsfd.conf are supported:
  185. "CLEAR_CONFIG", "INCLUDE", "OPTIONAL_INCLUDE", "RESTORE",
  186. "PERMISSIONS", "EXECUTE", "COPY", "IGNORE",
  187. "MKOLDCOMPAT", "MKNEWCOMPAT","RMOLDCOMPAT", "RMNEWCOMPAT".
  188. But only if they are written UPPERCASE!!!!!!!!
  189. config BUSYBOX_CONFIG_DEVFSD_MODLOAD
  190. bool "Adds support for MODLOAD keyword in devsfd.conf"
  191. default n
  192. depends on BUSYBOX_CONFIG_DEVFSD
  193. help
  194. This actually doesn't work with busybox modutils but needs
  195. the external modutils.
  196. config BUSYBOX_CONFIG_DEVFSD_FG_NP
  197. bool "Enables the -fg and -np options"
  198. default n
  199. depends on BUSYBOX_CONFIG_DEVFSD
  200. help
  201. -fg Run the daemon in the foreground.
  202. -np Exit after parsing the configuration file.
  203. Do not poll for events.
  204. config BUSYBOX_CONFIG_DEVFSD_VERBOSE
  205. bool "Increases logging (and size)"
  206. default n
  207. depends on BUSYBOX_CONFIG_DEVFSD
  208. help
  209. Increases logging to stderr or syslog.
  210. config BUSYBOX_CONFIG_FEATURE_DEVFS
  211. bool "Use devfs names for all devices (obsolete)"
  212. default n
  213. help
  214. This is obsolete and should NOT be used anymore.
  215. Use linux >= 2.6 (optionally with hotplug) and mdev instead!
  216. For legacy systems -- if there is no way around devfsd -- this
  217. tells busybox to look for names like /dev/loop/0 instead of
  218. /dev/loop0. If your /dev directory has normal names instead of
  219. devfs names, you don't want this.
  220. config BUSYBOX_CONFIG_DEVMEM
  221. bool "devmem"
  222. default n
  223. help
  224. devmem is a small program that reads and writes from physical
  225. memory using /dev/mem.
  226. config BUSYBOX_CONFIG_EJECT
  227. bool "eject"
  228. default n
  229. help
  230. Used to eject cdroms. (defaults to /dev/cdrom)
  231. config BUSYBOX_CONFIG_FEATURE_EJECT_SCSI
  232. bool "SCSI support"
  233. default n
  234. depends on BUSYBOX_CONFIG_EJECT
  235. help
  236. Add the -s option to eject, this allows to eject SCSI-Devices and
  237. usb-storage devices.
  238. config BUSYBOX_CONFIG_FBSPLASH
  239. bool "fbsplash"
  240. default n
  241. help
  242. Shows splash image and progress bar on framebuffer device.
  243. Can be used during boot phase of an embedded device. ~2kb.
  244. Usage:
  245. - use kernel option 'vga=xxx' or otherwise enable fb device.
  246. - put somewhere fbsplash.cfg file and an image in .ppm format.
  247. - $ setsid fbsplash [params] &
  248. -c: hide cursor
  249. -d /dev/fbN: framebuffer device (if not /dev/fb0)
  250. -s path_to_image_file (can be "-" for stdin)
  251. -i path_to_cfg_file (can be "-" for stdin)
  252. -f path_to_fifo (can be "-" for stdin)
  253. - if you want to run it only in presence of kernel parameter:
  254. grep -q "fbsplash=on" </proc/cmdline && setsid fbsplash [params] &
  255. - commands for fifo:
  256. "NN" (ASCII decimal number) - percentage to show on progress bar
  257. "exit" - well you guessed it
  258. config BUSYBOX_CONFIG_FLASHCP
  259. bool "flashcp"
  260. default n
  261. help
  262. The flashcp binary, inspired by mtd-utils as of git head 5eceb74f7.
  263. This utility is used to copy images into a MTD device.
  264. config BUSYBOX_CONFIG_FLASH_LOCK
  265. bool "flash_lock"
  266. default n
  267. help
  268. The flash_lock binary from mtd-utils as of git head 5ec0c10d0. This
  269. utility locks part or all of the flash device.
  270. config BUSYBOX_CONFIG_FLASH_UNLOCK
  271. bool "flash_unlock"
  272. default n
  273. help
  274. The flash_unlock binary from mtd-utils as of git head 5ec0c10d0. This
  275. utility unlocks part or all of the flash device.
  276. config BUSYBOX_CONFIG_FLASH_ERASEALL
  277. bool "flash_eraseall"
  278. default n
  279. help
  280. The flash_eraseall binary from mtd-utils as of git head c4c6a59eb.
  281. This utility is used to erase the whole MTD device.
  282. config BUSYBOX_CONFIG_IONICE
  283. bool "ionice"
  284. default n
  285. help
  286. Set/set program io scheduling class and priority
  287. Requires kernel >= 2.6.13
  288. config BUSYBOX_CONFIG_INOTIFYD
  289. bool "inotifyd"
  290. default n
  291. help
  292. Simple inotify daemon. Reports filesystem changes. Requires
  293. kernel >= 2.6.13
  294. config BUSYBOX_CONFIG_LAST
  295. bool "last"
  296. default n
  297. depends on BUSYBOX_CONFIG_FEATURE_WTMP
  298. help
  299. 'last' displays a list of the last users that logged into the system.
  300. choice
  301. prompt "Choose last implementation"
  302. depends on BUSYBOX_CONFIG_LAST
  303. default BUSYBOX_CONFIG_FEATURE_LAST_FANCY
  304. config BUSYBOX_CONFIG_FEATURE_LAST_SMALL
  305. bool "small"
  306. help
  307. This is a small version of last with just the basic set of
  308. features.
  309. config BUSYBOX_CONFIG_FEATURE_LAST_FANCY
  310. bool "huge"
  311. help
  312. 'last' displays detailed information about the last users that
  313. logged into the system (mimics sysvinit last). +900 bytes.
  314. endchoice
  315. config BUSYBOX_CONFIG_LESS
  316. bool "less"
  317. default y
  318. help
  319. 'less' is a pager, meaning that it displays text files. It possesses
  320. a wide array of features, and is an improvement over 'more'.
  321. config BUSYBOX_CONFIG_FEATURE_LESS_MAXLINES
  322. int "Max number of input lines less will try to eat"
  323. default 9999999
  324. depends on BUSYBOX_CONFIG_LESS
  325. config BUSYBOX_CONFIG_FEATURE_LESS_BRACKETS
  326. bool "Enable bracket searching"
  327. default n
  328. depends on BUSYBOX_CONFIG_LESS
  329. help
  330. This option adds the capability to search for matching left and right
  331. brackets, facilitating programming.
  332. config BUSYBOX_CONFIG_FEATURE_LESS_FLAGS
  333. bool "Enable extra flags"
  334. default n
  335. depends on BUSYBOX_CONFIG_LESS
  336. help
  337. The extra flags provided do the following:
  338. The -M flag enables a more sophisticated status line.
  339. The -m flag enables a simpler status line with a percentage.
  340. config BUSYBOX_CONFIG_FEATURE_LESS_MARKS
  341. bool "Enable marks"
  342. default n
  343. depends on BUSYBOX_CONFIG_LESS
  344. help
  345. Marks enable positions in a file to be stored for easy reference.
  346. config BUSYBOX_CONFIG_FEATURE_LESS_REGEXP
  347. bool "Enable regular expressions"
  348. default n
  349. depends on BUSYBOX_CONFIG_LESS
  350. help
  351. Enable regular expressions, allowing complex file searches.
  352. config BUSYBOX_CONFIG_FEATURE_LESS_WINCH
  353. bool "Enable automatic resizing on window size changes"
  354. default n
  355. depends on BUSYBOX_CONFIG_LESS
  356. help
  357. Makes less track window size changes.
  358. config BUSYBOX_CONFIG_FEATURE_LESS_DASHCMD
  359. bool "Enable flag changes ('-' command)"
  360. default n
  361. depends on BUSYBOX_CONFIG_LESS
  362. help
  363. This enables the ability to change command-line flags within
  364. less itself ('-' keyboard command).
  365. config BUSYBOX_CONFIG_FEATURE_LESS_LINENUMS
  366. bool "Enable dynamic switching of line numbers"
  367. default n
  368. depends on BUSYBOX_CONFIG_FEATURE_LESS_DASHCMD
  369. help
  370. Enable "-N" command.
  371. config BUSYBOX_CONFIG_HDPARM
  372. bool "hdparm"
  373. default n
  374. help
  375. Get/Set hard drive parameters. Primarily intended for ATA
  376. drives. Adds about 13k (or around 30k if you enable the
  377. FEATURE_HDPARM_GET_IDENTITY option)....
  378. config BUSYBOX_CONFIG_FEATURE_HDPARM_GET_IDENTITY
  379. bool "Support obtaining detailed information directly from drives"
  380. default n
  381. depends on BUSYBOX_CONFIG_HDPARM
  382. help
  383. Enables the -I and -i options to obtain detailed information
  384. directly from drives about their capabilities and supported ATA
  385. feature set. If no device name is specified, hdparm will read
  386. identify data from stdin. Enabling this option will add about 16k...
  387. config BUSYBOX_CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF
  388. bool "Register an IDE interface (DANGEROUS)"
  389. default n
  390. depends on BUSYBOX_CONFIG_HDPARM
  391. help
  392. Enables the 'hdparm -R' option to register an IDE interface.
  393. This is dangerous stuff, so you should probably say N.
  394. config BUSYBOX_CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
  395. bool "Un-register an IDE interface (DANGEROUS)"
  396. default n
  397. depends on BUSYBOX_CONFIG_HDPARM
  398. help
  399. Enables the 'hdparm -U' option to un-register an IDE interface.
  400. This is dangerous stuff, so you should probably say N.
  401. config BUSYBOX_CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET
  402. bool "Perform device reset (DANGEROUS)"
  403. default n
  404. depends on BUSYBOX_CONFIG_HDPARM
  405. help
  406. Enables the 'hdparm -w' option to perform a device reset.
  407. This is dangerous stuff, so you should probably say N.
  408. config BUSYBOX_CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
  409. bool "Tristate device for hotswap (DANGEROUS)"
  410. default n
  411. depends on BUSYBOX_CONFIG_HDPARM
  412. help
  413. Enables the 'hdparm -x' option to tristate device for hotswap,
  414. and the '-b' option to get/set bus state. This is dangerous
  415. stuff, so you should probably say N.
  416. config BUSYBOX_CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA
  417. bool "Get/set using_dma flag"
  418. default n
  419. depends on BUSYBOX_CONFIG_HDPARM
  420. help
  421. Enables the 'hdparm -d' option to get/set using_dma flag.
  422. config BUSYBOX_CONFIG_LOCK
  423. bool "lock"
  424. default y
  425. help
  426. Small utility for using locks in scripts
  427. config BUSYBOX_CONFIG_MAKEDEVS
  428. bool "makedevs"
  429. default n
  430. help
  431. 'makedevs' is a utility used to create a batch of devices with
  432. one command.
  433. .
  434. There are two choices for command line behaviour, the interface
  435. as used by LEAF/Linux Router Project, or a device table file.
  436. .
  437. 'leaf' is traditionally what busybox follows, it allows multiple
  438. devices of a particluar type to be created per command.
  439. e.g. /dev/hda[0-9]
  440. Device properties are passed as command line arguments.
  441. .
  442. 'table' reads device properties from a file or stdin, allowing
  443. a batch of unrelated devices to be made with one command.
  444. User/group names are allowed as an alternative to uid/gid.
  445. choice
  446. prompt "Choose makedevs behaviour"
  447. depends on BUSYBOX_CONFIG_MAKEDEVS
  448. default BUSYBOX_CONFIG_FEATURE_MAKEDEVS_TABLE
  449. config BUSYBOX_CONFIG_FEATURE_MAKEDEVS_LEAF
  450. bool "leaf"
  451. config BUSYBOX_CONFIG_FEATURE_MAKEDEVS_TABLE
  452. bool "table"
  453. endchoice
  454. config BUSYBOX_CONFIG_MAN
  455. bool "man"
  456. default n
  457. help
  458. Format and display manual pages.
  459. config BUSYBOX_CONFIG_MICROCOM
  460. bool "microcom"
  461. default n
  462. help
  463. The poor man's minicom utility for chatting with serial port devices.
  464. config BUSYBOX_CONFIG_MOUNTPOINT
  465. bool "mountpoint"
  466. default n
  467. help
  468. mountpoint checks if the directory is a mountpoint.
  469. config BUSYBOX_CONFIG_MT
  470. bool "mt"
  471. default n
  472. help
  473. mt is used to control tape devices. You can use the mt utility
  474. to advance or rewind a tape past a specified number of archive
  475. files on the tape.
  476. config BUSYBOX_CONFIG_RAIDAUTORUN
  477. bool "raidautorun"
  478. default n
  479. help
  480. raidautorun tells the kernel md driver to
  481. search and start RAID arrays.
  482. config BUSYBOX_CONFIG_READAHEAD
  483. bool "readahead"
  484. default n
  485. depends on BUSYBOX_CONFIG_LFS
  486. help
  487. Preload the files listed on the command line into RAM cache so that
  488. subsequent reads on these files will not block on disk I/O.
  489. This applet just calls the readahead(2) system call on each file.
  490. It is mainly useful in system startup scripts to preload files
  491. or executables before they are used. When used at the right time
  492. (in particular when a CPU bound process is running) it can
  493. significantly speed up system startup.
  494. As readahead(2) blocks until each file has been read, it is best to
  495. run this applet as a background job.
  496. config BUSYBOX_CONFIG_RFKILL
  497. bool "rfkill"
  498. default n
  499. help
  500. Enable/disable wireless devices.
  501. rfkill list : list all wireless devices
  502. rfkill list bluetooth : list all bluetooth devices
  503. rfkill list 1 : list device corresponding to the given index
  504. rfkill block|unblock wlan : block/unblock all wlan(wifi) devices
  505. config BUSYBOX_CONFIG_RUNLEVEL
  506. bool "runlevel"
  507. default n
  508. help
  509. find the current and previous system runlevel.
  510. This applet uses utmp but does not rely on busybox supporing
  511. utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc.
  512. config BUSYBOX_CONFIG_RX
  513. bool "rx"
  514. default n
  515. help
  516. Receive files using the Xmodem protocol.
  517. config BUSYBOX_CONFIG_SETSID
  518. bool "setsid"
  519. default n
  520. help
  521. setsid runs a program in a new session
  522. config BUSYBOX_CONFIG_STRINGS
  523. bool "strings"
  524. default y
  525. help
  526. strings prints the printable character sequences for each file
  527. specified.
  528. config BUSYBOX_CONFIG_TASKSET
  529. bool "taskset"
  530. default n
  531. help
  532. Retrieve or set a processes's CPU affinity.
  533. This requires sched_{g,s}etaffinity support in your libc.
  534. config BUSYBOX_CONFIG_FEATURE_TASKSET_FANCY
  535. bool "Fancy output"
  536. default n
  537. depends on BUSYBOX_CONFIG_TASKSET
  538. help
  539. Add code for fancy output. This merely silences a compiler-warning
  540. and adds about 135 Bytes. May be needed for machines with alot
  541. of CPUs.
  542. config BUSYBOX_CONFIG_TIME
  543. bool "time"
  544. default y
  545. help
  546. The time command runs the specified program with the given arguments.
  547. When the command finishes, time writes a message to standard output
  548. giving timing statistics about this program run.
  549. config BUSYBOX_CONFIG_TIMEOUT
  550. bool "timeout"
  551. default n
  552. help
  553. Runs a program and watches it. If it does not terminate in
  554. specified number of seconds, it is sent a signal.
  555. config BUSYBOX_CONFIG_TTYSIZE
  556. bool "ttysize"
  557. default n
  558. help
  559. A replacement for "stty size". Unlike stty, can report only width,
  560. only height, or both, in any order. It also does not complain on
  561. error, but returns default 80x24.
  562. Usage in shell scripts: width=`ttysize w`.
  563. config BUSYBOX_CONFIG_VOLNAME
  564. bool "volname"
  565. default n
  566. help
  567. Prints a CD-ROM volume name.
  568. config BUSYBOX_CONFIG_WALL
  569. bool "wall"
  570. default n
  571. help
  572. Write a message to all users that are logged in.
  573. config BUSYBOX_CONFIG_WATCHDOG
  574. bool "watchdog"
  575. default y
  576. help
  577. The watchdog utility is used with hardware or software watchdog
  578. device drivers. It opens the specified watchdog device special file
  579. and periodically writes a magic character to the device. If the
  580. watchdog applet ever fails to write the magic character within a
  581. certain amount of time, the watchdog device assumes the system has
  582. hung, and will cause the hardware to reboot.
  583. endmenu