Config.in 20 KB

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