Config.in 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927
  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_BASENAME
  8. bool "basename"
  9. default y
  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_CAT
  15. bool "cat"
  16. default y
  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_DATE
  21. bool "date"
  22. default y
  23. help
  24. date is used to set the system date or display the
  25. current time in the given format.
  26. config BUSYBOX_FEATURE_DATE_ISOFMT
  27. bool "Enable ISO date format output (-I)"
  28. default y
  29. depends on BUSYBOX_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_FEATURE_DATE_NANO
  35. bool "Support %[num]N nanosecond format specifier"
  36. default n
  37. depends on BUSYBOX_DATE # syscall(__NR_clock_gettime)
  38. select BUSYBOX_PLATFORM_LINUX
  39. help
  40. Support %[num]N format specifier. Adds ~250 bytes of code.
  41. config BUSYBOX_FEATURE_DATE_COMPAT
  42. bool "Support weird 'date MMDDhhmm[[YY]YY][.ss]' format"
  43. default y
  44. depends on BUSYBOX_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_HOSTID
  56. bool "hostid"
  57. default y
  58. help
  59. hostid prints the numeric identifier (in hexadecimal) for
  60. the current host.
  61. config BUSYBOX_ID
  62. bool "id"
  63. default y
  64. help
  65. id displays the current user and group ID names.
  66. config BUSYBOX_GROUPS
  67. bool "groups"
  68. default y
  69. help
  70. Print the group names associated with current user id.
  71. config BUSYBOX_TEST
  72. bool "test"
  73. default y
  74. help
  75. test is used to check file types and compare values,
  76. returning an appropriate exit code. The bash shell
  77. has test built in, ash can build it in optionally.
  78. config BUSYBOX_FEATURE_TEST_64
  79. bool "Extend test to 64 bit"
  80. default y
  81. depends on BUSYBOX_TEST || BUSYBOX_ASH_BUILTIN_TEST || BUSYBOX_HUSH
  82. help
  83. Enable 64-bit support in test.
  84. config BUSYBOX_TOUCH
  85. bool "touch"
  86. default y
  87. help
  88. touch is used to create or change the access and/or
  89. modification timestamp of specified files.
  90. config BUSYBOX_FEATURE_TOUCH_SUSV3
  91. bool "Add support for SUSV3 features (-d -t -r)"
  92. default y
  93. depends on BUSYBOX_TOUCH
  94. help
  95. Enable touch to use a reference file or a given date/time argument.
  96. config BUSYBOX_TR
  97. bool "tr"
  98. default y
  99. help
  100. tr is used to squeeze, and/or delete characters from standard
  101. input, writing to standard output.
  102. config BUSYBOX_FEATURE_TR_CLASSES
  103. bool "Enable character classes (such as [:upper:])"
  104. default y
  105. depends on BUSYBOX_TR
  106. help
  107. Enable character classes, enabling commands such as:
  108. tr [:upper:] [:lower:] to convert input into lowercase.
  109. config BUSYBOX_FEATURE_TR_EQUIV
  110. bool "Enable equivalence classes"
  111. default y
  112. depends on BUSYBOX_TR
  113. help
  114. Enable equivalence classes, which essentially add the enclosed
  115. character to the current set. For instance, tr [=a=] xyz would
  116. replace all instances of 'a' with 'xyz'. This option is mainly
  117. useful for cases when no other way of expressing a character
  118. is possible.
  119. config BUSYBOX_BASE64
  120. bool "base64"
  121. default y
  122. help
  123. Base64 encode and decode
  124. config BUSYBOX_WHO
  125. bool "who"
  126. default y
  127. depends on BUSYBOX_FEATURE_UTMP
  128. help
  129. who is used to show who is logged on.
  130. config BUSYBOX_USERS
  131. bool "users"
  132. default y
  133. depends on BUSYBOX_FEATURE_UTMP
  134. help
  135. Print users currently logged on.
  136. config BUSYBOX_CAL
  137. bool "cal"
  138. default y
  139. help
  140. cal is used to display a monthly calender.
  141. config BUSYBOX_CATV
  142. bool "catv"
  143. default y
  144. help
  145. Display nonprinting characters as escape sequences (like some
  146. implementations' cat -v option).
  147. config BUSYBOX_CHGRP
  148. bool "chgrp"
  149. default y
  150. help
  151. chgrp is used to change the group ownership of files.
  152. config BUSYBOX_CHMOD
  153. bool "chmod"
  154. default y
  155. help
  156. chmod is used to change the access permission of files.
  157. config BUSYBOX_CHOWN
  158. bool "chown"
  159. default y
  160. help
  161. chown is used to change the user and/or group ownership
  162. of files.
  163. config BUSYBOX_FEATURE_CHOWN_LONG_OPTIONS
  164. bool "Enable long options"
  165. default y
  166. depends on BUSYBOX_CHOWN && BUSYBOX_LONG_OPTS
  167. help
  168. Enable use of long options
  169. config BUSYBOX_CHROOT
  170. bool "chroot"
  171. default y
  172. help
  173. chroot is used to change the root directory and run a command.
  174. The default command is `/bin/sh'.
  175. config BUSYBOX_CKSUM
  176. bool "cksum"
  177. default y
  178. help
  179. cksum is used to calculate the CRC32 checksum of a file.
  180. config BUSYBOX_COMM
  181. bool "comm"
  182. default y
  183. help
  184. comm is used to compare two files line by line and return
  185. a three-column output.
  186. config BUSYBOX_CP
  187. bool "cp"
  188. default y
  189. help
  190. cp is used to copy files and directories.
  191. config BUSYBOX_FEATURE_CP_LONG_OPTIONS
  192. bool "Enable long options for cp"
  193. default y
  194. depends on BUSYBOX_CP && BUSYBOX_LONG_OPTS
  195. help
  196. Enable long options for cp.
  197. Also add support for --parents option.
  198. config BUSYBOX_CUT
  199. bool "cut"
  200. default y
  201. help
  202. cut is used to print selected parts of lines from
  203. each file to stdout.
  204. config BUSYBOX_DD
  205. bool "dd"
  206. default y
  207. help
  208. dd copies a file (from standard input to standard output,
  209. by default) using specific input and output blocksizes,
  210. while optionally performing conversions on it.
  211. config BUSYBOX_FEATURE_DD_SIGNAL_HANDLING
  212. bool "Enable DD signal handling for status reporting"
  213. default y
  214. depends on BUSYBOX_DD
  215. help
  216. Sending a SIGUSR1 signal to a running `dd' process makes it
  217. print to standard error the number of records read and written
  218. so far, then to resume copying.
  219. $ dd if=/dev/zero of=/dev/null&
  220. $ pid=$! kill -USR1 $pid; sleep 1; kill $pid
  221. 10899206+0 records in
  222. 10899206+0 records out
  223. config BUSYBOX_FEATURE_DD_THIRD_STATUS_LINE
  224. bool "Enable the third status line upon signal"
  225. default y
  226. depends on BUSYBOX_DD && BUSYBOX_FEATURE_DD_SIGNAL_HANDLING
  227. help
  228. Displays a coreutils-like third status line with transferred bytes,
  229. elapsed time and speed.
  230. config BUSYBOX_FEATURE_DD_IBS_OBS
  231. bool "Enable ibs, obs and conv options"
  232. default y
  233. depends on BUSYBOX_DD
  234. help
  235. Enables support for writing a certain number of bytes in and out,
  236. at a time, and performing conversions on the data stream.
  237. config BUSYBOX_DF
  238. bool "df"
  239. default y
  240. help
  241. df reports the amount of disk space used and available
  242. on filesystems.
  243. config BUSYBOX_FEATURE_DF_FANCY
  244. bool "Enable -a, -i, -B"
  245. default y
  246. depends on BUSYBOX_DF
  247. help
  248. This option enables -a, -i and -B.
  249. -a Show all filesystems
  250. -i Inodes
  251. -B <SIZE> Blocksize
  252. config BUSYBOX_DIRNAME
  253. bool "dirname"
  254. default y
  255. help
  256. dirname is used to strip a non-directory suffix from
  257. a file name.
  258. config BUSYBOX_DOS2UNIX
  259. bool "dos2unix/unix2dos"
  260. default y
  261. help
  262. dos2unix is used to convert a text file from DOS format to
  263. UNIX format, and vice versa.
  264. config BUSYBOX_UNIX2DOS
  265. bool
  266. default y
  267. depends on BUSYBOX_DOS2UNIX
  268. help
  269. unix2dos is used to convert a text file from UNIX format to
  270. DOS format, and vice versa.
  271. config BUSYBOX_DU
  272. bool "du (default blocksize of 512 bytes)"
  273. default y
  274. help
  275. du is used to report the amount of disk space used
  276. for specified files.
  277. config BUSYBOX_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
  278. bool "Use a default blocksize of 1024 bytes (1K)"
  279. default y
  280. depends on BUSYBOX_DU
  281. help
  282. Use a blocksize of (1K) instead of the default 512b.
  283. config BUSYBOX_ECHO
  284. bool "echo (basic SuSv3 version taking no options)"
  285. default y
  286. help
  287. echo is used to print a specified string to stdout.
  288. # this entry also appears in shell/Config.in, next to the echo builtin
  289. config BUSYBOX_FEATURE_FANCY_ECHO
  290. bool "Enable echo options (-n and -e)"
  291. default y
  292. depends on BUSYBOX_ECHO || BUSYBOX_ASH_BUILTIN_ECHO || BUSYBOX_HUSH
  293. help
  294. This adds options (-n and -e) to echo.
  295. config BUSYBOX_ENV
  296. bool "env"
  297. default y
  298. help
  299. env is used to set an environment variable and run
  300. a command; without options it displays the current
  301. environment.
  302. config BUSYBOX_FEATURE_ENV_LONG_OPTIONS
  303. bool "Enable long options"
  304. default y
  305. depends on BUSYBOX_ENV && BUSYBOX_LONG_OPTS
  306. help
  307. Support long options for the env applet.
  308. config BUSYBOX_EXPAND
  309. bool "expand"
  310. default y
  311. help
  312. By default, convert all tabs to spaces.
  313. config BUSYBOX_FEATURE_EXPAND_LONG_OPTIONS
  314. bool "Enable long options"
  315. default y
  316. depends on BUSYBOX_EXPAND && BUSYBOX_LONG_OPTS
  317. help
  318. Support long options for the expand applet.
  319. config BUSYBOX_EXPR
  320. bool "expr"
  321. default y
  322. help
  323. expr is used to calculate numbers and print the result
  324. to standard output.
  325. config BUSYBOX_EXPR_MATH_SUPPORT_64
  326. bool "Extend Posix numbers support to 64 bit"
  327. default y
  328. depends on BUSYBOX_EXPR
  329. help
  330. Enable 64-bit math support in the expr applet. This will make
  331. the applet slightly larger, but will allow computation with very
  332. large numbers.
  333. config BUSYBOX_FALSE
  334. bool "false"
  335. default y
  336. help
  337. false returns an exit code of FALSE (1).
  338. config BUSYBOX_FOLD
  339. bool "fold"
  340. default y
  341. help
  342. Wrap text to fit a specific width.
  343. config BUSYBOX_FSYNC
  344. bool "fsync"
  345. default y
  346. help
  347. fsync is used to flush file-related cached blocks to disk.
  348. config BUSYBOX_HEAD
  349. bool "head"
  350. default y
  351. help
  352. head is used to print the first specified number of lines
  353. from files.
  354. config BUSYBOX_FEATURE_FANCY_HEAD
  355. bool "Enable head options (-c, -q, and -v)"
  356. default y
  357. depends on BUSYBOX_HEAD
  358. help
  359. This enables the head options (-c, -q, and -v).
  360. config BUSYBOX_INSTALL
  361. bool "install"
  362. default y
  363. help
  364. Copy files and set attributes.
  365. config BUSYBOX_FEATURE_INSTALL_LONG_OPTIONS
  366. bool "Enable long options"
  367. default y
  368. depends on BUSYBOX_INSTALL && BUSYBOX_LONG_OPTS
  369. help
  370. Support long options for the install applet.
  371. ####config LENGTH
  372. #### bool "length"
  373. #### default y
  374. #### help
  375. #### length is used to print out the length of a specified string.
  376. config BUSYBOX_LN
  377. bool "ln"
  378. default y
  379. help
  380. ln is used to create hard or soft links between files.
  381. config BUSYBOX_LOGNAME
  382. bool "logname"
  383. default y
  384. help
  385. logname is used to print the current user's login name.
  386. config BUSYBOX_LS
  387. bool "ls"
  388. default y
  389. help
  390. ls is used to list the contents of directories.
  391. config BUSYBOX_FEATURE_LS_FILETYPES
  392. bool "Enable filetyping options (-p and -F)"
  393. default y
  394. depends on BUSYBOX_LS
  395. help
  396. Enable the ls options (-p and -F).
  397. config BUSYBOX_FEATURE_LS_FOLLOWLINKS
  398. bool "Enable symlinks dereferencing (-L)"
  399. default y
  400. depends on BUSYBOX_LS
  401. help
  402. Enable the ls option (-L).
  403. config BUSYBOX_FEATURE_LS_RECURSIVE
  404. bool "Enable recursion (-R)"
  405. default y
  406. depends on BUSYBOX_LS
  407. help
  408. Enable the ls option (-R).
  409. config BUSYBOX_FEATURE_LS_SORTFILES
  410. bool "Sort the file names"
  411. default y
  412. depends on BUSYBOX_LS
  413. help
  414. Allow ls to sort file names alphabetically.
  415. config BUSYBOX_FEATURE_LS_TIMESTAMPS
  416. bool "Show file timestamps"
  417. default y
  418. depends on BUSYBOX_LS
  419. help
  420. Allow ls to display timestamps for files.
  421. config BUSYBOX_FEATURE_LS_USERNAME
  422. bool "Show username/groupnames"
  423. default y
  424. depends on BUSYBOX_LS
  425. help
  426. Allow ls to display username/groupname for files.
  427. config BUSYBOX_FEATURE_LS_COLOR
  428. bool "Allow use of color to identify file types"
  429. default y
  430. depends on BUSYBOX_LS && BUSYBOX_LONG_OPTS
  431. help
  432. This enables the --color option to ls.
  433. config BUSYBOX_FEATURE_LS_COLOR_IS_DEFAULT
  434. bool "Produce colored ls output by default"
  435. default y
  436. depends on BUSYBOX_FEATURE_LS_COLOR
  437. help
  438. Saying yes here will turn coloring on by default,
  439. even if no "--color" option is given to the ls command.
  440. This is not recommended, since the colors are not
  441. configurable, and the output may not be legible on
  442. many output screens.
  443. config BUSYBOX_MD5SUM
  444. bool "md5sum"
  445. default y
  446. help
  447. md5sum is used to print or check MD5 checksums.
  448. config BUSYBOX_MKDIR
  449. bool "mkdir"
  450. default y
  451. help
  452. mkdir is used to create directories with the specified names.
  453. config BUSYBOX_FEATURE_MKDIR_LONG_OPTIONS
  454. bool "Enable long options"
  455. default y
  456. depends on BUSYBOX_MKDIR && BUSYBOX_LONG_OPTS
  457. help
  458. Support long options for the mkdir applet.
  459. config BUSYBOX_MKFIFO
  460. bool "mkfifo"
  461. default y
  462. help
  463. mkfifo is used to create FIFOs (named pipes).
  464. The `mknod' program can also create FIFOs.
  465. config BUSYBOX_MKNOD
  466. bool "mknod"
  467. default y
  468. help
  469. mknod is used to create FIFOs or block/character special
  470. files with the specified names.
  471. config BUSYBOX_MV
  472. bool "mv"
  473. default y
  474. help
  475. mv is used to move or rename files or directories.
  476. config BUSYBOX_FEATURE_MV_LONG_OPTIONS
  477. bool "Enable long options"
  478. default y
  479. depends on BUSYBOX_MV && BUSYBOX_LONG_OPTS
  480. help
  481. Support long options for the mv applet.
  482. config BUSYBOX_NICE
  483. bool "nice"
  484. default y
  485. help
  486. nice runs a program with modified scheduling priority.
  487. config BUSYBOX_NOHUP
  488. bool "nohup"
  489. default y
  490. help
  491. run a command immune to hangups, with output to a non-tty.
  492. config BUSYBOX_OD
  493. bool "od"
  494. default y
  495. help
  496. od is used to dump binary files in octal and other formats.
  497. config BUSYBOX_PRINTENV
  498. bool "printenv"
  499. default y
  500. help
  501. printenv is used to print all or part of environment.
  502. config BUSYBOX_PRINTF
  503. bool "printf"
  504. default y
  505. help
  506. printf is used to format and print specified strings.
  507. It's similar to `echo' except it has more options.
  508. config BUSYBOX_PWD
  509. bool "pwd"
  510. default y
  511. help
  512. pwd is used to print the current directory.
  513. config BUSYBOX_READLINK
  514. bool "readlink"
  515. default y
  516. help
  517. This program reads a symbolic link and returns the name
  518. of the file it points to
  519. config BUSYBOX_FEATURE_READLINK_FOLLOW
  520. bool "Enable canonicalization by following all symlinks (-f)"
  521. default y
  522. depends on BUSYBOX_READLINK
  523. help
  524. Enable the readlink option (-f).
  525. config BUSYBOX_REALPATH
  526. bool "realpath"
  527. default y
  528. help
  529. Return the canonicalized absolute pathname.
  530. This isn't provided by GNU shellutils, but where else does it belong.
  531. config BUSYBOX_RM
  532. bool "rm"
  533. default y
  534. help
  535. rm is used to remove files or directories.
  536. config BUSYBOX_RMDIR
  537. bool "rmdir"
  538. default y
  539. help
  540. rmdir is used to remove empty directories.
  541. config BUSYBOX_FEATURE_RMDIR_LONG_OPTIONS
  542. bool "Enable long options"
  543. default y
  544. depends on BUSYBOX_RMDIR && BUSYBOX_LONG_OPTS
  545. help
  546. Support long options for the rmdir applet, including
  547. --ignore-fail-on-non-empty for compatibility with GNU rmdir.
  548. config BUSYBOX_SEQ
  549. bool "seq"
  550. default y
  551. help
  552. print a sequence of numbers
  553. config BUSYBOX_SHA1SUM
  554. bool "sha1sum"
  555. default y
  556. help
  557. Compute and check SHA1 message digest
  558. config BUSYBOX_SHA256SUM
  559. bool "sha256sum"
  560. default y
  561. help
  562. Compute and check SHA256 message digest
  563. config BUSYBOX_SHA512SUM
  564. bool "sha512sum"
  565. default y
  566. help
  567. Compute and check SHA512 message digest
  568. config BUSYBOX_SHA3SUM
  569. bool "sha3sum"
  570. default y
  571. help
  572. Compute and check SHA3 (512-bit) message digest
  573. config BUSYBOX_SLEEP
  574. bool "sleep"
  575. default y
  576. help
  577. sleep is used to pause for a specified number of seconds.
  578. It comes in 3 versions:
  579. - small: takes one integer parameter
  580. - fancy: takes multiple integer arguments with suffixes:
  581. sleep 1d 2h 3m 15s
  582. - fancy with fractional numbers:
  583. sleep 2.3s 4.5h sleeps for 16202.3 seconds
  584. Last one is "the most compatible" with coreutils sleep,
  585. but it adds around 1k of code.
  586. config BUSYBOX_FEATURE_FANCY_SLEEP
  587. bool "Enable multiple arguments and s/m/h/d suffixes"
  588. default y
  589. depends on BUSYBOX_SLEEP
  590. help
  591. Allow sleep to pause for specified minutes, hours, and days.
  592. config BUSYBOX_FEATURE_FLOAT_SLEEP
  593. bool "Enable fractional arguments"
  594. default y
  595. depends on BUSYBOX_FEATURE_FANCY_SLEEP
  596. help
  597. Allow for fractional numeric parameters.
  598. config BUSYBOX_SORT
  599. bool "sort"
  600. default y
  601. help
  602. sort is used to sort lines of text in specified files.
  603. config BUSYBOX_FEATURE_SORT_BIG
  604. bool "Full SuSv3 compliant sort (support -ktcsbdfiozgM)"
  605. default y
  606. depends on BUSYBOX_SORT
  607. help
  608. Without this, sort only supports -r, -u, and an integer version
  609. of -n. Selecting this adds sort keys, floating point support, and
  610. more. This adds a little over 3k to a nonstatic build on x86.
  611. The SuSv3 sort standard is available at:
  612. http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
  613. config BUSYBOX_SPLIT
  614. bool "split"
  615. default y
  616. help
  617. split a file into pieces.
  618. config BUSYBOX_FEATURE_SPLIT_FANCY
  619. bool "Fancy extensions"
  620. default y
  621. depends on BUSYBOX_SPLIT
  622. help
  623. Add support for features not required by SUSv3.
  624. Supports additional suffixes 'b' for 512 bytes,
  625. 'g' for 1GiB for the -b option.
  626. config BUSYBOX_STAT
  627. bool "stat"
  628. default y
  629. select BUSYBOX_PLATFORM_LINUX # statfs()
  630. help
  631. display file or filesystem status.
  632. config BUSYBOX_FEATURE_STAT_FORMAT
  633. bool "Enable custom formats (-c)"
  634. default y
  635. depends on BUSYBOX_STAT
  636. help
  637. Without this, stat will not support the '-c format' option where
  638. users can pass a custom format string for output. This adds about
  639. 7k to a nonstatic build on amd64.
  640. config BUSYBOX_STTY
  641. bool "stty"
  642. default y
  643. help
  644. stty is used to change and print terminal line settings.
  645. config BUSYBOX_SUM
  646. bool "sum"
  647. default y
  648. help
  649. checksum and count the blocks in a file
  650. config BUSYBOX_SYNC
  651. bool "sync"
  652. default y
  653. help
  654. sync is used to flush filesystem buffers.
  655. config BUSYBOX_TAC
  656. bool "tac"
  657. default y
  658. help
  659. tac is used to concatenate and print files in reverse.
  660. config BUSYBOX_TAIL
  661. bool "tail"
  662. default y
  663. help
  664. tail is used to print the last specified number of lines
  665. from files.
  666. config BUSYBOX_FEATURE_FANCY_TAIL
  667. bool "Enable extra tail options (-q, -s, -v, and -F)"
  668. default y
  669. depends on BUSYBOX_TAIL
  670. help
  671. The options (-q, -s, and -v) are provided by GNU tail, but
  672. are not specific in the SUSv3 standard.
  673. -q Never output headers giving file names
  674. -s SEC Wait SEC seconds between reads with -f
  675. -v Always output headers giving file names
  676. config BUSYBOX_TEE
  677. bool "tee"
  678. default y
  679. help
  680. tee is used to read from standard input and write
  681. to standard output and files.
  682. config BUSYBOX_FEATURE_TEE_USE_BLOCK_IO
  683. bool "Enable block I/O (larger/faster) instead of byte I/O"
  684. default y
  685. depends on BUSYBOX_TEE
  686. help
  687. Enable this option for a faster tee, at expense of size.
  688. config BUSYBOX_TRUE
  689. bool "true"
  690. default y
  691. help
  692. true returns an exit code of TRUE (0).
  693. config BUSYBOX_TTY
  694. bool "tty"
  695. default y
  696. help
  697. tty is used to print the name of the current terminal to
  698. standard output.
  699. config BUSYBOX_UNAME
  700. bool "uname"
  701. default y
  702. help
  703. uname is used to print system information.
  704. config BUSYBOX_UNEXPAND
  705. bool "unexpand"
  706. default y
  707. help
  708. By default, convert only leading sequences of blanks to tabs.
  709. config BUSYBOX_FEATURE_UNEXPAND_LONG_OPTIONS
  710. bool "Enable long options"
  711. default y
  712. depends on BUSYBOX_UNEXPAND && BUSYBOX_LONG_OPTS
  713. help
  714. Support long options for the unexpand applet.
  715. config BUSYBOX_UNIQ
  716. bool "uniq"
  717. default y
  718. help
  719. uniq is used to remove duplicate lines from a sorted file.
  720. config BUSYBOX_USLEEP
  721. bool "usleep"
  722. default y
  723. help
  724. usleep is used to pause for a specified number of microseconds.
  725. config BUSYBOX_UUDECODE
  726. bool "uudecode"
  727. default y
  728. help
  729. uudecode is used to decode a uuencoded file.
  730. config BUSYBOX_UUENCODE
  731. bool "uuencode"
  732. default y
  733. help
  734. uuencode is used to uuencode a file.
  735. config BUSYBOX_WC
  736. bool "wc"
  737. default y
  738. help
  739. wc is used to print the number of bytes, words, and lines,
  740. in specified files.
  741. config BUSYBOX_FEATURE_WC_LARGE
  742. bool "Support very large files in wc"
  743. default y
  744. depends on BUSYBOX_WC
  745. help
  746. Use "unsigned long long" in wc for counter variables.
  747. config BUSYBOX_WHOAMI
  748. bool "whoami"
  749. default y
  750. help
  751. whoami is used to print the username of the current
  752. user id (same as id -un).
  753. config BUSYBOX_YES
  754. bool "yes"
  755. default y
  756. help
  757. yes is used to repeatedly output a specific string, or
  758. the default string `y'.
  759. comment "Common options for cp and mv"
  760. depends on BUSYBOX_CP || BUSYBOX_MV
  761. config BUSYBOX_FEATURE_PRESERVE_HARDLINKS
  762. bool "Preserve hard links"
  763. default y
  764. depends on BUSYBOX_CP || BUSYBOX_MV
  765. help
  766. Allow cp and mv to preserve hard links.
  767. comment "Common options for ls, more and telnet"
  768. depends on BUSYBOX_LS || BUSYBOX_MORE || BUSYBOX_TELNET
  769. config BUSYBOX_FEATURE_AUTOWIDTH
  770. bool "Calculate terminal & column widths"
  771. default y
  772. depends on BUSYBOX_LS || BUSYBOX_MORE || BUSYBOX_TELNET
  773. help
  774. This option allows utilities such as 'ls', 'more' and 'telnet'
  775. to determine the width of the screen, which can allow them to
  776. display additional text or avoid wrapping text onto the next line.
  777. If you leave this disabled, your utilities will be especially
  778. primitive and will be unable to determine the current screen width.
  779. comment "Common options for df, du, ls"
  780. depends on BUSYBOX_DF || BUSYBOX_DU || BUSYBOX_LS
  781. config BUSYBOX_FEATURE_HUMAN_READABLE
  782. bool "Support for human readable output (example 13k, 23M, 235G)"
  783. default y
  784. depends on BUSYBOX_DF || BUSYBOX_DU || BUSYBOX_LS
  785. help
  786. Allow df, du, and ls to have human readable output.
  787. comment "Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum"
  788. depends on BUSYBOX_MD5SUM || BUSYBOX_SHA1SUM || BUSYBOX_SHA256SUM || BUSYBOX_SHA512SUM || BUSYBOX_SHA3SUM
  789. config BUSYBOX_FEATURE_MD5_SHA1_SUM_CHECK
  790. bool "Enable -c, -s and -w options"
  791. default y
  792. depends on BUSYBOX_MD5SUM || BUSYBOX_SHA1SUM || BUSYBOX_SHA256SUM || BUSYBOX_SHA512SUM || BUSYBOX_SHA3SUM
  793. help
  794. Enabling the -c options allows files to be checked
  795. against pre-calculated hash values.
  796. -s and -w are useful options when verifying checksums.
  797. endmenu