Config.in 27 KB

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