Config.in 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829
  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 docs/Kconfig-language.txt.
  5. #
  6. menu "Miscellaneous Utilities"
  7. config BUSYBOX_CONFIG_ADJTIMEX
  8. bool "adjtimex (4.9 kb)"
  9. default BUSYBOX_DEFAULT_ADJTIMEX
  10. help
  11. Adjtimex reads and optionally sets adjustment parameters for
  12. the Linux clock adjustment algorithm.
  13. config BUSYBOX_CONFIG_ASCII
  14. bool "ascii (784 bytes)"
  15. default BUSYBOX_DEFAULT_ASCII
  16. help
  17. Print ascii table.
  18. config BUSYBOX_CONFIG_BBCONFIG
  19. bool "bbconfig (9.7 kb)"
  20. default BUSYBOX_DEFAULT_BBCONFIG
  21. help
  22. The bbconfig applet will print the config file with which
  23. busybox was built.
  24. config BUSYBOX_CONFIG_FEATURE_COMPRESS_BBCONFIG
  25. bool "Compress bbconfig data"
  26. default BUSYBOX_DEFAULT_FEATURE_COMPRESS_BBCONFIG
  27. depends on BUSYBOX_CONFIG_BBCONFIG
  28. help
  29. Store bbconfig data in compressed form, uncompress them on-the-fly
  30. before output.
  31. If you have a really tiny busybox with few applets enabled (and
  32. bunzip2 isn't one of them), the overhead of the decompressor might
  33. be noticeable. Also, if you run executables directly from ROM
  34. and have very little memory, this might not be a win. Otherwise,
  35. you probably want this.
  36. config BUSYBOX_CONFIG_BC
  37. bool "bc (38 kb)"
  38. default BUSYBOX_DEFAULT_BC
  39. select BUSYBOX_CONFIG_FEATURE_DC_BIG
  40. help
  41. bc is a command-line, arbitrary-precision calculator with a
  42. Turing-complete language. See the GNU bc manual
  43. (https://www.gnu.org/software/bc/manual/bc.html) and bc spec
  44. (http://pubs.opengroup.org/onlinepubs/9699919799/utilities/bc.html).
  45. This bc has five differences to the GNU bc:
  46. 1) The period (.) is a shortcut for "last", as in the BSD bc.
  47. 2) Arrays are copied before being passed as arguments to
  48. functions. This behavior is required by the bc spec.
  49. 3) Arrays can be passed to the builtin "length" function to get
  50. the number of elements in the array. This prints "1":
  51. a[0] = 0; length(a[])
  52. 4) The precedence of the boolean "not" operator (!) is equal to
  53. that of the unary minus (-) negation operator. This still
  54. allows POSIX-compliant scripts to work while somewhat
  55. preserving expected behavior (versus C) and making parsing
  56. easier.
  57. 5) "read()" accepts expressions, not only numeric literals.
  58. config BUSYBOX_CONFIG_DC
  59. bool "dc (29 kb)"
  60. default BUSYBOX_DEFAULT_DC
  61. help
  62. dc is a reverse-polish notation command-line calculator which
  63. supports unlimited precision arithmetic. See the FreeBSD man page
  64. (https://www.unix.com/man-page/FreeBSD/1/dc/) and GNU dc manual
  65. (https://www.gnu.org/software/bc/manual/dc-1.05/html_mono/dc.html).
  66. This dc has a few differences from the two above:
  67. 1) When printing a byte stream (command "P"), this dc follows what
  68. the FreeBSD dc does.
  69. 2) Implements the GNU extensions for divmod ("~") and
  70. modular exponentiation ("|").
  71. 3) Implements all FreeBSD extensions, except for "J" and "M".
  72. 4) Like the FreeBSD dc, this dc supports extended registers.
  73. However, they are implemented differently. When it encounters
  74. whitespace where a register should be, it skips the whitespace.
  75. If the character following is not a lowercase letter, an error
  76. is issued. Otherwise, the register name is parsed by the
  77. following regex: [a-z][a-z0-9_]*
  78. This generally means that register names will be surrounded by
  79. whitespace. Examples:
  80. l idx s temp L index S temp2 < do_thing
  81. Also note that, like the FreeBSD dc, extended registers are not
  82. allowed unless the "-x" option is given.
  83. if BC || BUSYBOX_CONFIG_DC # for menuconfig indenting
  84. config BUSYBOX_CONFIG_FEATURE_DC_BIG
  85. bool "Use bc code base for dc (larger, more features)"
  86. default BUSYBOX_DEFAULT_FEATURE_DC_BIG
  87. config BUSYBOX_CONFIG_FEATURE_DC_LIBM
  88. bool "Enable power and exp functions (requires libm)"
  89. default BUSYBOX_DEFAULT_FEATURE_DC_LIBM
  90. depends on BUSYBOX_CONFIG_DC && !BUSYBOX_CONFIG_BC && !BUSYBOX_CONFIG_FEATURE_DC_BIG
  91. help
  92. Enable power and exp functions.
  93. NOTE: This will require libm to be present for linking.
  94. config BUSYBOX_CONFIG_FEATURE_BC_INTERACTIVE
  95. bool "Interactive mode (+4kb)"
  96. default BUSYBOX_DEFAULT_FEATURE_BC_INTERACTIVE
  97. depends on BUSYBOX_CONFIG_BC || (BUSYBOX_CONFIG_DC && BUSYBOX_CONFIG_FEATURE_DC_BIG)
  98. help
  99. Enable interactive mode: when started on a tty,
  100. ^C interrupts execution and returns to command line,
  101. errors also return to command line instead of exiting,
  102. line editing with history is available.
  103. With this option off, input can still be taken from tty,
  104. but all errors are fatal, ^C is fatal,
  105. tty is treated exactly the same as any other
  106. standard input (IOW: no line editing).
  107. config BUSYBOX_CONFIG_FEATURE_BC_LONG_OPTIONS
  108. bool "Enable bc/dc long options"
  109. default BUSYBOX_DEFAULT_FEATURE_BC_LONG_OPTIONS
  110. depends on BUSYBOX_CONFIG_BC || (BUSYBOX_CONFIG_DC && BUSYBOX_CONFIG_FEATURE_DC_BIG)
  111. endif
  112. config BUSYBOX_CONFIG_BEEP
  113. bool "beep (2.7 kb)"
  114. default BUSYBOX_DEFAULT_BEEP
  115. help
  116. The beep applets beeps in a given freq/Hz.
  117. config BUSYBOX_CONFIG_FEATURE_BEEP_FREQ
  118. int "default frequency"
  119. range 20 50000 # allowing 0 here breaks the build
  120. default BUSYBOX_DEFAULT_FEATURE_BEEP_FREQ
  121. depends on BUSYBOX_CONFIG_BEEP
  122. help
  123. Frequency for default beep.
  124. config BUSYBOX_CONFIG_FEATURE_BEEP_LENGTH_MS
  125. int "default length"
  126. range 0 2147483647
  127. default BUSYBOX_DEFAULT_FEATURE_BEEP_LENGTH_MS
  128. depends on BUSYBOX_CONFIG_BEEP
  129. help
  130. Length in ms for default beep.
  131. config BUSYBOX_CONFIG_CHAT
  132. bool "chat (6.7 kb)"
  133. default BUSYBOX_DEFAULT_CHAT
  134. help
  135. Simple chat utility.
  136. config BUSYBOX_CONFIG_FEATURE_CHAT_NOFAIL
  137. bool "Enable NOFAIL expect strings"
  138. depends on BUSYBOX_CONFIG_CHAT
  139. default BUSYBOX_DEFAULT_FEATURE_CHAT_NOFAIL
  140. help
  141. When enabled expect strings which are started with a dash trigger
  142. no-fail mode. That is when expectation is not met within timeout
  143. the script is not terminated but sends next SEND string and waits
  144. for next EXPECT string. This allows to compose far more flexible
  145. scripts.
  146. config BUSYBOX_CONFIG_FEATURE_CHAT_TTY_HIFI
  147. bool "Force STDIN to be a TTY"
  148. depends on BUSYBOX_CONFIG_CHAT
  149. default BUSYBOX_DEFAULT_FEATURE_CHAT_TTY_HIFI
  150. help
  151. Original chat always treats STDIN as a TTY device and sets for it
  152. so-called raw mode. This option turns on such behaviour.
  153. config BUSYBOX_CONFIG_FEATURE_CHAT_IMPLICIT_CR
  154. bool "Enable implicit Carriage Return"
  155. depends on BUSYBOX_CONFIG_CHAT
  156. default BUSYBOX_DEFAULT_FEATURE_CHAT_IMPLICIT_CR
  157. help
  158. When enabled make chat to terminate all SEND strings with a "\r"
  159. unless "\c" is met anywhere in the string.
  160. config BUSYBOX_CONFIG_FEATURE_CHAT_SWALLOW_OPTS
  161. bool "Swallow options"
  162. depends on BUSYBOX_CONFIG_CHAT
  163. default BUSYBOX_DEFAULT_FEATURE_CHAT_SWALLOW_OPTS
  164. help
  165. Busybox chat require no options. To make it not fail when used
  166. in place of original chat (which has a bunch of options) turn
  167. this on.
  168. config BUSYBOX_CONFIG_FEATURE_CHAT_SEND_ESCAPES
  169. bool "Support weird SEND escapes"
  170. depends on BUSYBOX_CONFIG_CHAT
  171. default BUSYBOX_DEFAULT_FEATURE_CHAT_SEND_ESCAPES
  172. help
  173. Original chat uses some escape sequences in SEND arguments which
  174. are not sent to device but rather performs special actions.
  175. E.g. "\K" means to send a break sequence to device.
  176. "\d" delays execution for a second, "\p" -- for a 1/100 of second.
  177. Before turning this option on think twice: do you really need them?
  178. config BUSYBOX_CONFIG_FEATURE_CHAT_VAR_ABORT_LEN
  179. bool "Support variable-length ABORT conditions"
  180. depends on BUSYBOX_CONFIG_CHAT
  181. default BUSYBOX_DEFAULT_FEATURE_CHAT_VAR_ABORT_LEN
  182. help
  183. Original chat uses fixed 50-bytes length ABORT conditions. Say N here.
  184. config BUSYBOX_CONFIG_FEATURE_CHAT_CLR_ABORT
  185. bool "Support revoking of ABORT conditions"
  186. depends on BUSYBOX_CONFIG_CHAT
  187. default BUSYBOX_DEFAULT_FEATURE_CHAT_CLR_ABORT
  188. help
  189. Support CLR_ABORT directive.
  190. config BUSYBOX_CONFIG_CONSPY
  191. bool "conspy (10 kb)"
  192. default BUSYBOX_DEFAULT_CONSPY
  193. help
  194. A text-mode VNC like program for Linux virtual terminals.
  195. example: conspy NUM shared access to console num
  196. or conspy -nd NUM screenshot of console num
  197. or conspy -cs NUM poor man's GNU screen like
  198. config BUSYBOX_CONFIG_CROND
  199. bool "crond (15 kb)"
  200. default BUSYBOX_DEFAULT_CROND
  201. select BUSYBOX_CONFIG_FEATURE_SYSLOG
  202. help
  203. Crond is a background daemon that parses individual crontab
  204. files and executes commands on behalf of the users in question.
  205. This is a port of dcron from slackware. It uses files of the
  206. format /var/spool/cron/crontabs/<username> files, for example:
  207. $ cat /var/spool/cron/crontabs/root
  208. # Run daily cron jobs at 4:40 every day:
  209. 40 4 * * * /etc/cron/daily > /dev/null 2>&1
  210. config BUSYBOX_CONFIG_FEATURE_CROND_D
  211. bool "Support -d (redirect output to stderr)"
  212. depends on BUSYBOX_CONFIG_CROND
  213. default BUSYBOX_DEFAULT_FEATURE_CROND_D
  214. help
  215. -d N sets loglevel (0:most verbose) and directs all output to stderr.
  216. config BUSYBOX_CONFIG_FEATURE_CROND_CALL_SENDMAIL
  217. bool "Report command output via email (using sendmail)"
  218. default BUSYBOX_DEFAULT_FEATURE_CROND_CALL_SENDMAIL
  219. depends on BUSYBOX_CONFIG_CROND
  220. help
  221. Command output will be sent to corresponding user via email.
  222. config BUSYBOX_CONFIG_FEATURE_CROND_SPECIAL_TIMES
  223. bool "Support special times (@reboot, @daily, etc) in crontabs"
  224. default BUSYBOX_DEFAULT_FEATURE_CROND_SPECIAL_TIMES
  225. depends on BUSYBOX_CONFIG_CROND
  226. help
  227. string meaning
  228. ------ -------
  229. @reboot Run once, at startup
  230. @yearly Run once a year: "0 0 1 1 *"
  231. @annually Same as @yearly: "0 0 1 1 *"
  232. @monthly Run once a month: "0 0 1 * *"
  233. @weekly Run once a week: "0 0 * * 0"
  234. @daily Run once a day: "0 0 * * *"
  235. @midnight Same as @daily: "0 0 * * *"
  236. @hourly Run once an hour: "0 * * * *"
  237. config BUSYBOX_CONFIG_FEATURE_CROND_DIR
  238. string "crond spool directory"
  239. default BUSYBOX_DEFAULT_FEATURE_CROND_DIR
  240. depends on BUSYBOX_CONFIG_CROND || BUSYBOX_CONFIG_CRONTAB
  241. help
  242. Location of crond spool.
  243. config BUSYBOX_CONFIG_CRONTAB
  244. bool "crontab (10 kb)"
  245. default BUSYBOX_DEFAULT_CRONTAB
  246. help
  247. Crontab manipulates the crontab for a particular user. Only
  248. the superuser may specify a different user and/or crontab directory.
  249. Note that busybox binary must be setuid root for this applet to
  250. work properly.
  251. config BUSYBOX_CONFIG_DEVFSD
  252. bool "devfsd (obsolete)"
  253. default BUSYBOX_DEFAULT_DEVFSD
  254. select BUSYBOX_CONFIG_FEATURE_SYSLOG
  255. help
  256. This is deprecated and should NOT be used anymore.
  257. Use linux >= 2.6 (optionally with hotplug) and mdev instead!
  258. See docs/mdev.txt for detailed instructions on how to use mdev
  259. instead.
  260. Provides compatibility with old device names on a devfs systems.
  261. You should set it to true if you have devfs enabled.
  262. The following keywords in devsfd.conf are supported:
  263. "CLEAR_CONFIG", "INCLUDE", "OPTIONAL_INCLUDE", "RESTORE",
  264. "PERMISSIONS", "EXECUTE", "COPY", "IGNORE",
  265. "MKOLDCOMPAT", "MKNEWCOMPAT","RMOLDCOMPAT", "RMNEWCOMPAT".
  266. But only if they are written UPPERCASE!!!!!!!!
  267. config BUSYBOX_CONFIG_DEVFSD_MODLOAD
  268. bool "Adds support for MODLOAD keyword in devsfd.conf"
  269. default BUSYBOX_DEFAULT_DEVFSD_MODLOAD
  270. depends on BUSYBOX_CONFIG_DEVFSD
  271. help
  272. This actually doesn't work with busybox modutils but needs
  273. the external modutils.
  274. config BUSYBOX_CONFIG_DEVFSD_FG_NP
  275. bool "Enable the -fg and -np options"
  276. default BUSYBOX_DEFAULT_DEVFSD_FG_NP
  277. depends on BUSYBOX_CONFIG_DEVFSD
  278. help
  279. -fg Run the daemon in the foreground.
  280. -np Exit after parsing config. Do not poll for events.
  281. config BUSYBOX_CONFIG_DEVFSD_VERBOSE
  282. bool "Increases logging (and size)"
  283. default BUSYBOX_DEFAULT_DEVFSD_VERBOSE
  284. depends on BUSYBOX_CONFIG_DEVFSD
  285. help
  286. Increases logging to stderr or syslog.
  287. config BUSYBOX_CONFIG_FEATURE_DEVFS
  288. bool "Use devfs names for all devices (obsolete)"
  289. default BUSYBOX_DEFAULT_FEATURE_DEVFS
  290. help
  291. This is obsolete and should NOT be used anymore.
  292. Use linux >= 2.6 (optionally with hotplug) and mdev instead!
  293. For legacy systems -- if there is no way around devfsd -- this
  294. tells busybox to look for names like /dev/loop/0 instead of
  295. /dev/loop0. If your /dev directory has normal names instead of
  296. devfs names, you don't want this.
  297. config BUSYBOX_CONFIG_DEVMEM
  298. bool "devmem (2.7 kb)"
  299. default BUSYBOX_DEFAULT_DEVMEM
  300. help
  301. devmem is a small program that reads and writes from physical
  302. memory using /dev/mem.
  303. config BUSYBOX_CONFIG_FBSPLASH
  304. bool "fbsplash (26 kb)"
  305. default BUSYBOX_DEFAULT_FBSPLASH
  306. help
  307. Shows splash image and progress bar on framebuffer device.
  308. Can be used during boot phase of an embedded device.
  309. Usage:
  310. - use kernel option 'vga=xxx' or otherwise enable fb device.
  311. - put somewhere fbsplash.cfg file and an image in .ppm format.
  312. - $ setsid fbsplash [params] &
  313. -c: hide cursor
  314. -d /dev/fbN: framebuffer device (if not /dev/fb0)
  315. -s path_to_image_file (can be "-" for stdin)
  316. -i path_to_cfg_file (can be "-" for stdin)
  317. -f path_to_fifo (can be "-" for stdin)
  318. - if you want to run it only in presence of kernel parameter:
  319. grep -q "fbsplash=on" </proc/cmdline && setsid fbsplash [params] &
  320. - commands for fifo:
  321. "NN" (ASCII decimal number) - percentage to show on progress bar
  322. "exit" - well you guessed it
  323. config BUSYBOX_CONFIG_FLASH_ERASEALL
  324. bool "flash_eraseall (5.9 kb)"
  325. default BUSYBOX_DEFAULT_FLASH_ERASEALL # doesn't build on Ubuntu 8.04
  326. help
  327. The flash_eraseall binary from mtd-utils as of git head c4c6a59eb.
  328. This utility is used to erase the whole MTD device.
  329. config BUSYBOX_CONFIG_FLASH_LOCK
  330. bool "flash_lock (2.1 kb)"
  331. default BUSYBOX_DEFAULT_FLASH_LOCK # doesn't build on Ubuntu 8.04
  332. help
  333. The flash_lock binary from mtd-utils as of git head 5ec0c10d0. This
  334. utility locks part or all of the flash device.
  335. config BUSYBOX_CONFIG_FLASH_UNLOCK
  336. bool "flash_unlock (1.3 kb)"
  337. default BUSYBOX_DEFAULT_FLASH_UNLOCK # doesn't build on Ubuntu 8.04
  338. help
  339. The flash_unlock binary from mtd-utils as of git head 5ec0c10d0. This
  340. utility unlocks part or all of the flash device.
  341. config BUSYBOX_CONFIG_FLASHCP
  342. bool "flashcp (5.3 kb)"
  343. default BUSYBOX_DEFAULT_FLASHCP # doesn't build on Ubuntu 8.04
  344. help
  345. The flashcp binary, inspired by mtd-utils as of git head 5eceb74f7.
  346. This utility is used to copy images into a MTD device.
  347. config BUSYBOX_CONFIG_GETFATTR
  348. bool "getfattr (12.3 kb)"
  349. default BUSYBOX_DEFAULT_GETFATTR
  350. help
  351. Get extended attributes on files
  352. config BUSYBOX_CONFIG_HDPARM
  353. bool "hdparm (25 kb)"
  354. default BUSYBOX_DEFAULT_HDPARM
  355. help
  356. Get/Set hard drive parameters. Primarily intended for ATA
  357. drives.
  358. config BUSYBOX_CONFIG_FEATURE_HDPARM_GET_IDENTITY
  359. bool "Support obtaining detailed information directly from drives"
  360. default BUSYBOX_DEFAULT_FEATURE_HDPARM_GET_IDENTITY
  361. depends on BUSYBOX_CONFIG_HDPARM
  362. help
  363. Enable the -I and -i options to obtain detailed information
  364. directly from drives about their capabilities and supported ATA
  365. feature set. If no device name is specified, hdparm will read
  366. identify data from stdin. Enabling this option will add about 16k...
  367. config BUSYBOX_CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF
  368. bool "Register an IDE interface (DANGEROUS)"
  369. default BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_SCAN_HWIF
  370. depends on BUSYBOX_CONFIG_HDPARM
  371. help
  372. Enable the 'hdparm -R' option to register an IDE interface.
  373. This is dangerous stuff, so you should probably say N.
  374. config BUSYBOX_CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
  375. bool "Un-register an IDE interface (DANGEROUS)"
  376. default BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
  377. depends on BUSYBOX_CONFIG_HDPARM
  378. help
  379. Enable the 'hdparm -U' option to un-register an IDE interface.
  380. This is dangerous stuff, so you should probably say N.
  381. config BUSYBOX_CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET
  382. bool "Perform device reset (DANGEROUS)"
  383. default BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_DRIVE_RESET
  384. depends on BUSYBOX_CONFIG_HDPARM
  385. help
  386. Enable the 'hdparm -w' option to perform a device reset.
  387. This is dangerous stuff, so you should probably say N.
  388. config BUSYBOX_CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
  389. bool "Tristate device for hotswap (DANGEROUS)"
  390. default BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
  391. depends on BUSYBOX_CONFIG_HDPARM
  392. help
  393. Enable the 'hdparm -x' option to tristate device for hotswap,
  394. and the '-b' option to get/set bus state. This is dangerous
  395. stuff, so you should probably say N.
  396. config BUSYBOX_CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA
  397. bool "Get/set using_dma flag"
  398. default BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_GETSET_DMA
  399. depends on BUSYBOX_CONFIG_HDPARM
  400. help
  401. Enable the 'hdparm -d' option to get/set using_dma flag.
  402. config BUSYBOX_CONFIG_HEXEDIT
  403. bool "hexedit (15 kb)"
  404. default BUSYBOX_DEFAULT_HEXEDIT
  405. help
  406. Edit file in hexadecimal.
  407. config BUSYBOX_CONFIG_I2CGET
  408. bool "i2cget (5.7 kb)"
  409. default BUSYBOX_DEFAULT_I2CGET
  410. help
  411. Read from I2C/SMBus chip registers.
  412. config BUSYBOX_CONFIG_I2CSET
  413. bool "i2cset (6.9 kb)"
  414. default BUSYBOX_DEFAULT_I2CSET
  415. help
  416. Set I2C registers.
  417. config BUSYBOX_CONFIG_I2CDUMP
  418. bool "i2cdump (7.2 kb)"
  419. default BUSYBOX_DEFAULT_I2CDUMP
  420. help
  421. Examine I2C registers.
  422. config BUSYBOX_CONFIG_I2CDETECT
  423. bool "i2cdetect (7.3 kb)"
  424. default BUSYBOX_DEFAULT_I2CDETECT
  425. help
  426. Detect I2C chips.
  427. config BUSYBOX_CONFIG_I2CTRANSFER
  428. bool "i2ctransfer (5.5 kb)"
  429. default BUSYBOX_DEFAULT_I2CTRANSFER
  430. help
  431. Send user-defined I2C messages in one transfer.
  432. config BUSYBOX_CONFIG_INOTIFYD
  433. bool "inotifyd (3.6 kb)"
  434. default BUSYBOX_DEFAULT_INOTIFYD # doesn't build on Knoppix 5
  435. help
  436. Simple inotify daemon. Reports filesystem changes. Requires
  437. kernel >= 2.6.13
  438. config BUSYBOX_CONFIG_LESS
  439. bool "less (16 kb)"
  440. default BUSYBOX_DEFAULT_LESS
  441. help
  442. 'less' is a pager, meaning that it displays text files. It possesses
  443. a wide array of features, and is an improvement over 'more'.
  444. config BUSYBOX_CONFIG_FEATURE_LESS_MAXLINES
  445. int "Max number of input lines less will try to eat"
  446. default BUSYBOX_DEFAULT_FEATURE_LESS_MAXLINES
  447. depends on BUSYBOX_CONFIG_LESS
  448. config BUSYBOX_CONFIG_FEATURE_LESS_BRACKETS
  449. bool "Enable bracket searching"
  450. default BUSYBOX_DEFAULT_FEATURE_LESS_BRACKETS
  451. depends on BUSYBOX_CONFIG_LESS
  452. help
  453. This option adds the capability to search for matching left and right
  454. brackets, facilitating programming.
  455. config BUSYBOX_CONFIG_FEATURE_LESS_FLAGS
  456. bool "Enable -m/-M"
  457. default BUSYBOX_DEFAULT_FEATURE_LESS_FLAGS
  458. depends on BUSYBOX_CONFIG_LESS
  459. help
  460. The -M/-m flag enables a more sophisticated status line.
  461. config BUSYBOX_CONFIG_FEATURE_LESS_TRUNCATE
  462. bool "Enable -S"
  463. default BUSYBOX_DEFAULT_FEATURE_LESS_TRUNCATE
  464. depends on BUSYBOX_CONFIG_LESS
  465. help
  466. The -S flag causes long lines to be truncated rather than
  467. wrapped.
  468. config BUSYBOX_CONFIG_FEATURE_LESS_MARKS
  469. bool "Enable marks"
  470. default BUSYBOX_DEFAULT_FEATURE_LESS_MARKS
  471. depends on BUSYBOX_CONFIG_LESS
  472. help
  473. Marks enable positions in a file to be stored for easy reference.
  474. config BUSYBOX_CONFIG_FEATURE_LESS_REGEXP
  475. bool "Enable regular expressions"
  476. default BUSYBOX_DEFAULT_FEATURE_LESS_REGEXP
  477. depends on BUSYBOX_CONFIG_LESS
  478. help
  479. Enable regular expressions, allowing complex file searches.
  480. config BUSYBOX_CONFIG_FEATURE_LESS_WINCH
  481. bool "Enable automatic resizing on window size changes"
  482. default BUSYBOX_DEFAULT_FEATURE_LESS_WINCH
  483. depends on BUSYBOX_CONFIG_LESS
  484. help
  485. Makes less track window size changes.
  486. config BUSYBOX_CONFIG_FEATURE_LESS_ASK_TERMINAL
  487. bool "Use 'tell me cursor position' ESC sequence to measure window"
  488. default BUSYBOX_DEFAULT_FEATURE_LESS_ASK_TERMINAL
  489. depends on BUSYBOX_CONFIG_FEATURE_LESS_WINCH
  490. help
  491. Makes less track window size changes.
  492. If terminal size can't be retrieved and $LINES/$COLUMNS are not set,
  493. this option makes less perform a last-ditch effort to find it:
  494. position cursor to 999,999 and ask terminal to report real
  495. cursor position using "ESC [ 6 n" escape sequence, then read stdin.
  496. This is not clean but helps a lot on serial lines and such.
  497. config BUSYBOX_CONFIG_FEATURE_LESS_DASHCMD
  498. bool "Enable flag changes ('-' command)"
  499. default BUSYBOX_DEFAULT_FEATURE_LESS_DASHCMD
  500. depends on BUSYBOX_CONFIG_LESS
  501. help
  502. This enables the ability to change command-line flags within
  503. less itself ('-' keyboard command).
  504. config BUSYBOX_CONFIG_FEATURE_LESS_LINENUMS
  505. bool "Enable -N (dynamic switching of line numbers)"
  506. default BUSYBOX_DEFAULT_FEATURE_LESS_LINENUMS
  507. depends on BUSYBOX_CONFIG_FEATURE_LESS_DASHCMD
  508. config BUSYBOX_CONFIG_FEATURE_LESS_RAW
  509. bool "Enable -R ('raw control characters')"
  510. default BUSYBOX_DEFAULT_FEATURE_LESS_RAW
  511. depends on BUSYBOX_CONFIG_FEATURE_LESS_DASHCMD
  512. help
  513. This is essential for less applet to work with tools that use colors
  514. and paging, such as git, systemd tools or nmcli.
  515. config BUSYBOX_CONFIG_FEATURE_LESS_ENV
  516. bool "Take options from $LESS environment variable"
  517. default BUSYBOX_DEFAULT_FEATURE_LESS_ENV
  518. depends on BUSYBOX_CONFIG_FEATURE_LESS_DASHCMD
  519. help
  520. This is essential for less applet to work with tools that use colors
  521. and paging, such as git, systemd tools or nmcli.
  522. config BUSYBOX_CONFIG_LOCK
  523. bool "lock"
  524. default BUSYBOX_DEFAULT_LOCK
  525. help
  526. Small utility for using locks in scripts
  527. config BUSYBOX_CONFIG_LSSCSI
  528. bool "lsscsi (2.9 kb)"
  529. default BUSYBOX_DEFAULT_LSSCSI
  530. help
  531. lsscsi is a utility for displaying information about SCSI buses in the
  532. system and devices connected to them.
  533. This version uses sysfs (/sys/bus/scsi/devices) only.
  534. config BUSYBOX_CONFIG_MAKEDEVS
  535. bool "makedevs (9.4 kb)"
  536. default BUSYBOX_DEFAULT_MAKEDEVS
  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_CONFIG_MAKEDEVS
  552. default BUSYBOX_CONFIG_FEATURE_MAKEDEVS_TABLE
  553. config BUSYBOX_CONFIG_FEATURE_MAKEDEVS_LEAF
  554. bool "leaf"
  555. config BUSYBOX_CONFIG_FEATURE_MAKEDEVS_TABLE
  556. bool "table"
  557. endchoice
  558. config BUSYBOX_CONFIG_MAN
  559. bool "man (26 kb)"
  560. default BUSYBOX_DEFAULT_MAN
  561. help
  562. Format and display manual pages.
  563. config BUSYBOX_CONFIG_MICROCOM
  564. bool "microcom (5.9 kb)"
  565. default BUSYBOX_DEFAULT_MICROCOM
  566. help
  567. The poor man's minicom utility for chatting with serial port devices.
  568. config BUSYBOX_CONFIG_MIM
  569. bool "mim (0.5 kb)"
  570. default BUSYBOX_DEFAULT_MIM
  571. depends on BUSYBOX_CONFIG_FEATURE_SH_EMBEDDED_SCRIPTS
  572. help
  573. Run a script from a Makefile-like specification file.
  574. Unlike 'make' dependencies aren't supported.
  575. config BUSYBOX_CONFIG_MT
  576. bool "mt (2.7 kb)"
  577. default BUSYBOX_DEFAULT_MT
  578. help
  579. mt is used to control tape devices. You can use the mt utility
  580. to advance or rewind a tape past a specified number of archive
  581. files on the tape.
  582. config BUSYBOX_CONFIG_NANDWRITE
  583. bool "nandwrite (5 kb)"
  584. default BUSYBOX_DEFAULT_NANDWRITE
  585. help
  586. Write to the specified MTD device, with bad blocks awareness
  587. config BUSYBOX_CONFIG_NANDDUMP
  588. bool "nanddump (5.4 kb)"
  589. default BUSYBOX_DEFAULT_NANDDUMP
  590. help
  591. Dump the content of raw NAND chip
  592. config BUSYBOX_CONFIG_PARTPROBE
  593. bool "partprobe (3.7 kb)"
  594. default BUSYBOX_DEFAULT_PARTPROBE
  595. help
  596. Ask kernel to rescan partition table.
  597. config BUSYBOX_CONFIG_RAIDAUTORUN
  598. bool "raidautorun (1.6 kb)"
  599. default BUSYBOX_DEFAULT_RAIDAUTORUN
  600. help
  601. raidautorun tells the kernel md driver to
  602. search and start RAID arrays.
  603. config BUSYBOX_CONFIG_READAHEAD
  604. bool "readahead (1.7 kb)"
  605. default BUSYBOX_DEFAULT_READAHEAD
  606. depends on BUSYBOX_CONFIG_LFS
  607. help
  608. Preload the files listed on the command line into RAM cache so that
  609. subsequent reads on these files will not block on disk I/O.
  610. This applet just calls the readahead(2) system call on each file.
  611. It is mainly useful in system startup scripts to preload files
  612. or executables before they are used. When used at the right time
  613. (in particular when a CPU bound process is running) it can
  614. significantly speed up system startup.
  615. As readahead(2) blocks until each file has been read, it is best to
  616. run this applet as a background job.
  617. config BUSYBOX_CONFIG_RFKILL
  618. bool "rfkill (4.4 kb)"
  619. default BUSYBOX_DEFAULT_RFKILL # doesn't build on Ubuntu 9.04
  620. help
  621. Enable/disable wireless devices.
  622. rfkill list : list all wireless devices
  623. rfkill list bluetooth : list all bluetooth devices
  624. rfkill list 1 : list device corresponding to the given index
  625. rfkill block|unblock wlan : block/unblock all wlan(wifi) devices
  626. config BUSYBOX_CONFIG_RUNLEVEL
  627. bool "runlevel (837 bytes)"
  628. default BUSYBOX_DEFAULT_RUNLEVEL
  629. depends on BUSYBOX_CONFIG_FEATURE_UTMP
  630. help
  631. Find the current and previous system runlevel.
  632. This applet uses utmp but does not rely on busybox supporing
  633. utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc.
  634. config BUSYBOX_CONFIG_RX
  635. bool "rx (3.2 kb)"
  636. default BUSYBOX_DEFAULT_RX
  637. help
  638. Receive files using the Xmodem protocol.
  639. config BUSYBOX_CONFIG_SEEDRNG
  640. bool "seedrng (9.1 kb)"
  641. default BUSYBOX_DEFAULT_SEEDRNG
  642. help
  643. Seed the kernel RNG from seed files, meant to be called
  644. once during startup, once during shutdown, and optionally
  645. at some periodic interval in between.
  646. config BUSYBOX_CONFIG_SETFATTR
  647. bool "setfattr (3.9 kb)"
  648. default BUSYBOX_DEFAULT_SETFATTR
  649. help
  650. Set/delete extended attributes on files
  651. config BUSYBOX_CONFIG_SETSERIAL
  652. bool "setserial (7.1 kb)"
  653. default BUSYBOX_DEFAULT_SETSERIAL
  654. help
  655. Retrieve or set Linux serial port.
  656. config BUSYBOX_CONFIG_STRINGS
  657. bool "strings (4.8 kb)"
  658. default BUSYBOX_DEFAULT_STRINGS
  659. help
  660. strings prints the printable character sequences for each file
  661. specified.
  662. config BUSYBOX_CONFIG_TIME
  663. bool "time (8.1 kb)"
  664. default BUSYBOX_DEFAULT_TIME
  665. help
  666. The time command runs the specified program with the given arguments.
  667. When the command finishes, time writes a message to standard output
  668. giving timing statistics about this program run.
  669. config BUSYBOX_CONFIG_TREE
  670. bool "tree (2.5 kb)"
  671. default BUSYBOX_DEFAULT_TREE
  672. help
  673. List files and directories in a tree structure.
  674. config BUSYBOX_CONFIG_TS
  675. bool "ts (4.4 kb)"
  676. default BUSYBOX_DEFAULT_TS
  677. config BUSYBOX_CONFIG_TTYSIZE
  678. bool "ttysize (718 bytes)"
  679. default BUSYBOX_DEFAULT_TTYSIZE
  680. help
  681. A replacement for "stty size". Unlike stty, can report only width,
  682. only height, or both, in any order. It also does not complain on
  683. error, but returns default 80x24.
  684. Usage in shell scripts: width=`ttysize w`.
  685. config BUSYBOX_CONFIG_UBIATTACH
  686. bool "ubiattach (4.5 kb)"
  687. default BUSYBOX_DEFAULT_UBIATTACH
  688. help
  689. Attach MTD device to an UBI device.
  690. config BUSYBOX_CONFIG_UBIDETACH
  691. bool "ubidetach (4.3 kb)"
  692. default BUSYBOX_DEFAULT_UBIDETACH
  693. help
  694. Detach MTD device from an UBI device.
  695. config BUSYBOX_CONFIG_UBIMKVOL
  696. bool "ubimkvol (5.5 kb)"
  697. default BUSYBOX_DEFAULT_UBIMKVOL
  698. help
  699. Create a UBI volume.
  700. config BUSYBOX_CONFIG_UBIRMVOL
  701. bool "ubirmvol (5.1 kb)"
  702. default BUSYBOX_DEFAULT_UBIRMVOL
  703. help
  704. Delete a UBI volume.
  705. config BUSYBOX_CONFIG_UBIRSVOL
  706. bool "ubirsvol (4.4 kb)"
  707. default BUSYBOX_DEFAULT_UBIRSVOL
  708. help
  709. Resize a UBI volume.
  710. config BUSYBOX_CONFIG_UBIUPDATEVOL
  711. bool "ubiupdatevol (5.6 kb)"
  712. default BUSYBOX_DEFAULT_UBIUPDATEVOL
  713. help
  714. Update a UBI volume.
  715. config BUSYBOX_CONFIG_UBIRENAME
  716. bool "ubirename (2.7 kb)"
  717. default BUSYBOX_DEFAULT_UBIRENAME
  718. help
  719. Utility to rename UBI volumes
  720. config BUSYBOX_CONFIG_VOLNAME
  721. bool "volname (1.9 kb)"
  722. default BUSYBOX_DEFAULT_VOLNAME
  723. help
  724. Prints a CD-ROM volume name.
  725. config BUSYBOX_CONFIG_WATCHDOG
  726. bool "watchdog (5.7 kb)"
  727. default BUSYBOX_DEFAULT_WATCHDOG
  728. help
  729. The watchdog utility is used with hardware or software watchdog
  730. device drivers. It opens the specified watchdog device special file
  731. and periodically writes a magic character to the device. If the
  732. watchdog applet ever fails to write the magic character within a
  733. certain amount of time, the watchdog device assumes the system has
  734. hung, and will cause the hardware to reboot.
  735. config BUSYBOX_CONFIG_FEATURE_WATCHDOG_OPEN_TWICE
  736. bool "Open watchdog device twice, closing it gracefully in between"
  737. depends on BUSYBOX_CONFIG_WATCHDOG
  738. default BUSYBOX_DEFAULT_FEATURE_WATCHDOG_OPEN_TWICE # this behavior was essentially a hack for a broken driver
  739. help
  740. When enabled, the watchdog device is opened and then immediately
  741. magic-closed, before being opened a second time. This may be necessary
  742. for some watchdog devices, but can cause spurious warnings in the
  743. kernel log if the nowayout feature is enabled. If this workaround
  744. is really needed for you machine to work properly, consider whether
  745. it should be fixed in the kernel driver instead. Even when disabled,
  746. the behaviour is easily emulated with a "printf 'V' > /dev/watchdog"
  747. immediately before starting the busybox watchdog daemon. Say n unless
  748. you know that you absolutely need this.
  749. endmenu