Config.in 24 KB

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