Config.in 21 KB

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