Config.in 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  1. # DO NOT EDIT. This file is generated from Config.src
  2. #
  3. # For a description of the syntax of this configuration file,
  4. # see docs/Kconfig-language.txt.
  5. #
  6. comment "Library Tuning"
  7. config BUSYBOX_FEATURE_USE_BSS_TAIL
  8. bool "Use the end of BSS page"
  9. default n
  10. help
  11. Attempt to reclaim a small unused part of BSS.
  12. Executables have the following parts:
  13. = read-only executable code and constants, also known as "text"
  14. = read-write data
  15. = non-initialized (zeroed on demand) data, also known as "bss"
  16. At link time, "text" is padded to a full page. At runtime, all "text"
  17. pages are mapped RO and executable.
  18. "Data" starts on the next page boundary, but is not padded
  19. to a full page at the end. "Bss" starts wherever "data" ends.
  20. At runtime, "data" pages are mapped RW and they are file-backed
  21. (this includes a small portion of "bss" which may live in the last
  22. partial page of "data").
  23. Pages which are fully in "bss" are mapped to anonymous memory.
  24. "Bss" end is usually not page-aligned. There is an unused space
  25. in the last page. Linker marks its start with the "_end" symbol.
  26. This option will attempt to use that space for bb_common_bufsiz1[]
  27. array. If it fits after _end, it will be used, and COMMON_BUFSIZE
  28. will be enlarged from its guaranteed minimum size of 1 kbyte.
  29. This may require recompilation a second time, since value of _end
  30. is known only after final link.
  31. If you are getting a build error like this:
  32. appletlib.c:(.text.main+0xd): undefined reference to '_end'
  33. disable this option.
  34. config BUSYBOX_FLOAT_DURATION
  35. bool "Enable fractional duration arguments"
  36. default y
  37. help
  38. Allow sleep N.NNN, top -d N.NNN etc.
  39. config BUSYBOX_FEATURE_RTMINMAX
  40. bool "Support RTMIN[+n] and RTMAX[-n] signal names"
  41. default y
  42. help
  43. Support RTMIN[+n] and RTMAX[-n] signal names
  44. in kill, killall etc. This costs ~250 bytes.
  45. config BUSYBOX_FEATURE_RTMINMAX_USE_LIBC_DEFINITIONS
  46. bool "Use the definitions of SIGRTMIN/SIGRTMAX provided by libc"
  47. default y
  48. depends on BUSYBOX_FEATURE_RTMINMAX
  49. help
  50. Some C libraries reserve a few real-time signals for internal
  51. use, and adjust the values of SIGRTMIN/SIGRTMAX seen by
  52. applications accordingly. Saying yes here means that a signal
  53. name RTMIN+n will be interpreted according to the libc definition
  54. of SIGRTMIN, and not the raw definition provided by the kernel.
  55. This behavior matches "kill -l RTMIN+n" from bash.
  56. choice
  57. prompt "Buffer allocation policy"
  58. default BUSYBOX_FEATURE_BUFFERS_USE_MALLOC
  59. help
  60. There are 3 ways busybox can handle buffer allocations:
  61. - Use malloc. This costs code size for the call to xmalloc.
  62. - Put them on stack. For some very small machines with limited stack
  63. space, this can be deadly. For most folks, this works just fine.
  64. - Put them in BSS. This works beautifully for computers with a real
  65. MMU (and OS support), but wastes runtime RAM for uCLinux. This
  66. behavior was the only one available for versions 0.48 and earlier.
  67. config BUSYBOX_FEATURE_BUFFERS_USE_MALLOC
  68. bool "Allocate with Malloc"
  69. config BUSYBOX_FEATURE_BUFFERS_GO_ON_STACK
  70. bool "Allocate on the Stack"
  71. config BUSYBOX_FEATURE_BUFFERS_GO_IN_BSS
  72. bool "Allocate in the .bss section"
  73. endchoice
  74. config BUSYBOX_PASSWORD_MINLEN
  75. int "Minimum password length"
  76. default 6
  77. range 5 32
  78. help
  79. Minimum allowable password length.
  80. config BUSYBOX_MD5_SMALL
  81. int "MD5: Trade bytes for speed (0:fast, 3:slow)"
  82. default 1 # all "fast or small" options default to small
  83. range 0 3
  84. help
  85. Trade binary size versus speed for the md5sum algorithm.
  86. Approximate values running uClibc and hashing
  87. linux-2.4.4.tar.bz2 were:
  88. value user times (sec) text size (386)
  89. 0 (fastest) 1.1 6144
  90. 1 1.4 5392
  91. 2 3.0 5088
  92. 3 (smallest) 5.1 4912
  93. config BUSYBOX_SHA3_SMALL
  94. int "SHA3: Trade bytes for speed (0:fast, 1:slow)"
  95. default 1 # all "fast or small" options default to small
  96. range 0 1
  97. help
  98. Trade binary size versus speed for the sha3sum algorithm.
  99. SHA3_SMALL=0 compared to SHA3_SMALL=1 (approximate):
  100. 64-bit x86: +270 bytes of code, 45% faster
  101. 32-bit x86: +450 bytes of code, 75% faster
  102. config BUSYBOX_FEATURE_FAST_TOP
  103. bool "Faster /proc scanning code (+100 bytes)"
  104. default n # all "fast or small" options default to small
  105. help
  106. This option makes top and ps ~20% faster (or 20% less CPU hungry),
  107. but code size is slightly bigger.
  108. config BUSYBOX_FEATURE_ETC_NETWORKS
  109. bool "Support /etc/networks"
  110. default n
  111. help
  112. Enable support for network names in /etc/networks. This is
  113. a rarely used feature which allows you to use names
  114. instead of IP/mask pairs in route command.
  115. config BUSYBOX_FEATURE_ETC_SERVICES
  116. bool "Consult /etc/services even for well-known ports"
  117. default n
  118. help
  119. Look up e.g. "telnet" and "http" in /etc/services file
  120. instead of assuming ports 23 and 80.
  121. This is almost never necessary (everybody uses standard ports),
  122. and it makes sense to avoid reading this file.
  123. If you disable this option, in the cases where port is explicitly
  124. specified as a service name (e.g. "telnet HOST PORTNAME"),
  125. it will still be looked up in /etc/services.
  126. config BUSYBOX_FEATURE_EDITING
  127. bool "Command line editing"
  128. default y
  129. help
  130. Enable line editing (mainly for shell command line).
  131. config BUSYBOX_FEATURE_EDITING_MAX_LEN
  132. int "Maximum length of input"
  133. range 128 8192
  134. default 1024
  135. depends on BUSYBOX_FEATURE_EDITING
  136. help
  137. Line editing code uses on-stack buffers for storage.
  138. You may want to decrease this parameter if your target machine
  139. benefits from smaller stack usage.
  140. config BUSYBOX_FEATURE_EDITING_VI
  141. bool "vi-style line editing commands"
  142. default n
  143. depends on BUSYBOX_FEATURE_EDITING
  144. help
  145. Enable vi-style line editing. In shells, this mode can be
  146. turned on and off with "set -o vi" and "set +o vi".
  147. config BUSYBOX_FEATURE_EDITING_HISTORY
  148. int "History size"
  149. # Don't allow way too big values here, code uses fixed "char *history[N]" struct member
  150. range 0 9999
  151. default 255
  152. depends on BUSYBOX_FEATURE_EDITING
  153. help
  154. Specify command history size (0 - disable).
  155. config BUSYBOX_FEATURE_EDITING_SAVEHISTORY
  156. bool "History saving"
  157. default y
  158. depends on BUSYBOX_FEATURE_EDITING
  159. help
  160. Enable history saving in shells.
  161. config BUSYBOX_FEATURE_EDITING_SAVE_ON_EXIT
  162. bool "Save history on shell exit, not after every command"
  163. default n
  164. depends on BUSYBOX_FEATURE_EDITING_SAVEHISTORY
  165. help
  166. Save history on shell exit, not after every command.
  167. config BUSYBOX_FEATURE_REVERSE_SEARCH
  168. bool "Reverse history search"
  169. default y
  170. depends on BUSYBOX_FEATURE_EDITING
  171. help
  172. Enable readline-like Ctrl-R combination for reverse history search.
  173. Increases code by about 0.5k.
  174. config BUSYBOX_FEATURE_TAB_COMPLETION
  175. bool "Tab completion"
  176. default y
  177. depends on BUSYBOX_FEATURE_EDITING
  178. config BUSYBOX_FEATURE_USERNAME_COMPLETION
  179. bool "Username completion"
  180. default y
  181. depends on BUSYBOX_FEATURE_TAB_COMPLETION
  182. config BUSYBOX_FEATURE_EDITING_FANCY_PROMPT
  183. bool "Fancy shell prompts"
  184. default y
  185. depends on BUSYBOX_FEATURE_EDITING
  186. help
  187. Setting this option allows for prompts to use things like \w and
  188. \$ and escape codes.
  189. config BUSYBOX_FEATURE_EDITING_WINCH
  190. bool "Enable automatic tracking of window size changes"
  191. default y
  192. depends on BUSYBOX_FEATURE_EDITING
  193. config BUSYBOX_FEATURE_EDITING_ASK_TERMINAL
  194. bool "Query cursor position from terminal"
  195. default n
  196. depends on BUSYBOX_FEATURE_EDITING
  197. help
  198. Allow usage of "ESC [ 6 n" sequence. Terminal answers back with
  199. current cursor position. This information is used to make line
  200. editing more robust in some cases.
  201. If you are not sure whether your terminals respond to this code
  202. correctly, or want to save on code size (about 400 bytes),
  203. then do not turn this option on.
  204. config BUSYBOX_LOCALE_SUPPORT
  205. bool "Enable locale support (system needs locale for this to work)"
  206. default n
  207. help
  208. Enable this if your system has locale support and you would like
  209. busybox to support locale settings.
  210. config BUSYBOX_UNICODE_SUPPORT
  211. bool "Support Unicode"
  212. default y
  213. help
  214. This makes various applets aware that one byte is not
  215. one character on screen.
  216. Busybox aims to eventually work correctly with Unicode displays.
  217. Any older encodings are not guaranteed to work.
  218. Probably by the time when busybox will be fully Unicode-clean,
  219. other encodings will be mainly of historic interest.
  220. config BUSYBOX_UNICODE_USING_LOCALE
  221. bool "Use libc routines for Unicode (else uses internal ones)"
  222. default n
  223. depends on BUSYBOX_UNICODE_SUPPORT && BUSYBOX_LOCALE_SUPPORT
  224. help
  225. With this option on, Unicode support is implemented using libc
  226. routines. Otherwise, internal implementation is used.
  227. Internal implementation is smaller.
  228. config BUSYBOX_FEATURE_CHECK_UNICODE_IN_ENV
  229. bool "Check $LC_ALL, $LC_CTYPE and $LANG environment variables"
  230. default n
  231. depends on BUSYBOX_UNICODE_SUPPORT && !BUSYBOX_UNICODE_USING_LOCALE
  232. help
  233. With this option on, Unicode support is activated
  234. only if locale-related variables have the value of the form
  235. "xxxx.utf8"
  236. Otherwise, Unicode support will be always enabled and active.
  237. config BUSYBOX_SUBST_WCHAR
  238. int "Character code to substitute unprintable characters with"
  239. depends on BUSYBOX_UNICODE_SUPPORT
  240. default 63
  241. help
  242. Typical values are 63 for '?' (works with any output device),
  243. 30 for ASCII substitute control code,
  244. 65533 (0xfffd) for Unicode replacement character.
  245. config BUSYBOX_LAST_SUPPORTED_WCHAR
  246. int "Range of supported Unicode characters"
  247. depends on BUSYBOX_UNICODE_SUPPORT
  248. default 767
  249. help
  250. Any character with Unicode value bigger than this is assumed
  251. to be non-printable on output device. Many applets replace
  252. such characters with substitution character.
  253. The idea is that many valid printable Unicode chars
  254. nevertheless are not displayed correctly. Think about
  255. combining charachers, double-wide hieroglyphs, obscure
  256. characters in dozens of ancient scripts...
  257. Many terminals, terminal emulators, xterms etc will fail
  258. to handle them correctly. Choose the smallest value
  259. which suits your needs.
  260. Typical values are:
  261. 126 - ASCII only
  262. 767 (0x2ff) - there are no combining chars in [0..767] range
  263. (the range includes Latin 1, Latin Ext. A and B),
  264. code is ~700 bytes smaller for this case.
  265. 4351 (0x10ff) - there are no double-wide chars in [0..4351] range,
  266. code is ~300 bytes smaller for this case.
  267. 12799 (0x31ff) - nearly all non-ideographic characters are
  268. available in [0..12799] range, including
  269. East Asian scripts like katakana, hiragana, hangul,
  270. bopomofo...
  271. 0 - off, any valid printable Unicode character will be printed.
  272. config BUSYBOX_UNICODE_COMBINING_WCHARS
  273. bool "Allow zero-width Unicode characters on output"
  274. default n
  275. depends on BUSYBOX_UNICODE_SUPPORT
  276. help
  277. With this option off, any Unicode char with width of 0
  278. is substituted on output.
  279. config BUSYBOX_UNICODE_WIDE_WCHARS
  280. bool "Allow wide Unicode characters on output"
  281. default n
  282. depends on BUSYBOX_UNICODE_SUPPORT
  283. help
  284. With this option off, any Unicode char with width > 1
  285. is substituted on output.
  286. config BUSYBOX_UNICODE_BIDI_SUPPORT
  287. bool "Bidirectional character-aware line input"
  288. default n
  289. depends on BUSYBOX_UNICODE_SUPPORT && !BUSYBOX_UNICODE_USING_LOCALE
  290. help
  291. With this option on, right-to-left Unicode characters
  292. are treated differently on input (e.g. cursor movement).
  293. config BUSYBOX_UNICODE_NEUTRAL_TABLE
  294. bool "In bidi input, support non-ASCII neutral chars too"
  295. default n
  296. depends on BUSYBOX_UNICODE_BIDI_SUPPORT
  297. help
  298. In most cases it's enough to treat only ASCII non-letters
  299. (i.e. punctuation, numbers and space) as characters
  300. with neutral directionality.
  301. With this option on, more extensive (and bigger) table
  302. of neutral chars will be used.
  303. config BUSYBOX_UNICODE_PRESERVE_BROKEN
  304. bool "Make it possible to enter sequences of chars which are not Unicode"
  305. default n
  306. depends on BUSYBOX_UNICODE_SUPPORT
  307. help
  308. With this option on, on line-editing input (such as used by shells)
  309. invalid UTF-8 bytes are not substituted with the selected
  310. substitution character.
  311. For example, this means that entering 'l', 's', ' ', 0xff, [Enter]
  312. at shell prompt will list file named 0xff (single char name
  313. with char value 255), not file named '?'.
  314. config BUSYBOX_FEATURE_NON_POSIX_CP
  315. bool "Non-POSIX, but safer, copying to special nodes"
  316. default y
  317. help
  318. With this option, "cp file symlink" will delete symlink
  319. and create a regular file. This does not conform to POSIX,
  320. but prevents a symlink attack.
  321. Similarly, "cp file device" will not send file's data
  322. to the device. (To do that, use "cat file >device")
  323. config BUSYBOX_FEATURE_VERBOSE_CP_MESSAGE
  324. bool "Give more precise messages when copy fails (cp, mv etc)"
  325. default n
  326. help
  327. Error messages with this feature enabled:
  328. $ cp file /does_not_exist/file
  329. cp: cannot create '/does_not_exist/file': Path does not exist
  330. $ cp file /vmlinuz/file
  331. cp: cannot stat '/vmlinuz/file': Path has non-directory component
  332. If this feature is not enabled, they will be, respectively:
  333. cp: cannot create '/does_not_exist/file': No such file or directory
  334. cp: cannot stat '/vmlinuz/file': Not a directory
  335. This will cost you ~60 bytes.
  336. config BUSYBOX_FEATURE_USE_SENDFILE
  337. bool "Use sendfile system call"
  338. default y
  339. help
  340. When enabled, busybox will use the kernel sendfile() function
  341. instead of read/write loops to copy data between file descriptors
  342. (for example, cp command does this a lot).
  343. If sendfile() doesn't work, copying code falls back to read/write
  344. loop. sendfile() was originally implemented for faster I/O
  345. from files to sockets, but since Linux 2.6.33 it was extended
  346. to work for many more file types.
  347. config BUSYBOX_FEATURE_COPYBUF_KB
  348. int "Copy buffer size, in kilobytes"
  349. range 1 1024
  350. default 4
  351. help
  352. Size of buffer used by cp, mv, install, wget etc.
  353. Buffers which are 4 kb or less will be allocated on stack.
  354. Bigger buffers will be allocated with mmap, with fallback to 4 kb
  355. stack buffer if mmap fails.
  356. config BUSYBOX_FEATURE_SKIP_ROOTFS
  357. bool "Skip rootfs in mount table"
  358. default y
  359. help
  360. Ignore rootfs entry in mount table.
  361. In Linux, kernel has a special filesystem, rootfs, which is initially
  362. mounted on /. It contains initramfs data, if kernel is configured
  363. to have one. Usually, another file system is mounted over / early
  364. in boot process, and therefore most tools which manipulate
  365. mount table, such as df, will skip rootfs entry.
  366. However, some systems do not mount anything on /.
  367. If you need to configure busybox for one of these systems,
  368. you may find it useful to turn this option off to make df show
  369. initramfs statistics.
  370. Otherwise, choose Y.
  371. config BUSYBOX_MONOTONIC_SYSCALL
  372. bool "Use clock_gettime(CLOCK_MONOTONIC) syscall"
  373. default y
  374. help
  375. Use clock_gettime(CLOCK_MONOTONIC) syscall for measuring
  376. time intervals (time, ping, traceroute etc need this).
  377. Probably requires Linux 2.6+. If not selected, gettimeofday
  378. will be used instead (which gives wrong results if date/time
  379. is reset).
  380. config BUSYBOX_IOCTL_HEX2STR_ERROR
  381. bool "Use ioctl names rather than hex values in error messages"
  382. default y
  383. help
  384. Use ioctl names rather than hex values in error messages
  385. (e.g. VT_DISALLOCATE rather than 0x5608). If disabled this
  386. saves about 1400 bytes.
  387. config BUSYBOX_FEATURE_HWIB
  388. bool "Support infiniband HW"
  389. default y
  390. help
  391. Support for printing infiniband addresses in network applets.