Config.in 20 KB

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