Config.in 24 KB

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