Config.in 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980
  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 "Coreutils"
  7. config BUSYBOX_CONFIG_BASENAME
  8. bool "basename"
  9. default BUSYBOX_DEFAULT_BASENAME
  10. help
  11. basename is used to strip the directory and suffix from filenames,
  12. leaving just the filename itself. Enable this option if you wish
  13. to enable the 'basename' utility.
  14. config BUSYBOX_CONFIG_CAT
  15. bool "cat"
  16. default BUSYBOX_DEFAULT_CAT
  17. help
  18. cat is used to concatenate files and print them to the standard
  19. output. Enable this option if you wish to enable the 'cat' utility.
  20. config BUSYBOX_CONFIG_DATE
  21. bool "date"
  22. default BUSYBOX_DEFAULT_DATE
  23. help
  24. date is used to set the system date or display the
  25. current time in the given format.
  26. config BUSYBOX_CONFIG_FEATURE_DATE_ISOFMT
  27. bool "Enable ISO date format output (-I)"
  28. default BUSYBOX_DEFAULT_FEATURE_DATE_ISOFMT
  29. depends on BUSYBOX_CONFIG_DATE
  30. help
  31. Enable option (-I) to output an ISO-8601 compliant
  32. date/time string.
  33. # defaults to "no": stat's nanosecond field is a bit non-portable
  34. config BUSYBOX_CONFIG_FEATURE_DATE_NANO
  35. bool "Support %[num]N nanosecond format specifier"
  36. default BUSYBOX_DEFAULT_FEATURE_DATE_NANO
  37. depends on BUSYBOX_CONFIG_DATE # syscall(__NR_clock_gettime)
  38. select BUSYBOX_CONFIG_PLATFORM_LINUX
  39. help
  40. Support %[num]N format specifier. Adds ~250 bytes of code.
  41. config BUSYBOX_CONFIG_FEATURE_DATE_COMPAT
  42. bool "Support weird 'date MMDDhhmm[[YY]YY][.ss]' format"
  43. default BUSYBOX_DEFAULT_FEATURE_DATE_COMPAT
  44. depends on BUSYBOX_CONFIG_DATE
  45. help
  46. System time can be set by 'date -s DATE' and simply 'date DATE',
  47. but formats of DATE string are different. 'date DATE' accepts
  48. a rather weird MMDDhhmm[[YY]YY][.ss] format with completely
  49. unnatural placement of year between minutes and seconds.
  50. date -s (and other commands like touch -d) use more sensible
  51. formats (for one, ISO format YYYY-MM-DD hh:mm:ss.ssssss).
  52. With this option off, 'date DATE' is 'date -s DATE' support
  53. the same format. With it on, 'date DATE' additionally supports
  54. MMDDhhmm[[YY]YY][.ss] format.
  55. config BUSYBOX_CONFIG_DD
  56. bool "dd"
  57. default BUSYBOX_DEFAULT_DD
  58. help
  59. dd copies a file (from standard input to standard output,
  60. by default) using specific input and output blocksizes,
  61. while optionally performing conversions on it.
  62. config BUSYBOX_CONFIG_FEATURE_DD_SIGNAL_HANDLING
  63. bool "Enable signal handling for status reporting"
  64. default BUSYBOX_DEFAULT_FEATURE_DD_SIGNAL_HANDLING
  65. depends on BUSYBOX_CONFIG_DD
  66. help
  67. Sending a SIGUSR1 signal to a running `dd' process makes it
  68. print to standard error the number of records read and written
  69. so far, then to resume copying.
  70. $ dd if=/dev/zero of=/dev/null &
  71. $ pid=$!; kill -USR1 $pid; sleep 1; kill $pid
  72. 10899206+0 records in
  73. 10899206+0 records out
  74. config BUSYBOX_CONFIG_FEATURE_DD_THIRD_STATUS_LINE
  75. bool "Enable the third status line upon signal"
  76. default BUSYBOX_DEFAULT_FEATURE_DD_THIRD_STATUS_LINE
  77. depends on BUSYBOX_CONFIG_DD && BUSYBOX_CONFIG_FEATURE_DD_SIGNAL_HANDLING
  78. help
  79. Displays a coreutils-like third status line with transferred bytes,
  80. elapsed time and speed.
  81. config BUSYBOX_CONFIG_FEATURE_DD_IBS_OBS
  82. bool "Enable ibs, obs and conv options"
  83. default BUSYBOX_DEFAULT_FEATURE_DD_IBS_OBS
  84. depends on BUSYBOX_CONFIG_DD
  85. help
  86. Enables support for writing a certain number of bytes in and out,
  87. at a time, and performing conversions on the data stream.
  88. config BUSYBOX_CONFIG_FEATURE_DD_STATUS
  89. bool "Enable status display options"
  90. default BUSYBOX_DEFAULT_FEATURE_DD_STATUS
  91. depends on BUSYBOX_CONFIG_DD
  92. help
  93. Enables support for status=noxfer/none option.
  94. config BUSYBOX_CONFIG_HOSTID
  95. bool "hostid"
  96. default BUSYBOX_DEFAULT_HOSTID
  97. help
  98. hostid prints the numeric identifier (in hexadecimal) for
  99. the current host.
  100. config BUSYBOX_CONFIG_ID
  101. bool "id"
  102. default BUSYBOX_DEFAULT_ID
  103. help
  104. id displays the current user and group ID names.
  105. config BUSYBOX_CONFIG_GROUPS
  106. bool "groups"
  107. default BUSYBOX_DEFAULT_GROUPS
  108. help
  109. Print the group names associated with current user id.
  110. config BUSYBOX_CONFIG_SHUF
  111. bool "shuf"
  112. default BUSYBOX_DEFAULT_SHUF
  113. help
  114. Generate random permutations
  115. config BUSYBOX_CONFIG_SYNC
  116. bool "sync"
  117. default BUSYBOX_DEFAULT_SYNC
  118. help
  119. sync is used to flush filesystem buffers.
  120. config BUSYBOX_CONFIG_FEATURE_SYNC_FANCY
  121. bool "Enable -d and -f flags (requres syncfs(2) in libc)"
  122. default BUSYBOX_DEFAULT_FEATURE_SYNC_FANCY
  123. depends on BUSYBOX_CONFIG_SYNC
  124. help
  125. sync -d FILE... executes fdatasync() on each FILE.
  126. sync -f FILE... executes syncfs() on each FILE.
  127. config BUSYBOX_CONFIG_TEST
  128. bool "test"
  129. default BUSYBOX_DEFAULT_TEST
  130. help
  131. test is used to check file types and compare values,
  132. returning an appropriate exit code. The bash shell
  133. has test built in, ash can build it in optionally.
  134. config BUSYBOX_CONFIG_FEATURE_TEST_64
  135. bool "Extend test to 64 bit"
  136. default BUSYBOX_DEFAULT_FEATURE_TEST_64
  137. depends on BUSYBOX_CONFIG_TEST || BUSYBOX_CONFIG_ASH_BUILTIN_TEST || BUSYBOX_CONFIG_HUSH
  138. help
  139. Enable 64-bit support in test.
  140. config BUSYBOX_CONFIG_TOUCH
  141. bool "touch"
  142. default BUSYBOX_DEFAULT_TOUCH
  143. help
  144. touch is used to create or change the access and/or
  145. modification timestamp of specified files.
  146. config BUSYBOX_CONFIG_FEATURE_TOUCH_NODEREF
  147. bool "Add support for -h"
  148. default BUSYBOX_DEFAULT_FEATURE_TOUCH_NODEREF
  149. depends on BUSYBOX_CONFIG_TOUCH
  150. help
  151. Enable touch to have the -h option.
  152. This requires libc support for lutimes() function.
  153. config BUSYBOX_CONFIG_FEATURE_TOUCH_SUSV3
  154. bool "Add support for SUSV3 features (-d -t -r)"
  155. default BUSYBOX_DEFAULT_FEATURE_TOUCH_SUSV3
  156. depends on BUSYBOX_CONFIG_TOUCH
  157. help
  158. Enable touch to use a reference file or a given date/time argument.
  159. config BUSYBOX_CONFIG_TR
  160. bool "tr"
  161. default BUSYBOX_DEFAULT_TR
  162. help
  163. tr is used to squeeze, and/or delete characters from standard
  164. input, writing to standard output.
  165. config BUSYBOX_CONFIG_FEATURE_TR_CLASSES
  166. bool "Enable character classes (such as [:upper:])"
  167. default BUSYBOX_DEFAULT_FEATURE_TR_CLASSES
  168. depends on BUSYBOX_CONFIG_TR
  169. help
  170. Enable character classes, enabling commands such as:
  171. tr [:upper:] [:lower:] to convert input into lowercase.
  172. config BUSYBOX_CONFIG_FEATURE_TR_EQUIV
  173. bool "Enable equivalence classes"
  174. default BUSYBOX_DEFAULT_FEATURE_TR_EQUIV
  175. depends on BUSYBOX_CONFIG_TR
  176. help
  177. Enable equivalence classes, which essentially add the enclosed
  178. character to the current set. For instance, tr [=a=] xyz would
  179. replace all instances of 'a' with 'xyz'. This option is mainly
  180. useful for cases when no other way of expressing a character
  181. is possible.
  182. config BUSYBOX_CONFIG_TRUNCATE
  183. bool "truncate"
  184. default BUSYBOX_DEFAULT_TRUNCATE
  185. help
  186. truncate truncates files to a given size. If a file does
  187. not exist, it is created unless told otherwise.
  188. config BUSYBOX_CONFIG_UNLINK
  189. bool "unlink"
  190. default BUSYBOX_DEFAULT_UNLINK
  191. help
  192. unlink deletes a file by calling unlink()
  193. config BUSYBOX_CONFIG_BASE64
  194. bool "base64"
  195. default BUSYBOX_DEFAULT_BASE64
  196. help
  197. Base64 encode and decode
  198. config BUSYBOX_CONFIG_WHO
  199. bool "who"
  200. default BUSYBOX_DEFAULT_WHO
  201. depends on BUSYBOX_CONFIG_FEATURE_UTMP
  202. help
  203. who is used to show who is logged on.
  204. config BUSYBOX_CONFIG_USERS
  205. bool "users"
  206. default BUSYBOX_DEFAULT_USERS
  207. depends on BUSYBOX_CONFIG_FEATURE_UTMP
  208. help
  209. Print users currently logged on.
  210. config BUSYBOX_CONFIG_CAL
  211. bool "cal"
  212. default BUSYBOX_DEFAULT_CAL
  213. help
  214. cal is used to display a monthly calendar.
  215. config BUSYBOX_CONFIG_CATV
  216. bool "catv"
  217. default BUSYBOX_DEFAULT_CATV
  218. help
  219. Display nonprinting characters as escape sequences (like some
  220. implementations' cat -v option).
  221. config BUSYBOX_CONFIG_CHGRP
  222. bool "chgrp"
  223. default BUSYBOX_DEFAULT_CHGRP
  224. help
  225. chgrp is used to change the group ownership of files.
  226. config BUSYBOX_CONFIG_CHMOD
  227. bool "chmod"
  228. default BUSYBOX_DEFAULT_CHMOD
  229. help
  230. chmod is used to change the access permission of files.
  231. config BUSYBOX_CONFIG_CHOWN
  232. bool "chown"
  233. default BUSYBOX_DEFAULT_CHOWN
  234. help
  235. chown is used to change the user and/or group ownership
  236. of files.
  237. config BUSYBOX_CONFIG_FEATURE_CHOWN_LONG_OPTIONS
  238. bool "Enable long options"
  239. default BUSYBOX_DEFAULT_FEATURE_CHOWN_LONG_OPTIONS
  240. depends on BUSYBOX_CONFIG_CHOWN && BUSYBOX_CONFIG_LONG_OPTS
  241. help
  242. Enable use of long options
  243. config BUSYBOX_CONFIG_CHROOT
  244. bool "chroot"
  245. default BUSYBOX_DEFAULT_CHROOT
  246. help
  247. chroot is used to change the root directory and run a command.
  248. The default command is `/bin/sh'.
  249. config BUSYBOX_CONFIG_CKSUM
  250. bool "cksum"
  251. default BUSYBOX_DEFAULT_CKSUM
  252. help
  253. cksum is used to calculate the CRC32 checksum of a file.
  254. config BUSYBOX_CONFIG_COMM
  255. bool "comm"
  256. default BUSYBOX_DEFAULT_COMM
  257. help
  258. comm is used to compare two files line by line and return
  259. a three-column output.
  260. config BUSYBOX_CONFIG_CP
  261. bool "cp"
  262. default BUSYBOX_DEFAULT_CP
  263. help
  264. cp is used to copy files and directories.
  265. config BUSYBOX_CONFIG_FEATURE_CP_LONG_OPTIONS
  266. bool "Enable long options for cp"
  267. default BUSYBOX_DEFAULT_FEATURE_CP_LONG_OPTIONS
  268. depends on BUSYBOX_CONFIG_CP && BUSYBOX_CONFIG_LONG_OPTS
  269. help
  270. Enable long options for cp.
  271. Also add support for --parents option.
  272. config BUSYBOX_CONFIG_CUT
  273. bool "cut"
  274. default BUSYBOX_DEFAULT_CUT
  275. help
  276. cut is used to print selected parts of lines from
  277. each file to stdout.
  278. config BUSYBOX_CONFIG_DF
  279. bool "df"
  280. default BUSYBOX_DEFAULT_DF
  281. help
  282. df reports the amount of disk space used and available
  283. on filesystems.
  284. config BUSYBOX_CONFIG_FEATURE_DF_FANCY
  285. bool "Enable -a, -i, -B"
  286. default BUSYBOX_DEFAULT_FEATURE_DF_FANCY
  287. depends on BUSYBOX_CONFIG_DF
  288. help
  289. This option enables -a, -i and -B.
  290. -a Show all filesystems
  291. -i Inodes
  292. -B <SIZE> Blocksize
  293. config BUSYBOX_CONFIG_DIRNAME
  294. bool "dirname"
  295. default BUSYBOX_DEFAULT_DIRNAME
  296. help
  297. dirname is used to strip a non-directory suffix from
  298. a file name.
  299. config BUSYBOX_CONFIG_DOS2UNIX
  300. bool "dos2unix/unix2dos"
  301. default BUSYBOX_DEFAULT_DOS2UNIX
  302. help
  303. dos2unix is used to convert a text file from DOS format to
  304. UNIX format, and vice versa.
  305. config BUSYBOX_CONFIG_UNIX2DOS
  306. bool
  307. default BUSYBOX_DEFAULT_UNIX2DOS
  308. depends on BUSYBOX_CONFIG_DOS2UNIX
  309. help
  310. unix2dos is used to convert a text file from UNIX format to
  311. DOS format, and vice versa.
  312. config BUSYBOX_CONFIG_DU
  313. bool "du (default blocksize of 512 bytes)"
  314. default BUSYBOX_DEFAULT_DU
  315. help
  316. du is used to report the amount of disk space used
  317. for specified files.
  318. config BUSYBOX_CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
  319. bool "Use a default blocksize of 1024 bytes (1K)"
  320. default BUSYBOX_DEFAULT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
  321. depends on BUSYBOX_CONFIG_DU
  322. help
  323. Use a blocksize of (1K) instead of the default 512b.
  324. config BUSYBOX_CONFIG_ECHO
  325. bool "echo (basic SuSv3 version taking no options)"
  326. default BUSYBOX_DEFAULT_ECHO
  327. help
  328. echo is used to print a specified string to stdout.
  329. # this entry also appears in shell/Config.in, next to the echo builtin
  330. config BUSYBOX_CONFIG_FEATURE_FANCY_ECHO
  331. bool "Enable echo options (-n and -e)"
  332. default BUSYBOX_DEFAULT_FEATURE_FANCY_ECHO
  333. depends on BUSYBOX_CONFIG_ECHO || BUSYBOX_CONFIG_ASH_BUILTIN_ECHO || BUSYBOX_CONFIG_HUSH
  334. help
  335. This adds options (-n and -e) to echo.
  336. config BUSYBOX_CONFIG_ENV
  337. bool "env"
  338. default BUSYBOX_DEFAULT_ENV
  339. help
  340. env is used to set an environment variable and run
  341. a command; without options it displays the current
  342. environment.
  343. config BUSYBOX_CONFIG_FEATURE_ENV_LONG_OPTIONS
  344. bool "Enable long options"
  345. default BUSYBOX_DEFAULT_FEATURE_ENV_LONG_OPTIONS
  346. depends on BUSYBOX_CONFIG_ENV && BUSYBOX_CONFIG_LONG_OPTS
  347. help
  348. Support long options for the env applet.
  349. config BUSYBOX_CONFIG_EXPAND
  350. bool "expand"
  351. default BUSYBOX_DEFAULT_EXPAND
  352. help
  353. By default, convert all tabs to spaces.
  354. config BUSYBOX_CONFIG_FEATURE_EXPAND_LONG_OPTIONS
  355. bool "Enable long options"
  356. default BUSYBOX_DEFAULT_FEATURE_EXPAND_LONG_OPTIONS
  357. depends on BUSYBOX_CONFIG_EXPAND && BUSYBOX_CONFIG_LONG_OPTS
  358. help
  359. Support long options for the expand applet.
  360. config BUSYBOX_CONFIG_EXPR
  361. bool "expr"
  362. default BUSYBOX_DEFAULT_EXPR
  363. help
  364. expr is used to calculate numbers and print the result
  365. to standard output.
  366. config BUSYBOX_CONFIG_EXPR_MATH_SUPPORT_64
  367. bool "Extend Posix numbers support to 64 bit"
  368. default BUSYBOX_DEFAULT_EXPR_MATH_SUPPORT_64
  369. depends on BUSYBOX_CONFIG_EXPR
  370. help
  371. Enable 64-bit math support in the expr applet. This will make
  372. the applet slightly larger, but will allow computation with very
  373. large numbers.
  374. config BUSYBOX_CONFIG_FALSE
  375. bool "false"
  376. default BUSYBOX_DEFAULT_FALSE
  377. help
  378. false returns an exit code of FALSE (1).
  379. config BUSYBOX_CONFIG_FOLD
  380. bool "fold"
  381. default BUSYBOX_DEFAULT_FOLD
  382. help
  383. Wrap text to fit a specific width.
  384. config BUSYBOX_CONFIG_FSYNC
  385. bool "fsync"
  386. default BUSYBOX_DEFAULT_FSYNC
  387. help
  388. fsync is used to flush file-related cached blocks to disk.
  389. config BUSYBOX_CONFIG_HEAD
  390. bool "head"
  391. default BUSYBOX_DEFAULT_HEAD
  392. help
  393. head is used to print the first specified number of lines
  394. from files.
  395. config BUSYBOX_CONFIG_FEATURE_FANCY_HEAD
  396. bool "Enable head options (-c, -q, and -v)"
  397. default BUSYBOX_DEFAULT_FEATURE_FANCY_HEAD
  398. depends on BUSYBOX_CONFIG_HEAD
  399. help
  400. This enables the head options (-c, -q, and -v).
  401. config BUSYBOX_CONFIG_INSTALL
  402. bool "install"
  403. default BUSYBOX_DEFAULT_INSTALL
  404. help
  405. Copy files and set attributes.
  406. config BUSYBOX_CONFIG_FEATURE_INSTALL_LONG_OPTIONS
  407. bool "Enable long options"
  408. default BUSYBOX_DEFAULT_FEATURE_INSTALL_LONG_OPTIONS
  409. depends on BUSYBOX_CONFIG_INSTALL && BUSYBOX_CONFIG_LONG_OPTS
  410. help
  411. Support long options for the install applet.
  412. ####config LENGTH
  413. #### bool "length"
  414. #### default y
  415. #### help
  416. #### length is used to print out the length of a specified string.
  417. config BUSYBOX_CONFIG_LN
  418. bool "ln"
  419. default BUSYBOX_DEFAULT_LN
  420. help
  421. ln is used to create hard or soft links between files.
  422. config BUSYBOX_CONFIG_LOGNAME
  423. bool "logname"
  424. default BUSYBOX_DEFAULT_LOGNAME
  425. help
  426. logname is used to print the current user's login name.
  427. config BUSYBOX_CONFIG_LS
  428. bool "ls"
  429. default BUSYBOX_DEFAULT_LS
  430. help
  431. ls is used to list the contents of directories.
  432. config BUSYBOX_CONFIG_FEATURE_LS_FILETYPES
  433. bool "Enable filetyping options (-p and -F)"
  434. default BUSYBOX_DEFAULT_FEATURE_LS_FILETYPES
  435. depends on BUSYBOX_CONFIG_LS
  436. help
  437. Enable the ls options (-p and -F).
  438. config BUSYBOX_CONFIG_FEATURE_LS_FOLLOWLINKS
  439. bool "Enable symlinks dereferencing (-L)"
  440. default BUSYBOX_DEFAULT_FEATURE_LS_FOLLOWLINKS
  441. depends on BUSYBOX_CONFIG_LS
  442. help
  443. Enable the ls option (-L).
  444. config BUSYBOX_CONFIG_FEATURE_LS_RECURSIVE
  445. bool "Enable recursion (-R)"
  446. default BUSYBOX_DEFAULT_FEATURE_LS_RECURSIVE
  447. depends on BUSYBOX_CONFIG_LS
  448. help
  449. Enable the ls option (-R).
  450. config BUSYBOX_CONFIG_FEATURE_LS_SORTFILES
  451. bool "Sort the file names"
  452. default BUSYBOX_DEFAULT_FEATURE_LS_SORTFILES
  453. depends on BUSYBOX_CONFIG_LS
  454. help
  455. Allow ls to sort file names alphabetically.
  456. config BUSYBOX_CONFIG_FEATURE_LS_TIMESTAMPS
  457. bool "Show file timestamps"
  458. default BUSYBOX_DEFAULT_FEATURE_LS_TIMESTAMPS
  459. depends on BUSYBOX_CONFIG_LS
  460. help
  461. Allow ls to display timestamps for files.
  462. config BUSYBOX_CONFIG_FEATURE_LS_USERNAME
  463. bool "Show username/groupnames"
  464. default BUSYBOX_DEFAULT_FEATURE_LS_USERNAME
  465. depends on BUSYBOX_CONFIG_LS
  466. help
  467. Allow ls to display username/groupname for files.
  468. config BUSYBOX_CONFIG_FEATURE_LS_COLOR
  469. bool "Allow use of color to identify file types"
  470. default BUSYBOX_DEFAULT_FEATURE_LS_COLOR
  471. depends on BUSYBOX_CONFIG_LS && BUSYBOX_CONFIG_LONG_OPTS
  472. help
  473. This enables the --color option to ls.
  474. config BUSYBOX_CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
  475. bool "Produce colored ls output by default"
  476. default BUSYBOX_DEFAULT_FEATURE_LS_COLOR_IS_DEFAULT
  477. depends on BUSYBOX_CONFIG_FEATURE_LS_COLOR
  478. help
  479. Saying yes here will turn coloring on by default,
  480. even if no "--color" option is given to the ls command.
  481. This is not recommended, since the colors are not
  482. configurable, and the output may not be legible on
  483. many output screens.
  484. config BUSYBOX_CONFIG_MD5SUM
  485. bool "md5sum"
  486. default BUSYBOX_DEFAULT_MD5SUM
  487. help
  488. md5sum is used to print or check MD5 checksums.
  489. config BUSYBOX_CONFIG_MKDIR
  490. bool "mkdir"
  491. default BUSYBOX_DEFAULT_MKDIR
  492. help
  493. mkdir is used to create directories with the specified names.
  494. config BUSYBOX_CONFIG_FEATURE_MKDIR_LONG_OPTIONS
  495. bool "Enable long options"
  496. default BUSYBOX_DEFAULT_FEATURE_MKDIR_LONG_OPTIONS
  497. depends on BUSYBOX_CONFIG_MKDIR && BUSYBOX_CONFIG_LONG_OPTS
  498. help
  499. Support long options for the mkdir applet.
  500. config BUSYBOX_CONFIG_MKFIFO
  501. bool "mkfifo"
  502. default BUSYBOX_DEFAULT_MKFIFO
  503. help
  504. mkfifo is used to create FIFOs (named pipes).
  505. The `mknod' program can also create FIFOs.
  506. config BUSYBOX_CONFIG_MKNOD
  507. bool "mknod"
  508. default BUSYBOX_DEFAULT_MKNOD
  509. help
  510. mknod is used to create FIFOs or block/character special
  511. files with the specified names.
  512. config BUSYBOX_CONFIG_MV
  513. bool "mv"
  514. default BUSYBOX_DEFAULT_MV
  515. help
  516. mv is used to move or rename files or directories.
  517. config BUSYBOX_CONFIG_FEATURE_MV_LONG_OPTIONS
  518. bool "Enable long options"
  519. default BUSYBOX_DEFAULT_FEATURE_MV_LONG_OPTIONS
  520. depends on BUSYBOX_CONFIG_MV && BUSYBOX_CONFIG_LONG_OPTS
  521. help
  522. Support long options for the mv applet.
  523. config BUSYBOX_CONFIG_NICE
  524. bool "nice"
  525. default BUSYBOX_DEFAULT_NICE
  526. help
  527. nice runs a program with modified scheduling priority.
  528. config BUSYBOX_CONFIG_NOHUP
  529. bool "nohup"
  530. default BUSYBOX_DEFAULT_NOHUP
  531. help
  532. run a command immune to hangups, with output to a non-tty.
  533. config BUSYBOX_CONFIG_OD
  534. bool "od"
  535. default BUSYBOX_DEFAULT_OD
  536. help
  537. od is used to dump binary files in octal and other formats.
  538. config BUSYBOX_CONFIG_PRINTENV
  539. bool "printenv"
  540. default BUSYBOX_DEFAULT_PRINTENV
  541. help
  542. printenv is used to print all or part of environment.
  543. config BUSYBOX_CONFIG_PRINTF
  544. bool "printf"
  545. default BUSYBOX_DEFAULT_PRINTF
  546. help
  547. printf is used to format and print specified strings.
  548. It's similar to `echo' except it has more options.
  549. config BUSYBOX_CONFIG_PWD
  550. bool "pwd"
  551. default BUSYBOX_DEFAULT_PWD
  552. help
  553. pwd is used to print the current directory.
  554. config BUSYBOX_CONFIG_READLINK
  555. bool "readlink"
  556. default BUSYBOX_DEFAULT_READLINK
  557. help
  558. This program reads a symbolic link and returns the name
  559. of the file it points to
  560. config BUSYBOX_CONFIG_FEATURE_READLINK_FOLLOW
  561. bool "Enable canonicalization by following all symlinks (-f)"
  562. default BUSYBOX_DEFAULT_FEATURE_READLINK_FOLLOW
  563. depends on BUSYBOX_CONFIG_READLINK
  564. help
  565. Enable the readlink option (-f).
  566. config BUSYBOX_CONFIG_REALPATH
  567. bool "realpath"
  568. default BUSYBOX_DEFAULT_REALPATH
  569. help
  570. Return the canonicalized absolute pathname.
  571. This isn't provided by GNU shellutils, but where else does it belong.
  572. config BUSYBOX_CONFIG_RM
  573. bool "rm"
  574. default BUSYBOX_DEFAULT_RM
  575. help
  576. rm is used to remove files or directories.
  577. config BUSYBOX_CONFIG_RMDIR
  578. bool "rmdir"
  579. default BUSYBOX_DEFAULT_RMDIR
  580. help
  581. rmdir is used to remove empty directories.
  582. config BUSYBOX_CONFIG_FEATURE_RMDIR_LONG_OPTIONS
  583. bool "Enable long options"
  584. default BUSYBOX_DEFAULT_FEATURE_RMDIR_LONG_OPTIONS
  585. depends on BUSYBOX_CONFIG_RMDIR && BUSYBOX_CONFIG_LONG_OPTS
  586. help
  587. Support long options for the rmdir applet, including
  588. --ignore-fail-on-non-empty for compatibility with GNU rmdir.
  589. config BUSYBOX_CONFIG_SEQ
  590. bool "seq"
  591. default BUSYBOX_DEFAULT_SEQ
  592. help
  593. print a sequence of numbers
  594. config BUSYBOX_CONFIG_SHA1SUM
  595. bool "sha1sum"
  596. default BUSYBOX_DEFAULT_SHA1SUM
  597. help
  598. Compute and check SHA1 message digest
  599. config BUSYBOX_CONFIG_SHA256SUM
  600. bool "sha256sum"
  601. default BUSYBOX_DEFAULT_SHA256SUM
  602. help
  603. Compute and check SHA256 message digest
  604. config BUSYBOX_CONFIG_SHA512SUM
  605. bool "sha512sum"
  606. default BUSYBOX_DEFAULT_SHA512SUM
  607. help
  608. Compute and check SHA512 message digest
  609. config BUSYBOX_CONFIG_SHA3SUM
  610. bool "sha3sum"
  611. default BUSYBOX_DEFAULT_SHA3SUM
  612. help
  613. Compute and check SHA3 (512-bit) message digest
  614. config BUSYBOX_CONFIG_SLEEP
  615. bool "sleep"
  616. default BUSYBOX_DEFAULT_SLEEP
  617. help
  618. sleep is used to pause for a specified number of seconds.
  619. It comes in 3 versions:
  620. - small: takes one integer parameter
  621. - fancy: takes multiple integer arguments with suffixes:
  622. sleep 1d 2h 3m 15s
  623. - fancy with fractional numbers:
  624. sleep 2.3s 4.5h sleeps for 16202.3 seconds
  625. Last one is "the most compatible" with coreutils sleep,
  626. but it adds around 1k of code.
  627. config BUSYBOX_CONFIG_FEATURE_FANCY_SLEEP
  628. bool "Enable multiple arguments and s/m/h/d suffixes"
  629. default BUSYBOX_DEFAULT_FEATURE_FANCY_SLEEP
  630. depends on BUSYBOX_CONFIG_SLEEP
  631. help
  632. Allow sleep to pause for specified minutes, hours, and days.
  633. config BUSYBOX_CONFIG_FEATURE_FLOAT_SLEEP
  634. bool "Enable fractional arguments"
  635. default BUSYBOX_DEFAULT_FEATURE_FLOAT_SLEEP
  636. depends on BUSYBOX_CONFIG_FEATURE_FANCY_SLEEP
  637. help
  638. Allow for fractional numeric parameters.
  639. config BUSYBOX_CONFIG_SORT
  640. bool "sort"
  641. default BUSYBOX_DEFAULT_SORT
  642. help
  643. sort is used to sort lines of text in specified files.
  644. config BUSYBOX_CONFIG_FEATURE_SORT_BIG
  645. bool "Full SuSv3 compliant sort (support -ktcsbdfiozgM)"
  646. default BUSYBOX_DEFAULT_FEATURE_SORT_BIG
  647. depends on BUSYBOX_CONFIG_SORT
  648. help
  649. Without this, sort only supports -r, -u, and an integer version
  650. of -n. Selecting this adds sort keys, floating point support, and
  651. more. This adds a little over 3k to a nonstatic build on x86.
  652. The SuSv3 sort standard is available at:
  653. http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
  654. config BUSYBOX_CONFIG_SPLIT
  655. bool "split"
  656. default BUSYBOX_DEFAULT_SPLIT
  657. help
  658. split a file into pieces.
  659. config BUSYBOX_CONFIG_FEATURE_SPLIT_FANCY
  660. bool "Fancy extensions"
  661. default BUSYBOX_DEFAULT_FEATURE_SPLIT_FANCY
  662. depends on BUSYBOX_CONFIG_SPLIT
  663. help
  664. Add support for features not required by SUSv3.
  665. Supports additional suffixes 'b' for 512 bytes,
  666. 'g' for 1GiB for the -b option.
  667. config BUSYBOX_CONFIG_STAT
  668. bool "stat"
  669. default BUSYBOX_DEFAULT_STAT
  670. select BUSYBOX_CONFIG_PLATFORM_LINUX # statfs()
  671. help
  672. display file or filesystem status.
  673. config BUSYBOX_CONFIG_FEATURE_STAT_FORMAT
  674. bool "Enable custom formats (-c)"
  675. default BUSYBOX_DEFAULT_FEATURE_STAT_FORMAT
  676. depends on BUSYBOX_CONFIG_STAT
  677. help
  678. Without this, stat will not support the '-c format' option where
  679. users can pass a custom format string for output. This adds about
  680. 7k to a nonstatic build on amd64.
  681. config BUSYBOX_CONFIG_STTY
  682. bool "stty"
  683. default BUSYBOX_DEFAULT_STTY
  684. help
  685. stty is used to change and print terminal line settings.
  686. config BUSYBOX_CONFIG_SUM
  687. bool "sum"
  688. default BUSYBOX_DEFAULT_SUM
  689. help
  690. checksum and count the blocks in a file
  691. config BUSYBOX_CONFIG_TAC
  692. bool "tac"
  693. default BUSYBOX_DEFAULT_TAC
  694. help
  695. tac is used to concatenate and print files in reverse.
  696. config BUSYBOX_CONFIG_TAIL
  697. bool "tail"
  698. default BUSYBOX_DEFAULT_TAIL
  699. help
  700. tail is used to print the last specified number of lines
  701. from files.
  702. config BUSYBOX_CONFIG_FEATURE_FANCY_TAIL
  703. bool "Enable extra tail options (-q, -s, -v, and -F)"
  704. default BUSYBOX_DEFAULT_FEATURE_FANCY_TAIL
  705. depends on BUSYBOX_CONFIG_TAIL
  706. help
  707. The options (-q, -s, -v and -F) are provided by GNU tail, but
  708. are not specific in the SUSv3 standard.
  709. -q Never output headers giving file names
  710. -s SEC Wait SEC seconds between reads with -f
  711. -v Always output headers giving file names
  712. -F Same as -f, but keep retrying
  713. config BUSYBOX_CONFIG_TEE
  714. bool "tee"
  715. default BUSYBOX_DEFAULT_TEE
  716. help
  717. tee is used to read from standard input and write
  718. to standard output and files.
  719. config BUSYBOX_CONFIG_FEATURE_TEE_USE_BLOCK_IO
  720. bool "Enable block I/O (larger/faster) instead of byte I/O"
  721. default BUSYBOX_DEFAULT_FEATURE_TEE_USE_BLOCK_IO
  722. depends on BUSYBOX_CONFIG_TEE
  723. help
  724. Enable this option for a faster tee, at expense of size.
  725. config BUSYBOX_CONFIG_TRUE
  726. bool "true"
  727. default BUSYBOX_DEFAULT_TRUE
  728. help
  729. true returns an exit code of TRUE (0).
  730. config BUSYBOX_CONFIG_TTY
  731. bool "tty"
  732. default BUSYBOX_DEFAULT_TTY
  733. help
  734. tty is used to print the name of the current terminal to
  735. standard output.
  736. config BUSYBOX_CONFIG_UNAME
  737. bool "uname"
  738. default BUSYBOX_DEFAULT_UNAME
  739. help
  740. uname is used to print system information.
  741. config BUSYBOX_CONFIG_UNAME_OSNAME
  742. string "Operating system name"
  743. default BUSYBOX_DEFAULT_UNAME_OSNAME
  744. depends on BUSYBOX_CONFIG_UNAME
  745. help
  746. Sets the operating system name reported by uname -o. The
  747. default BUSYBOX_DEFAULT_UNAME_OSNAME "GNU/Linux".
  748. config BUSYBOX_CONFIG_UNEXPAND
  749. bool "unexpand"
  750. default BUSYBOX_DEFAULT_UNEXPAND
  751. help
  752. By default, convert only leading sequences of blanks to tabs.
  753. config BUSYBOX_CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS
  754. bool "Enable long options"
  755. default BUSYBOX_DEFAULT_FEATURE_UNEXPAND_LONG_OPTIONS
  756. depends on BUSYBOX_CONFIG_UNEXPAND && BUSYBOX_CONFIG_LONG_OPTS
  757. help
  758. Support long options for the unexpand applet.
  759. config BUSYBOX_CONFIG_UNIQ
  760. bool "uniq"
  761. default BUSYBOX_DEFAULT_UNIQ
  762. help
  763. uniq is used to remove duplicate lines from a sorted file.
  764. config BUSYBOX_CONFIG_USLEEP
  765. bool "usleep"
  766. default BUSYBOX_DEFAULT_USLEEP
  767. help
  768. usleep is used to pause for a specified number of microseconds.
  769. config BUSYBOX_CONFIG_UUDECODE
  770. bool "uudecode"
  771. default BUSYBOX_DEFAULT_UUDECODE
  772. help
  773. uudecode is used to decode a uuencoded file.
  774. config BUSYBOX_CONFIG_UUENCODE
  775. bool "uuencode"
  776. default BUSYBOX_DEFAULT_UUENCODE
  777. help
  778. uuencode is used to uuencode a file.
  779. config BUSYBOX_CONFIG_WC
  780. bool "wc"
  781. default BUSYBOX_DEFAULT_WC
  782. help
  783. wc is used to print the number of bytes, words, and lines,
  784. in specified files.
  785. config BUSYBOX_CONFIG_FEATURE_WC_LARGE
  786. bool "Support very large files in wc"
  787. default BUSYBOX_DEFAULT_FEATURE_WC_LARGE
  788. depends on BUSYBOX_CONFIG_WC
  789. help
  790. Use "unsigned long long" in wc for counter variables.
  791. config BUSYBOX_CONFIG_WHOAMI
  792. bool "whoami"
  793. default BUSYBOX_DEFAULT_WHOAMI
  794. help
  795. whoami is used to print the username of the current
  796. user id (same as id -un).
  797. config BUSYBOX_CONFIG_YES
  798. bool "yes"
  799. default BUSYBOX_DEFAULT_YES
  800. help
  801. yes is used to repeatedly output a specific string, or
  802. the default string `y'.
  803. comment "Common options"
  804. config BUSYBOX_CONFIG_FEATURE_VERBOSE
  805. bool "Support verbose options (usually -v) for various applets"
  806. default BUSYBOX_DEFAULT_FEATURE_VERBOSE
  807. help
  808. Enable cp -v, rm -v and similar messages.
  809. Also enables long option (--verbose) if it exists.
  810. Without this option, -v is accepted but ignored.
  811. comment "Common options for cp and mv"
  812. depends on BUSYBOX_CONFIG_CP || BUSYBOX_CONFIG_MV
  813. config BUSYBOX_CONFIG_FEATURE_PRESERVE_HARDLINKS
  814. bool "Preserve hard links"
  815. default BUSYBOX_DEFAULT_FEATURE_PRESERVE_HARDLINKS
  816. depends on BUSYBOX_CONFIG_CP || BUSYBOX_CONFIG_MV
  817. help
  818. Allow cp and mv to preserve hard links.
  819. comment "Common options for ls, more and telnet"
  820. depends on BUSYBOX_CONFIG_LS || BUSYBOX_CONFIG_MORE || BUSYBOX_CONFIG_TELNET
  821. config BUSYBOX_CONFIG_FEATURE_AUTOWIDTH
  822. bool "Calculate terminal & column widths"
  823. default BUSYBOX_DEFAULT_FEATURE_AUTOWIDTH
  824. depends on BUSYBOX_CONFIG_LS || BUSYBOX_CONFIG_MORE || BUSYBOX_CONFIG_TELNET
  825. help
  826. This option allows utilities such as 'ls', 'more' and 'telnet'
  827. to determine the width of the screen, which can allow them to
  828. display additional text or avoid wrapping text onto the next line.
  829. If you leave this disabled, your utilities will be especially
  830. primitive and will be unable to determine the current screen width.
  831. comment "Common options for df, du, ls"
  832. depends on BUSYBOX_CONFIG_DF || BUSYBOX_CONFIG_DU || BUSYBOX_CONFIG_LS
  833. config BUSYBOX_CONFIG_FEATURE_HUMAN_READABLE
  834. bool "Support for human readable output (example 13k, 23M, 235G)"
  835. default BUSYBOX_DEFAULT_FEATURE_HUMAN_READABLE
  836. depends on BUSYBOX_CONFIG_DF || BUSYBOX_CONFIG_DU || BUSYBOX_CONFIG_LS
  837. help
  838. Allow df, du, and ls to have human readable output.
  839. comment "Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum"
  840. depends on BUSYBOX_CONFIG_MD5SUM || BUSYBOX_CONFIG_SHA1SUM || BUSYBOX_CONFIG_SHA256SUM || BUSYBOX_CONFIG_SHA512SUM || BUSYBOX_CONFIG_SHA3SUM
  841. config BUSYBOX_CONFIG_FEATURE_MD5_SHA1_SUM_CHECK
  842. bool "Enable -c, -s and -w options"
  843. default BUSYBOX_DEFAULT_FEATURE_MD5_SHA1_SUM_CHECK
  844. depends on BUSYBOX_CONFIG_MD5SUM || BUSYBOX_CONFIG_SHA1SUM || BUSYBOX_CONFIG_SHA256SUM || BUSYBOX_CONFIG_SHA512SUM || BUSYBOX_CONFIG_SHA3SUM
  845. help
  846. Enabling the -c options allows files to be checked
  847. against pre-calculated hash values.
  848. -s and -w are useful options when verifying checksums.
  849. endmenu