Config.in 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  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 ADJTIMEX
  7. bool "adjtimex"
  8. default n
  9. help
  10. Adjtimex reads and optionally sets adjustment parameters for
  11. the Linux clock adjustment algorithm.
  12. config BBCONFIG
  13. bool "bbconfig"
  14. default n
  15. help
  16. The bbconfig applet will print the config file with which
  17. busybox was built.
  18. config CHRT
  19. bool "chrt"
  20. default n
  21. help
  22. manipulate real-time attributes of a process.
  23. This requires sched_{g,s}etparam support in your libc.
  24. config CROND
  25. bool "crond"
  26. default n
  27. select FEATURE_SUID
  28. select FEATURE_SYSLOG
  29. help
  30. Crond is a background daemon that parses individual crontab
  31. files and executes commands on behalf of the users in question.
  32. This is a port of dcron from slackware. It uses files of the
  33. format /var/spool/cron/crontabs/<username> files, for example:
  34. $ cat /var/spool/cron/crontabs/root
  35. # Run daily cron jobs at 4:40 every day:
  36. 40 4 * * * /etc/cron/daily > /dev/null 2>&1
  37. Note that Busybox binary must be setuid root for this applet to
  38. work properly.
  39. config DEBUG_CROND_OPTION
  40. bool "Support debug option -d"
  41. depends on CROND
  42. default n
  43. help
  44. Support option -d to enter debug mode.
  45. config FEATURE_CROND_CALL_SENDMAIL
  46. bool "Using /usr/sbin/sendmail?"
  47. default n
  48. depends on CROND
  49. help
  50. Support calling /usr/sbin/sendmail for send cmd outputs.
  51. config CRONTAB
  52. bool "crontab"
  53. default n
  54. select FEATURE_SUID
  55. help
  56. Crontab manipulates the crontab for a particular user. Only
  57. the superuser may specify a different user and/or crontab directory.
  58. config DC
  59. bool "dc"
  60. default n
  61. help
  62. Dc is a reverse-polish desk calculator which supports unlimited
  63. precision arithmetic.
  64. config DEVFSD
  65. bool "devfsd (obsolete)"
  66. default n
  67. select FEATURE_SYSLOG
  68. help
  69. This is deprecated, and will be removed at the end of 2008.
  70. Provides compatibility with old device names on a devfs systems.
  71. You should set it to true if you have devfs enabled.
  72. The following keywords in devsfd.conf are supported:
  73. "CLEAR_CONFIG", "INCLUDE", "OPTIONAL_INCLUDE", "RESTORE",
  74. "PERMISSIONS", "EXECUTE", "COPY", "IGNORE",
  75. "MKOLDCOMPAT", "MKNEWCOMPAT","RMOLDCOMPAT", "RMNEWCOMPAT".
  76. But only if they are written UPPERCASE!!!!!!!!
  77. config DEVFSD_MODLOAD
  78. bool "Adds support for MODLOAD keyword in devsfd.conf"
  79. default n
  80. depends on DEVFSD
  81. help
  82. This actually doesn't work with busybox modutils but needs
  83. the external modutils.
  84. config DEVFSD_FG_NP
  85. bool "Enables the -fg and -np options"
  86. default n
  87. depends on DEVFSD
  88. help
  89. -fg Run the daemon in the foreground.
  90. -np Exit after parsing the configuration file. Do not poll for events.
  91. config DEVFSD_VERBOSE
  92. bool "Increases logging (and size)"
  93. default n
  94. depends on DEVFSD
  95. help
  96. Increases logging to stderr or syslog.
  97. config FEATURE_DEVFS
  98. bool " Use devfs names for all devices (obsolete)"
  99. default n
  100. help
  101. This is obsolete and will be going away at the end of 2008..
  102. This tells busybox to look for names like /dev/loop/0 instead of
  103. /dev/loop0. If your /dev directory has normal names instead of
  104. devfs names, you don't want this.
  105. config EJECT
  106. bool "eject"
  107. default n
  108. help
  109. Used to eject cdroms. (defaults to /dev/cdrom)
  110. config LAST
  111. bool "last"
  112. default n
  113. select FEATURE_WTMP
  114. help
  115. 'last' displays a list of the last users that logged into the system.
  116. config LESS
  117. bool "less"
  118. default n
  119. help
  120. 'less' is a pager, meaning that it displays text files. It possesses
  121. a wide array of features, and is an improvement over 'more'.
  122. config FEATURE_LESS_MAXLINES
  123. int "Max number of input lines less will try to eat"
  124. default 9999999
  125. depends on LESS
  126. config FEATURE_LESS_BRACKETS
  127. bool "Enable bracket searching"
  128. default y
  129. depends on LESS
  130. help
  131. This option adds the capability to search for matching left and right
  132. brackets, facilitating programming.
  133. config FEATURE_LESS_FLAGS
  134. bool "Enable extra flags"
  135. default y
  136. depends on LESS
  137. help
  138. The extra flags provided do the following:
  139. The -M flag enables a more sophisticated status line.
  140. The -m flag enables a simpler status line with a percentage.
  141. config FEATURE_LESS_FLAGCS
  142. bool "Enable flag changes"
  143. default n
  144. depends on LESS
  145. help
  146. This enables the ability to change command-line flags within
  147. less itself.
  148. config FEATURE_LESS_MARKS
  149. bool "Enable marks"
  150. default n
  151. depends on LESS
  152. help
  153. Marks enable positions in a file to be stored for easy reference.
  154. config FEATURE_LESS_REGEXP
  155. bool "Enable regular expressions"
  156. default n
  157. depends on LESS
  158. help
  159. Enable regular expressions, allowing complex file searches.
  160. config HDPARM
  161. bool "hdparm"
  162. default n
  163. help
  164. Get/Set hard drive parameters. Primarily intended for ATA
  165. drives. Adds about 13k (or around 30k if you enable the
  166. FEATURE_HDPARM_GET_IDENTITY option)....
  167. config FEATURE_HDPARM_GET_IDENTITY
  168. bool "Support obtaining detailed information directly from drives"
  169. default y
  170. depends on HDPARM
  171. help
  172. Enables the -I and -i options to obtain detailed information
  173. directly from drives about their capabilities and supported ATA
  174. feature set. If no device name is specified, hdparm will read
  175. identify data from stdin. Enabling this option will add about 16k...
  176. config FEATURE_HDPARM_HDIO_SCAN_HWIF
  177. bool "Register an IDE interface (DANGEROUS)"
  178. default n
  179. depends on HDPARM
  180. help
  181. Enables the 'hdparm -R' option to register an IDE interface.
  182. This is dangerous stuff, so you should probably say N.
  183. config FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
  184. bool "Un-register an IDE interface (DANGEROUS)"
  185. default n
  186. depends on HDPARM
  187. help
  188. Enables the 'hdparm -U' option to un-register an IDE interface.
  189. This is dangerous stuff, so you should probably say N.
  190. config FEATURE_HDPARM_HDIO_DRIVE_RESET
  191. bool "perform device reset (DANGEROUS)"
  192. default n
  193. depends on HDPARM
  194. help
  195. Enables the 'hdparm -w' option to perform a device reset.
  196. This is dangerous stuff, so you should probably say N.
  197. config FEATURE_HDPARM_HDIO_TRISTATE_HWIF
  198. bool "tristate device for hotswap (DANGEROUS)"
  199. default n
  200. depends on HDPARM
  201. help
  202. Enables the 'hdparm -x' option to tristate device for hotswap,
  203. and the '-b' option to get/set bus state. This is dangerous
  204. stuff, so you should probably say N.
  205. config FEATURE_HDPARM_HDIO_GETSET_DMA
  206. bool "get/set using_dma flag (DANGEROUS)"
  207. default n
  208. depends on HDPARM
  209. help
  210. Enables the 'hdparm -d' option to get/set using_dma flag.
  211. This is dangerous stuff, so you should probably say N.
  212. config MAKEDEVS
  213. bool "makedevs"
  214. default n
  215. help
  216. 'makedevs' is a utility used to create a batch of devices with
  217. one command.
  218. .
  219. There are two choices for command line behaviour, the interface
  220. as used by LEAF/Linux Router Project, or a device table file.
  221. .
  222. 'leaf' is traditionally what busybox follows, it allows multiple
  223. devices of a particluar type to be created per command.
  224. e.g. /dev/hda[0-9]
  225. Device properties are passed as command line arguments.
  226. .
  227. 'table' reads device properties from a file or stdin, allowing
  228. a batch of unrelated devices to be made with one command.
  229. User/group names are allowed as an alternative to uid/gid.
  230. choice
  231. prompt "Choose makedevs behaviour"
  232. depends on MAKEDEVS
  233. default FEATURE_MAKEDEVS_TABLE
  234. config FEATURE_MAKEDEVS_LEAF
  235. bool "leaf"
  236. config FEATURE_MAKEDEVS_TABLE
  237. bool "table"
  238. endchoice
  239. config MICROCOM
  240. bool "microcom"
  241. default n
  242. help
  243. The poor man's minicom utility for chatting with serial port devices.
  244. config MOUNTPOINT
  245. bool "mountpoint"
  246. default n
  247. help
  248. mountpoint checks if the directory is a mountpoint.
  249. config MT
  250. bool "mt"
  251. default n
  252. help
  253. mt is used to control tape devices. You can use the mt utility
  254. to advance or rewind a tape past a specified number of archive
  255. files on the tape.
  256. config RAIDAUTORUN
  257. bool "raidautorun"
  258. default n
  259. help
  260. raidautorun tells the kernel md driver to
  261. search and start RAID arrays.
  262. config READAHEAD
  263. bool "readahead"
  264. default n
  265. depends on LFS
  266. help
  267. Preload the files listed on the command line into RAM cache so that
  268. subsequent reads on these files will not block on disk I/O.
  269. This applet just calls the readahead(2) system call on each file.
  270. It is mainly useful in system startup scripts to preload files
  271. or executables before they are used. When used at the right time
  272. (in particular when a CPU boundprocess is running) it can
  273. significantly speed up system startup.
  274. As readahead(2) blocks until each file has been read, it is best to
  275. run this applet as a background job.
  276. config RUNLEVEL
  277. bool "runlevel"
  278. default n
  279. help
  280. find the current and previous system runlevel.
  281. This applet uses utmp but does not rely on busybox supporing
  282. utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc.
  283. config RX
  284. bool "rx"
  285. default n
  286. help
  287. Receive files using the Xmodem protocol.
  288. config STRINGS
  289. bool "strings"
  290. default n
  291. help
  292. strings prints the printable character sequences for each file
  293. specified.
  294. config SETSID
  295. bool "setsid"
  296. default n
  297. help
  298. setsid runs a program in a new session
  299. config TASKSET
  300. bool "taskset"
  301. default n
  302. help
  303. Retrieve or set a processes's CPU affinity.
  304. This requires sched_{g,s}etaffinity support in your libc.
  305. config FEATURE_TASKSET_FANCY
  306. bool "fancy output"
  307. default y
  308. depends on TASKSET
  309. help
  310. Add code for fancy output. This merely silences a compiler-warning
  311. and adds about 135 Bytes. May be needed for machines with alot
  312. of CPUs.
  313. config TIME
  314. bool "time"
  315. default n
  316. help
  317. The time command runs the specified program with the given arguments.
  318. When the command finishes, time writes a message to standard output
  319. giving timing statistics about this program run.
  320. config TTYSIZE
  321. bool "ttysize"
  322. default n
  323. help
  324. A replacement for "stty size". Unlike stty, can report only width,
  325. only height, or both, in any order. It also does not complain on error,
  326. but returns default 80x24. Usage in shell scripts: width=`ttysize w`.
  327. config WATCHDOG
  328. bool "watchdog"
  329. default n
  330. help
  331. The watchdog utility is used with hardware or software watchdog
  332. device drivers. It opens the specified watchdog device special file
  333. and periodically writes a magic character to the device. If the
  334. watchdog applet ever fails to write the magic character within a
  335. certain amount of time, the watchdog device assumes the system has
  336. hung, and will cause the hardware to reboot.
  337. endmenu