Config.in 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802
  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. menu "Miscellaneous Utilities"
  7. config BUSYBOX_CONSPY
  8. bool "conspy"
  9. default n
  10. select BUSYBOX_PLATFORM_LINUX
  11. help
  12. A text-mode VNC like program for Linux virtual terminals.
  13. example: conspy NUM shared access to console num
  14. or conspy -nd NUM screenshot of console num
  15. or conspy -cs NUM poor man's GNU screen like
  16. config BUSYBOX_I2CGET
  17. bool "i2cget"
  18. default n
  19. select BUSYBOX_PLATFORM_LINUX
  20. help
  21. Read from I2C/SMBus chip registers.
  22. config BUSYBOX_I2CSET
  23. bool "i2cset"
  24. default n
  25. select BUSYBOX_PLATFORM_LINUX
  26. help
  27. Set I2C registers.
  28. config BUSYBOX_I2CDUMP
  29. bool "i2cdump"
  30. default n
  31. select BUSYBOX_PLATFORM_LINUX
  32. help
  33. Examine I2C registers.
  34. config BUSYBOX_I2CDETECT
  35. bool "i2cdetect"
  36. default n
  37. select BUSYBOX_PLATFORM_LINUX
  38. help
  39. Detect I2C chips.
  40. config BUSYBOX_LESS
  41. bool "less"
  42. depends on !BUSYBOX_DISABLE_LESS
  43. default n
  44. help
  45. 'less' is a pager, meaning that it displays text files. It possesses
  46. a wide array of features, and is an improvement over 'more'.
  47. config BUSYBOX_FEATURE_LESS_MAXLINES
  48. int "Max number of input lines less will try to eat"
  49. default 9999999
  50. depends on BUSYBOX_LESS
  51. config BUSYBOX_FEATURE_LESS_BRACKETS
  52. bool "Enable bracket searching"
  53. default y
  54. depends on BUSYBOX_LESS
  55. help
  56. This option adds the capability to search for matching left and right
  57. brackets, facilitating programming.
  58. config BUSYBOX_FEATURE_LESS_FLAGS
  59. bool "Enable -m/-M"
  60. default y
  61. depends on BUSYBOX_LESS
  62. help
  63. The -M/-m flag enables a more sophisticated status line.
  64. config BUSYBOX_FEATURE_LESS_TRUNCATE
  65. bool "Enable -S"
  66. default y
  67. depends on BUSYBOX_LESS
  68. help
  69. The -S flag causes long lines to be truncated rather than
  70. wrapped.
  71. config BUSYBOX_FEATURE_LESS_MARKS
  72. bool "Enable marks"
  73. default y
  74. depends on BUSYBOX_LESS
  75. help
  76. Marks enable positions in a file to be stored for easy reference.
  77. config BUSYBOX_FEATURE_LESS_REGEXP
  78. bool "Enable regular expressions"
  79. default y
  80. depends on BUSYBOX_LESS
  81. help
  82. Enable regular expressions, allowing complex file searches.
  83. config BUSYBOX_FEATURE_LESS_WINCH
  84. bool "Enable automatic resizing on window size changes"
  85. default y
  86. depends on BUSYBOX_LESS
  87. help
  88. Makes less track window size changes.
  89. config BUSYBOX_FEATURE_LESS_ASK_TERMINAL
  90. bool "Use 'tell me cursor position' ESC sequence to measure window"
  91. default y
  92. depends on BUSYBOX_FEATURE_LESS_WINCH
  93. help
  94. Makes less track window size changes.
  95. If terminal size can't be retrieved and $LINES/$COLUMNS are not set,
  96. this option makes less perform a last-ditch effort to find it:
  97. position cursor to 999,999 and ask terminal to report real
  98. cursor position using "ESC [ 6 n" escape sequence, then read stdin.
  99. This is not clean but helps a lot on serial lines and such.
  100. config BUSYBOX_FEATURE_LESS_DASHCMD
  101. bool "Enable flag changes ('-' command)"
  102. default y
  103. depends on BUSYBOX_LESS
  104. help
  105. This enables the ability to change command-line flags within
  106. less itself ('-' keyboard command).
  107. config BUSYBOX_FEATURE_LESS_LINENUMS
  108. bool "Enable dynamic switching of line numbers"
  109. default y
  110. depends on BUSYBOX_FEATURE_LESS_DASHCMD
  111. help
  112. Enables "-N" command.
  113. config BUSYBOX_NANDWRITE
  114. bool "nandwrite"
  115. default n
  116. select BUSYBOX_PLATFORM_LINUX
  117. help
  118. Write to the specified MTD device, with bad blocks awareness
  119. config BUSYBOX_NANDDUMP
  120. bool "nanddump"
  121. default n
  122. select BUSYBOX_PLATFORM_LINUX
  123. help
  124. Dump the content of raw NAND chip
  125. config BUSYBOX_SETSERIAL
  126. bool "setserial"
  127. default n
  128. select BUSYBOX_PLATFORM_LINUX
  129. help
  130. Retrieve or set Linux serial port.
  131. config BUSYBOX_UBIATTACH
  132. bool "ubiattach"
  133. default n
  134. select BUSYBOX_PLATFORM_LINUX
  135. help
  136. Attach MTD device to an UBI device.
  137. config BUSYBOX_UBIDETACH
  138. bool "ubidetach"
  139. default n
  140. select BUSYBOX_PLATFORM_LINUX
  141. help
  142. Detach MTD device from an UBI device.
  143. config BUSYBOX_UBIMKVOL
  144. bool "ubimkvol"
  145. default n
  146. select BUSYBOX_PLATFORM_LINUX
  147. help
  148. Create a UBI volume.
  149. config BUSYBOX_UBIRMVOL
  150. bool "ubirmvol"
  151. default n
  152. select BUSYBOX_PLATFORM_LINUX
  153. help
  154. Delete a UBI volume.
  155. config BUSYBOX_UBIRSVOL
  156. bool "ubirsvol"
  157. default n
  158. select BUSYBOX_PLATFORM_LINUX
  159. help
  160. Resize a UBI volume.
  161. config BUSYBOX_UBIUPDATEVOL
  162. bool "ubiupdatevol"
  163. default n
  164. select BUSYBOX_PLATFORM_LINUX
  165. help
  166. Update a UBI volume.
  167. config BUSYBOX_ADJTIMEX
  168. bool "adjtimex"
  169. default n
  170. select BUSYBOX_PLATFORM_LINUX
  171. help
  172. Adjtimex reads and optionally sets adjustment parameters for
  173. the Linux clock adjustment algorithm.
  174. config BUSYBOX_BBCONFIG
  175. bool "bbconfig"
  176. default n
  177. help
  178. The bbconfig applet will print the config file with which
  179. busybox was built.
  180. config BUSYBOX_FEATURE_COMPRESS_BBCONFIG
  181. bool "Compress bbconfig data"
  182. default y
  183. depends on BUSYBOX_BBCONFIG
  184. help
  185. Store bbconfig data in compressed form, uncompress them on-the-fly
  186. before output.
  187. If you have a really tiny busybox with few applets enabled (and
  188. bunzip2 isn't one of them), the overhead of the decompressor might
  189. be noticeable. Also, if you run executables directly from ROM
  190. and have very little memory, this might not be a win. Otherwise,
  191. you probably want this.
  192. config BUSYBOX_BEEP
  193. bool "beep"
  194. default n
  195. select BUSYBOX_PLATFORM_LINUX
  196. help
  197. The beep applets beeps in a given freq/Hz.
  198. config BUSYBOX_FEATURE_BEEP_FREQ
  199. int "default frequency"
  200. range 0 2147483647
  201. default 4000
  202. depends on BUSYBOX_BEEP
  203. help
  204. Frequency for default beep.
  205. config BUSYBOX_FEATURE_BEEP_LENGTH_MS
  206. int "default length"
  207. range 0 2147483647
  208. default 30
  209. depends on BUSYBOX_BEEP
  210. help
  211. Length in ms for default beep.
  212. config BUSYBOX_CHAT
  213. bool "chat"
  214. default n
  215. help
  216. Simple chat utility.
  217. config BUSYBOX_FEATURE_CHAT_NOFAIL
  218. bool "Enable NOFAIL expect strings"
  219. depends on BUSYBOX_CHAT
  220. default y
  221. help
  222. When enabled expect strings which are started with a dash trigger
  223. no-fail mode. That is when expectation is not met within timeout
  224. the script is not terminated but sends next SEND string and waits
  225. for next EXPECT string. This allows to compose far more flexible
  226. scripts.
  227. config BUSYBOX_FEATURE_CHAT_TTY_HIFI
  228. bool "Force STDIN to be a TTY"
  229. depends on BUSYBOX_CHAT
  230. default n
  231. help
  232. Original chat always treats STDIN as a TTY device and sets for it
  233. so-called raw mode. This option turns on such behaviour.
  234. config BUSYBOX_FEATURE_CHAT_IMPLICIT_CR
  235. bool "Enable implicit Carriage Return"
  236. depends on BUSYBOX_CHAT
  237. default y
  238. help
  239. When enabled make chat to terminate all SEND strings with a "\r"
  240. unless "\c" is met anywhere in the string.
  241. config BUSYBOX_FEATURE_CHAT_SWALLOW_OPTS
  242. bool "Swallow options"
  243. depends on BUSYBOX_CHAT
  244. default y
  245. help
  246. Busybox chat require no options. To make it not fail when used
  247. in place of original chat (which has a bunch of options) turn
  248. this on.
  249. config BUSYBOX_FEATURE_CHAT_SEND_ESCAPES
  250. bool "Support weird SEND escapes"
  251. depends on BUSYBOX_CHAT
  252. default y
  253. help
  254. Original chat uses some escape sequences in SEND arguments which
  255. are not sent to device but rather performs special actions.
  256. E.g. "\K" means to send a break sequence to device.
  257. "\d" delays execution for a second, "\p" -- for a 1/100 of second.
  258. Before turning this option on think twice: do you really need them?
  259. config BUSYBOX_FEATURE_CHAT_VAR_ABORT_LEN
  260. bool "Support variable-length ABORT conditions"
  261. depends on BUSYBOX_CHAT
  262. default y
  263. help
  264. Original chat uses fixed 50-bytes length ABORT conditions. Say N here.
  265. config BUSYBOX_FEATURE_CHAT_CLR_ABORT
  266. bool "Support revoking of ABORT conditions"
  267. depends on BUSYBOX_CHAT
  268. default y
  269. help
  270. Support CLR_ABORT directive.
  271. config BUSYBOX_CHRT
  272. bool "chrt"
  273. default n
  274. help
  275. manipulate real-time attributes of a process.
  276. This requires sched_{g,s}etparam support in your libc.
  277. config BUSYBOX_CROND
  278. bool "crond"
  279. default n
  280. select BUSYBOX_FEATURE_SYSLOG
  281. help
  282. Crond is a background daemon that parses individual crontab
  283. files and executes commands on behalf of the users in question.
  284. This is a port of dcron from slackware. It uses files of the
  285. format /var/spool/cron/crontabs/<username> files, for example:
  286. $ cat /var/spool/cron/crontabs/root
  287. # Run daily cron jobs at 4:40 every day:
  288. 40 4 * * * /etc/cron/daily > /dev/null 2>&1
  289. config BUSYBOX_FEATURE_CROND_D
  290. bool "Support option -d to redirect output to stderr"
  291. depends on BUSYBOX_CROND
  292. default y
  293. help
  294. -d sets loglevel to 0 (most verbose) and directs all output to stderr.
  295. config BUSYBOX_FEATURE_CROND_CALL_SENDMAIL
  296. bool "Report command output via email (using sendmail)"
  297. default n
  298. depends on BUSYBOX_CROND
  299. help
  300. Command output will be sent to corresponding user via email.
  301. config BUSYBOX_FEATURE_CROND_DIR
  302. string "crond spool directory"
  303. default "/var/spool/cron"
  304. depends on BUSYBOX_CROND || BUSYBOX_CRONTAB
  305. help
  306. Location of crond spool.
  307. config BUSYBOX_CRONTAB
  308. bool "crontab"
  309. default n
  310. help
  311. Crontab manipulates the crontab for a particular user. Only
  312. the superuser may specify a different user and/or crontab directory.
  313. Note that Busybox binary must be setuid root for this applet to
  314. work properly.
  315. config BUSYBOX_DC
  316. bool "dc"
  317. default n
  318. help
  319. Dc is a reverse-polish desk calculator which supports unlimited
  320. precision arithmetic.
  321. config BUSYBOX_FEATURE_DC_LIBM
  322. bool "Enable power and exp functions (requires libm)"
  323. default n
  324. depends on BUSYBOX_DC
  325. help
  326. Enable power and exp functions.
  327. NOTE: This will require libm to be present for linking.
  328. config BUSYBOX_DEVFSD
  329. bool "devfsd (obsolete)"
  330. default n
  331. select BUSYBOX_PLATFORM_LINUX
  332. select BUSYBOX_FEATURE_SYSLOG
  333. help
  334. This is deprecated and should NOT be used anymore.
  335. Use linux >= 2.6 (optionally with hotplug) and mdev instead!
  336. See docs/mdev.txt for detailed instructions on how to use mdev
  337. instead.
  338. Provides compatibility with old device names on a devfs systems.
  339. You should set it to true if you have devfs enabled.
  340. The following keywords in devsfd.conf are supported:
  341. "CLEAR_CONFIG", "INCLUDE", "OPTIONAL_INCLUDE", "RESTORE",
  342. "PERMISSIONS", "EXECUTE", "COPY", "IGNORE",
  343. "MKOLDCOMPAT", "MKNEWCOMPAT","RMOLDCOMPAT", "RMNEWCOMPAT".
  344. But only if they are written UPPERCASE!!!!!!!!
  345. config BUSYBOX_DEVFSD_MODLOAD
  346. bool "Adds support for MODLOAD keyword in devsfd.conf"
  347. default n
  348. depends on BUSYBOX_DEVFSD
  349. help
  350. This actually doesn't work with busybox modutils but needs
  351. the external modutils.
  352. config BUSYBOX_DEVFSD_FG_NP
  353. bool "Enables the -fg and -np options"
  354. default n
  355. depends on BUSYBOX_DEVFSD
  356. help
  357. -fg Run the daemon in the foreground.
  358. -np Exit after parsing the configuration file.
  359. Do not poll for events.
  360. config BUSYBOX_DEVFSD_VERBOSE
  361. bool "Increases logging (and size)"
  362. default n
  363. depends on BUSYBOX_DEVFSD
  364. help
  365. Increases logging to stderr or syslog.
  366. config BUSYBOX_FEATURE_DEVFS
  367. bool "Use devfs names for all devices (obsolete)"
  368. default n
  369. select BUSYBOX_PLATFORM_LINUX
  370. help
  371. This is obsolete and should NOT be used anymore.
  372. Use linux >= 2.6 (optionally with hotplug) and mdev instead!
  373. For legacy systems -- if there is no way around devfsd -- this
  374. tells busybox to look for names like /dev/loop/0 instead of
  375. /dev/loop0. If your /dev directory has normal names instead of
  376. devfs names, you don't want this.
  377. config BUSYBOX_DEVMEM
  378. bool "devmem"
  379. default n
  380. help
  381. devmem is a small program that reads and writes from physical
  382. memory using /dev/mem.
  383. config BUSYBOX_EJECT
  384. bool "eject"
  385. default n
  386. select BUSYBOX_PLATFORM_LINUX
  387. help
  388. Used to eject cdroms. (defaults to /dev/cdrom)
  389. config BUSYBOX_FEATURE_EJECT_SCSI
  390. bool "SCSI support"
  391. default n
  392. depends on BUSYBOX_EJECT
  393. help
  394. Add the -s option to eject, this allows to eject SCSI-Devices and
  395. usb-storage devices.
  396. config BUSYBOX_FBSPLASH
  397. bool "fbsplash"
  398. default n
  399. select BUSYBOX_PLATFORM_LINUX
  400. help
  401. Shows splash image and progress bar on framebuffer device.
  402. Can be used during boot phase of an embedded device. ~2kb.
  403. Usage:
  404. - use kernel option 'vga=xxx' or otherwise enable fb device.
  405. - put somewhere fbsplash.cfg file and an image in .ppm format.
  406. - $ setsid fbsplash [params] &
  407. -c: hide cursor
  408. -d /dev/fbN: framebuffer device (if not /dev/fb0)
  409. -s path_to_image_file (can be "-" for stdin)
  410. -i path_to_cfg_file (can be "-" for stdin)
  411. -f path_to_fifo (can be "-" for stdin)
  412. - if you want to run it only in presence of kernel parameter:
  413. grep -q "fbsplash=on" </proc/cmdline && BUSYBOX_setsid fbsplash [params] &
  414. - commands for fifo:
  415. "NN" (ASCII decimal number) - percentage to show on progress bar
  416. "exit" - well you guessed it
  417. config BUSYBOX_FLASHCP
  418. bool "flashcp"
  419. default n # doesn't build on Ubuntu 8.04
  420. help
  421. The flashcp binary, inspired by mtd-utils as of git head 5eceb74f7.
  422. This utility is used to copy images into a MTD device.
  423. config BUSYBOX_FLASH_LOCK
  424. bool "flash_lock"
  425. default n # doesn't build on Ubuntu 8.04
  426. help
  427. The flash_lock binary from mtd-utils as of git head 5ec0c10d0. This
  428. utility locks part or all of the flash device.
  429. config BUSYBOX_FLASH_UNLOCK
  430. bool "flash_unlock"
  431. default n # doesn't build on Ubuntu 8.04
  432. help
  433. The flash_unlock binary from mtd-utils as of git head 5ec0c10d0. This
  434. utility unlocks part or all of the flash device.
  435. config BUSYBOX_FLASH_ERASEALL
  436. bool "flash_eraseall"
  437. default n # doesn't build on Ubuntu 8.04
  438. help
  439. The flash_eraseall binary from mtd-utils as of git head c4c6a59eb.
  440. This utility is used to erase the whole MTD device.
  441. config BUSYBOX_IONICE
  442. bool "ionice"
  443. default n
  444. select BUSYBOX_PLATFORM_LINUX
  445. help
  446. Set/set program io scheduling class and priority
  447. Requires kernel >= 2.6.13
  448. config BUSYBOX_INOTIFYD
  449. bool "inotifyd"
  450. default n # doesn't build on Knoppix 5
  451. help
  452. Simple inotify daemon. Reports filesystem changes. Requires
  453. kernel >= 2.6.13
  454. config BUSYBOX_LAST
  455. bool "last"
  456. default n
  457. depends on BUSYBOX_FEATURE_WTMP
  458. help
  459. 'last' displays a list of the last users that logged into the system.
  460. choice
  461. prompt "Choose last implementation"
  462. depends on BUSYBOX_LAST
  463. default FEATURE_LAST_FANCY
  464. config BUSYBOX_FEATURE_LAST_SMALL
  465. bool "small"
  466. help
  467. This is a small version of last with just the basic set of
  468. features.
  469. config BUSYBOX_FEATURE_LAST_FANCY
  470. bool "huge"
  471. help
  472. 'last' displays detailed information about the last users that
  473. logged into the system (mimics sysvinit last). +900 bytes.
  474. endchoice
  475. config BUSYBOX_HDPARM
  476. bool "hdparm"
  477. default n
  478. depends on !BUSYBOX_DISABLE_HDPARM
  479. select BUSYBOX_PLATFORM_LINUX
  480. help
  481. Get/Set hard drive parameters. Primarily intended for ATA
  482. drives. Adds about 13k (or around 30k if you enable the
  483. FEATURE_HDPARM_GET_IDENTITY option)....
  484. config BUSYBOX_FEATURE_HDPARM_GET_IDENTITY
  485. bool "Support obtaining detailed information directly from drives"
  486. default y
  487. depends on BUSYBOX_HDPARM
  488. help
  489. Enables the -I and -i options to obtain detailed information
  490. directly from drives about their capabilities and supported ATA
  491. feature set. If no device name is specified, hdparm will read
  492. identify data from stdin. Enabling this option will add about 16k...
  493. config BUSYBOX_FEATURE_HDPARM_HDIO_SCAN_HWIF
  494. bool "Register an IDE interface (DANGEROUS)"
  495. default y
  496. depends on BUSYBOX_HDPARM
  497. help
  498. Enables the 'hdparm -R' option to register an IDE interface.
  499. This is dangerous stuff, so you should probably say N.
  500. config BUSYBOX_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
  501. bool "Un-register an IDE interface (DANGEROUS)"
  502. default y
  503. depends on BUSYBOX_HDPARM
  504. help
  505. Enables the 'hdparm -U' option to un-register an IDE interface.
  506. This is dangerous stuff, so you should probably say N.
  507. config BUSYBOX_FEATURE_HDPARM_HDIO_DRIVE_RESET
  508. bool "Perform device reset (DANGEROUS)"
  509. default y
  510. depends on BUSYBOX_HDPARM
  511. help
  512. Enables the 'hdparm -w' option to perform a device reset.
  513. This is dangerous stuff, so you should probably say N.
  514. config BUSYBOX_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
  515. bool "Tristate device for hotswap (DANGEROUS)"
  516. default y
  517. depends on BUSYBOX_HDPARM
  518. help
  519. Enables the 'hdparm -x' option to tristate device for hotswap,
  520. and the '-b' option to get/set bus state. This is dangerous
  521. stuff, so you should probably say N.
  522. config BUSYBOX_FEATURE_HDPARM_HDIO_GETSET_DMA
  523. bool "Get/set using_dma flag"
  524. default y
  525. depends on BUSYBOX_HDPARM
  526. help
  527. Enables the 'hdparm -d' option to get/set using_dma flag.
  528. config BUSYBOX_MAKEDEVS
  529. bool "makedevs"
  530. default n
  531. help
  532. 'makedevs' is a utility used to create a batch of devices with
  533. one command.
  534. There are two choices for command line behaviour, the interface
  535. as used by LEAF/Linux Router Project, or a device table file.
  536. 'leaf' is traditionally what busybox follows, it allows multiple
  537. devices of a particluar type to be created per command.
  538. e.g. /dev/hda[0-9]
  539. Device properties are passed as command line arguments.
  540. 'table' reads device properties from a file or stdin, allowing
  541. a batch of unrelated devices to be made with one command.
  542. User/group names are allowed as an alternative to uid/gid.
  543. choice
  544. prompt "Choose makedevs behaviour"
  545. depends on BUSYBOX_MAKEDEVS
  546. default FEATURE_MAKEDEVS_TABLE
  547. config BUSYBOX_FEATURE_MAKEDEVS_LEAF
  548. bool "leaf"
  549. config BUSYBOX_FEATURE_MAKEDEVS_TABLE
  550. bool "table"
  551. endchoice
  552. config BUSYBOX_MAN
  553. bool "man"
  554. default n
  555. help
  556. Format and display manual pages.
  557. config BUSYBOX_MICROCOM
  558. bool "microcom"
  559. default n
  560. help
  561. The poor man's minicom utility for chatting with serial port devices.
  562. config BUSYBOX_MOUNTPOINT
  563. bool "mountpoint"
  564. default n
  565. help
  566. mountpoint checks if the directory is a mountpoint.
  567. config BUSYBOX_MT
  568. bool "mt"
  569. default n
  570. help
  571. mt is used to control tape devices. You can use the mt utility
  572. to advance or rewind a tape past a specified number of archive
  573. files on the tape.
  574. config BUSYBOX_RAIDAUTORUN
  575. bool "raidautorun"
  576. default n
  577. select BUSYBOX_PLATFORM_LINUX
  578. help
  579. raidautorun tells the kernel md driver to
  580. search and start RAID arrays.
  581. config BUSYBOX_READAHEAD
  582. bool "readahead"
  583. default n
  584. depends on BUSYBOX_LFS
  585. select BUSYBOX_PLATFORM_LINUX
  586. help
  587. Preload the files listed on the command line into RAM cache so that
  588. subsequent reads on these files will not block on disk I/O.
  589. This applet just calls the readahead(2) system call on each file.
  590. It is mainly useful in system startup scripts to preload files
  591. or executables before they are used. When used at the right time
  592. (in particular when a CPU bound process is running) it can
  593. significantly speed up system startup.
  594. As readahead(2) blocks until each file has been read, it is best to
  595. run this applet as a background job.
  596. config BUSYBOX_RFKILL
  597. bool "rfkill"
  598. depends on !BUSYBOX_DISABLE_RFKILL
  599. default n
  600. select BUSYBOX_PLATFORM_LINUX
  601. help
  602. Enable/disable wireless devices.
  603. rfkill list : list all wireless devices
  604. rfkill list bluetooth : list all bluetooth devices
  605. rfkill list 1 : list device corresponding to the given index
  606. rfkill block|unblock wlan : block/unblock all wlan(wifi) devices
  607. config BUSYBOX_RUNLEVEL
  608. bool "runlevel"
  609. default n
  610. depends on BUSYBOX_FEATURE_UTMP
  611. help
  612. find the current and previous system runlevel.
  613. This applet uses utmp but does not rely on busybox supporing
  614. utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc.
  615. config BUSYBOX_RX
  616. bool "rx"
  617. default n
  618. select BUSYBOX_PLATFORM_LINUX
  619. help
  620. Receive files using the Xmodem protocol.
  621. config BUSYBOX_SETSID
  622. bool "setsid"
  623. default n
  624. help
  625. setsid runs a program in a new session
  626. config BUSYBOX_STRINGS
  627. bool "strings"
  628. default n
  629. help
  630. strings prints the printable character sequences for each file
  631. specified.
  632. config BUSYBOX_TASKSET
  633. bool "taskset"
  634. default n # doesn't build on some non-x86 targets (m68k)
  635. help
  636. Retrieve or set a processes's CPU affinity.
  637. This requires sched_{g,s}etaffinity support in your libc.
  638. config BUSYBOX_FEATURE_TASKSET_FANCY
  639. bool "Fancy output"
  640. default y
  641. depends on BUSYBOX_TASKSET
  642. help
  643. Add code for fancy output. This merely silences a compiler-warning
  644. and adds about 135 Bytes. May be needed for machines with alot
  645. of CPUs.
  646. config BUSYBOX_TIME
  647. bool "time"
  648. default n
  649. help
  650. The time command runs the specified program with the given arguments.
  651. When the command finishes, time writes a message to standard output
  652. giving timing statistics about this program run.
  653. config BUSYBOX_TIMEOUT
  654. bool "timeout"
  655. default n
  656. help
  657. Runs a program and watches it. If it does not terminate in
  658. specified number of seconds, it is sent a signal.
  659. config BUSYBOX_TTYSIZE
  660. bool "ttysize"
  661. default n
  662. help
  663. A replacement for "stty size". Unlike stty, can report only width,
  664. only height, or both, in any order. It also does not complain on
  665. error, but returns default 80x24.
  666. Usage in shell scripts: width=`ttysize w`.
  667. config BUSYBOX_VOLNAME
  668. bool "volname"
  669. default n
  670. help
  671. Prints a CD-ROM volume name.
  672. config BUSYBOX_WALL
  673. bool "wall"
  674. default n
  675. depends on BUSYBOX_FEATURE_UTMP
  676. help
  677. Write a message to all users that are logged in.
  678. config BUSYBOX_WATCHDOG
  679. bool "watchdog"
  680. default y if ADK_TARGET_WITH_WATCHDOG
  681. default n
  682. depends on !BUSYBOX_DISABLE_WATCHDOG
  683. select BUSYBOX_PLATFORM_LINUX
  684. help
  685. The watchdog utility is used with hardware or software watchdog
  686. device drivers. It opens the specified watchdog device special file
  687. and periodically writes a magic character to the device. If the
  688. watchdog applet ever fails to write the magic character within a
  689. certain amount of time, the watchdog device assumes the system has
  690. hung, and will cause the hardware to reboot.
  691. endmenu