Config.in 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965
  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_SHUF
  72. bool "shuf"
  73. default n
  74. help
  75. Generate random permutations
  76. config BUSYBOX_TEST
  77. bool "test"
  78. default y
  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_FEATURE_TEST_64
  84. bool "Extend test to 64 bit"
  85. default y
  86. depends on BUSYBOX_TEST || BUSYBOX_ASH_BUILTIN_TEST || BUSYBOX_HUSH
  87. help
  88. Enable 64-bit support in test.
  89. config BUSYBOX_TOUCH
  90. bool "touch"
  91. default y
  92. help
  93. touch is used to create or change the access and/or
  94. modification timestamp of specified files.
  95. config BUSYBOX_FEATURE_TOUCH_NODEREF
  96. bool "Add support for -h"
  97. default y
  98. depends on BUSYBOX_TOUCH
  99. help
  100. Enable touch to have the -h option.
  101. This requires libc support for lutimes() function.
  102. config BUSYBOX_FEATURE_TOUCH_SUSV3
  103. bool "Add support for SUSV3 features (-d -t -r)"
  104. default y
  105. depends on BUSYBOX_TOUCH
  106. help
  107. Enable touch to use a reference file or a given date/time argument.
  108. config BUSYBOX_TR
  109. bool "tr"
  110. default y
  111. help
  112. tr is used to squeeze, and/or delete characters from standard
  113. input, writing to standard output.
  114. config BUSYBOX_FEATURE_TR_CLASSES
  115. bool "Enable character classes (such as [:upper:])"
  116. default y
  117. depends on BUSYBOX_TR
  118. help
  119. Enable character classes, enabling commands such as:
  120. tr [:upper:] [:lower:] to convert input into lowercase.
  121. config BUSYBOX_FEATURE_TR_EQUIV
  122. bool "Enable equivalence classes"
  123. default y
  124. depends on BUSYBOX_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_UNLINK
  132. bool "unlink"
  133. default y
  134. help
  135. unlink deletes a file by calling unlink()
  136. config BUSYBOX_BASE64
  137. bool "base64"
  138. default y
  139. help
  140. Base64 encode and decode
  141. config BUSYBOX_WHO
  142. bool "who"
  143. default y
  144. depends on BUSYBOX_FEATURE_UTMP
  145. help
  146. who is used to show who is logged on.
  147. config BUSYBOX_USERS
  148. bool "users"
  149. default y
  150. depends on BUSYBOX_FEATURE_UTMP
  151. help
  152. Print users currently logged on.
  153. config BUSYBOX_CAL
  154. bool "cal"
  155. default y
  156. help
  157. cal is used to display a monthly calender.
  158. config BUSYBOX_CATV
  159. bool "catv"
  160. default y
  161. help
  162. Display nonprinting characters as escape sequences (like some
  163. implementations' cat -v option).
  164. config BUSYBOX_CHGRP
  165. bool "chgrp"
  166. default y
  167. help
  168. chgrp is used to change the group ownership of files.
  169. config BUSYBOX_CHMOD
  170. bool "chmod"
  171. default y
  172. help
  173. chmod is used to change the access permission of files.
  174. config BUSYBOX_CHOWN
  175. bool "chown"
  176. default y
  177. help
  178. chown is used to change the user and/or group ownership
  179. of files.
  180. config BUSYBOX_FEATURE_CHOWN_LONG_OPTIONS
  181. bool "Enable long options"
  182. default y
  183. depends on BUSYBOX_CHOWN && BUSYBOX_LONG_OPTS
  184. help
  185. Enable use of long options
  186. config BUSYBOX_CHROOT
  187. bool "chroot"
  188. default y
  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_CKSUM
  193. bool "cksum"
  194. default y
  195. help
  196. cksum is used to calculate the CRC32 checksum of a file.
  197. config BUSYBOX_COMM
  198. bool "comm"
  199. default y
  200. help
  201. comm is used to compare two files line by line and return
  202. a three-column output.
  203. config BUSYBOX_CP
  204. bool "cp"
  205. default y
  206. help
  207. cp is used to copy files and directories.
  208. config BUSYBOX_FEATURE_CP_LONG_OPTIONS
  209. bool "Enable long options for cp"
  210. default y
  211. depends on BUSYBOX_CP && BUSYBOX_LONG_OPTS
  212. help
  213. Enable long options for cp.
  214. Also add support for --parents option.
  215. config BUSYBOX_CUT
  216. bool "cut"
  217. default y
  218. help
  219. cut is used to print selected parts of lines from
  220. each file to stdout.
  221. config BUSYBOX_DD
  222. bool "dd"
  223. default y
  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_FEATURE_DD_SIGNAL_HANDLING
  229. bool "Enable DD signal handling for status reporting"
  230. default y
  231. depends on BUSYBOX_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_FEATURE_DD_THIRD_STATUS_LINE
  241. bool "Enable the third status line upon signal"
  242. default y
  243. depends on BUSYBOX_DD && BUSYBOX_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_FEATURE_DD_IBS_OBS
  248. bool "Enable ibs, obs and conv options"
  249. default y
  250. depends on BUSYBOX_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_DF
  255. bool "df"
  256. default y
  257. help
  258. df reports the amount of disk space used and available
  259. on filesystems.
  260. config BUSYBOX_FEATURE_DF_FANCY
  261. bool "Enable -a, -i, -B"
  262. default y
  263. depends on BUSYBOX_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_DIRNAME
  270. bool "dirname"
  271. default y
  272. help
  273. dirname is used to strip a non-directory suffix from
  274. a file name.
  275. config BUSYBOX_DOS2UNIX
  276. bool "dos2unix/unix2dos"
  277. default y
  278. help
  279. dos2unix is used to convert a text file from DOS format to
  280. UNIX format, and vice versa.
  281. config BUSYBOX_UNIX2DOS
  282. bool
  283. default y
  284. depends on BUSYBOX_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_DU
  289. bool "du (default blocksize of 512 bytes)"
  290. default y
  291. help
  292. du is used to report the amount of disk space used
  293. for specified files.
  294. config BUSYBOX_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
  295. bool "Use a default blocksize of 1024 bytes (1K)"
  296. default y
  297. depends on BUSYBOX_DU
  298. help
  299. Use a blocksize of (1K) instead of the default 512b.
  300. config BUSYBOX_ECHO
  301. bool "echo (basic SuSv3 version taking no options)"
  302. default y
  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_FEATURE_FANCY_ECHO
  307. bool "Enable echo options (-n and -e)"
  308. default y
  309. depends on BUSYBOX_ECHO || BUSYBOX_ASH_BUILTIN_ECHO || BUSYBOX_HUSH
  310. help
  311. This adds options (-n and -e) to echo.
  312. config BUSYBOX_ENV
  313. bool "env"
  314. default y
  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_FEATURE_ENV_LONG_OPTIONS
  320. bool "Enable long options"
  321. default y
  322. depends on BUSYBOX_ENV && BUSYBOX_LONG_OPTS
  323. help
  324. Support long options for the env applet.
  325. config BUSYBOX_EXPAND
  326. bool "expand"
  327. default y
  328. help
  329. By default, convert all tabs to spaces.
  330. config BUSYBOX_FEATURE_EXPAND_LONG_OPTIONS
  331. bool "Enable long options"
  332. default y
  333. depends on BUSYBOX_EXPAND && BUSYBOX_LONG_OPTS
  334. help
  335. Support long options for the expand applet.
  336. config BUSYBOX_EXPR
  337. bool "expr"
  338. default y
  339. help
  340. expr is used to calculate numbers and print the result
  341. to standard output.
  342. config BUSYBOX_EXPR_MATH_SUPPORT_64
  343. bool "Extend Posix numbers support to 64 bit"
  344. default y
  345. depends on BUSYBOX_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_FALSE
  351. bool "false"
  352. default y
  353. help
  354. false returns an exit code of FALSE (1).
  355. config BUSYBOX_FOLD
  356. bool "fold"
  357. default y
  358. help
  359. Wrap text to fit a specific width.
  360. config BUSYBOX_FSYNC
  361. bool "fsync"
  362. default y
  363. help
  364. fsync is used to flush file-related cached blocks to disk.
  365. config BUSYBOX_HEAD
  366. bool "head"
  367. default y
  368. help
  369. head is used to print the first specified number of lines
  370. from files.
  371. config BUSYBOX_FEATURE_FANCY_HEAD
  372. bool "Enable head options (-c, -q, and -v)"
  373. default y
  374. depends on BUSYBOX_HEAD
  375. help
  376. This enables the head options (-c, -q, and -v).
  377. config BUSYBOX_INSTALL
  378. bool "install"
  379. default y
  380. help
  381. Copy files and set attributes.
  382. config BUSYBOX_FEATURE_INSTALL_LONG_OPTIONS
  383. bool "Enable long options"
  384. default y
  385. depends on BUSYBOX_INSTALL && BUSYBOX_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_LN
  394. bool "ln"
  395. default y
  396. help
  397. ln is used to create hard or soft links between files.
  398. config BUSYBOX_LOGNAME
  399. bool "logname"
  400. default y
  401. help
  402. logname is used to print the current user's login name.
  403. config BUSYBOX_LS
  404. bool "ls"
  405. default y
  406. help
  407. ls is used to list the contents of directories.
  408. config BUSYBOX_FEATURE_LS_FILETYPES
  409. bool "Enable filetyping options (-p and -F)"
  410. default y
  411. depends on BUSYBOX_LS
  412. help
  413. Enable the ls options (-p and -F).
  414. config BUSYBOX_FEATURE_LS_FOLLOWLINKS
  415. bool "Enable symlinks dereferencing (-L)"
  416. default y
  417. depends on BUSYBOX_LS
  418. help
  419. Enable the ls option (-L).
  420. config BUSYBOX_FEATURE_LS_RECURSIVE
  421. bool "Enable recursion (-R)"
  422. default y
  423. depends on BUSYBOX_LS
  424. help
  425. Enable the ls option (-R).
  426. config BUSYBOX_FEATURE_LS_SORTFILES
  427. bool "Sort the file names"
  428. default y
  429. depends on BUSYBOX_LS
  430. help
  431. Allow ls to sort file names alphabetically.
  432. config BUSYBOX_FEATURE_LS_TIMESTAMPS
  433. bool "Show file timestamps"
  434. default y
  435. depends on BUSYBOX_LS
  436. help
  437. Allow ls to display timestamps for files.
  438. config BUSYBOX_FEATURE_LS_USERNAME
  439. bool "Show username/groupnames"
  440. default y
  441. depends on BUSYBOX_LS
  442. help
  443. Allow ls to display username/groupname for files.
  444. config BUSYBOX_FEATURE_LS_COLOR
  445. bool "Allow use of color to identify file types"
  446. default y
  447. depends on BUSYBOX_LS && BUSYBOX_LONG_OPTS
  448. help
  449. This enables the --color option to ls.
  450. config BUSYBOX_FEATURE_LS_COLOR_IS_DEFAULT
  451. bool "Produce colored ls output by default"
  452. default y
  453. depends on BUSYBOX_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_MD5SUM
  461. bool "md5sum"
  462. default y
  463. help
  464. md5sum is used to print or check MD5 checksums.
  465. config BUSYBOX_MKDIR
  466. bool "mkdir"
  467. default y
  468. help
  469. mkdir is used to create directories with the specified names.
  470. config BUSYBOX_FEATURE_MKDIR_LONG_OPTIONS
  471. bool "Enable long options"
  472. default y
  473. depends on BUSYBOX_MKDIR && BUSYBOX_LONG_OPTS
  474. help
  475. Support long options for the mkdir applet.
  476. config BUSYBOX_MKFIFO
  477. bool "mkfifo"
  478. default y
  479. help
  480. mkfifo is used to create FIFOs (named pipes).
  481. The `mknod' program can also create FIFOs.
  482. config BUSYBOX_MKNOD
  483. bool "mknod"
  484. default y
  485. help
  486. mknod is used to create FIFOs or block/character special
  487. files with the specified names.
  488. config BUSYBOX_MV
  489. bool "mv"
  490. default y
  491. help
  492. mv is used to move or rename files or directories.
  493. config BUSYBOX_FEATURE_MV_LONG_OPTIONS
  494. bool "Enable long options"
  495. default y
  496. depends on BUSYBOX_MV && BUSYBOX_LONG_OPTS
  497. help
  498. Support long options for the mv applet.
  499. config BUSYBOX_NICE
  500. bool "nice"
  501. default y
  502. help
  503. nice runs a program with modified scheduling priority.
  504. config BUSYBOX_NOHUP
  505. bool "nohup"
  506. default y
  507. help
  508. run a command immune to hangups, with output to a non-tty.
  509. config BUSYBOX_OD
  510. bool "od"
  511. default y
  512. help
  513. od is used to dump binary files in octal and other formats.
  514. config BUSYBOX_PRINTENV
  515. bool "printenv"
  516. default y
  517. help
  518. printenv is used to print all or part of environment.
  519. config BUSYBOX_PRINTF
  520. bool "printf"
  521. default y
  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_PWD
  526. bool "pwd"
  527. default y
  528. help
  529. pwd is used to print the current directory.
  530. config BUSYBOX_READLINK
  531. bool "readlink"
  532. default y
  533. help
  534. This program reads a symbolic link and returns the name
  535. of the file it points to
  536. config BUSYBOX_FEATURE_READLINK_FOLLOW
  537. bool "Enable canonicalization by following all symlinks (-f)"
  538. default y
  539. depends on BUSYBOX_READLINK
  540. help
  541. Enable the readlink option (-f).
  542. config BUSYBOX_REALPATH
  543. bool "realpath"
  544. default y
  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_RM
  549. bool "rm"
  550. default y
  551. help
  552. rm is used to remove files or directories.
  553. config BUSYBOX_RMDIR
  554. bool "rmdir"
  555. default y
  556. help
  557. rmdir is used to remove empty directories.
  558. config BUSYBOX_FEATURE_RMDIR_LONG_OPTIONS
  559. bool "Enable long options"
  560. default y
  561. depends on BUSYBOX_RMDIR && BUSYBOX_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_SEQ
  566. bool "seq"
  567. default y
  568. help
  569. print a sequence of numbers
  570. config BUSYBOX_SHA1SUM
  571. bool "sha1sum"
  572. default y
  573. help
  574. Compute and check SHA1 message digest
  575. config BUSYBOX_SHA256SUM
  576. bool "sha256sum"
  577. default y
  578. help
  579. Compute and check SHA256 message digest
  580. config BUSYBOX_SHA512SUM
  581. bool "sha512sum"
  582. default y
  583. help
  584. Compute and check SHA512 message digest
  585. config BUSYBOX_SHA3SUM
  586. bool "sha3sum"
  587. default y
  588. help
  589. Compute and check SHA3 (512-bit) message digest
  590. config BUSYBOX_SLEEP
  591. bool "sleep"
  592. default y
  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_FEATURE_FANCY_SLEEP
  604. bool "Enable multiple arguments and s/m/h/d suffixes"
  605. default y
  606. depends on BUSYBOX_SLEEP
  607. help
  608. Allow sleep to pause for specified minutes, hours, and days.
  609. config BUSYBOX_FEATURE_FLOAT_SLEEP
  610. bool "Enable fractional arguments"
  611. default y
  612. depends on BUSYBOX_FEATURE_FANCY_SLEEP
  613. help
  614. Allow for fractional numeric parameters.
  615. config BUSYBOX_SORT
  616. bool "sort"
  617. default y
  618. help
  619. sort is used to sort lines of text in specified files.
  620. config BUSYBOX_FEATURE_SORT_BIG
  621. bool "Full SuSv3 compliant sort (support -ktcsbdfiozgM)"
  622. default y
  623. depends on BUSYBOX_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_SPLIT
  631. bool "split"
  632. default y
  633. help
  634. split a file into pieces.
  635. config BUSYBOX_FEATURE_SPLIT_FANCY
  636. bool "Fancy extensions"
  637. default y
  638. depends on BUSYBOX_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_STAT
  644. bool "stat"
  645. default y
  646. select BUSYBOX_PLATFORM_LINUX # statfs()
  647. help
  648. display file or filesystem status.
  649. config BUSYBOX_FEATURE_STAT_FORMAT
  650. bool "Enable custom formats (-c)"
  651. default y
  652. depends on BUSYBOX_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_STTY
  658. bool "stty"
  659. default y
  660. help
  661. stty is used to change and print terminal line settings.
  662. config BUSYBOX_SUM
  663. bool "sum"
  664. default y
  665. help
  666. checksum and count the blocks in a file
  667. config BUSYBOX_SYNC
  668. bool "sync"
  669. default y
  670. help
  671. sync is used to flush filesystem buffers.
  672. config BUSYBOX_TAC
  673. bool "tac"
  674. default y
  675. help
  676. tac is used to concatenate and print files in reverse.
  677. config BUSYBOX_TAIL
  678. bool "tail"
  679. default y
  680. help
  681. tail is used to print the last specified number of lines
  682. from files.
  683. config BUSYBOX_FEATURE_FANCY_TAIL
  684. bool "Enable extra tail options (-q, -s, -v, and -F)"
  685. default y
  686. depends on BUSYBOX_TAIL
  687. help
  688. The options (-q, -s, and -v) 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. config BUSYBOX_TEE
  694. bool "tee"
  695. default y
  696. help
  697. tee is used to read from standard input and write
  698. to standard output and files.
  699. config BUSYBOX_FEATURE_TEE_USE_BLOCK_IO
  700. bool "Enable block I/O (larger/faster) instead of byte I/O"
  701. default y
  702. depends on BUSYBOX_TEE
  703. help
  704. Enable this option for a faster tee, at expense of size.
  705. config BUSYBOX_TRUE
  706. bool "true"
  707. default y
  708. help
  709. true returns an exit code of TRUE (0).
  710. config BUSYBOX_TTY
  711. bool "tty"
  712. default y
  713. help
  714. tty is used to print the name of the current terminal to
  715. standard output.
  716. config BUSYBOX_UNAME
  717. bool "uname"
  718. default y
  719. help
  720. uname is used to print system information.
  721. config BUSYBOX_UNEXPAND
  722. bool "unexpand"
  723. default y
  724. help
  725. By default, convert only leading sequences of blanks to tabs.
  726. config BUSYBOX_FEATURE_UNEXPAND_LONG_OPTIONS
  727. bool "Enable long options"
  728. default y
  729. depends on BUSYBOX_UNEXPAND && BUSYBOX_LONG_OPTS
  730. help
  731. Support long options for the unexpand applet.
  732. config BUSYBOX_UNIQ
  733. bool "uniq"
  734. default y
  735. help
  736. uniq is used to remove duplicate lines from a sorted file.
  737. config BUSYBOX_USLEEP
  738. bool "usleep"
  739. default y
  740. help
  741. usleep is used to pause for a specified number of microseconds.
  742. config BUSYBOX_UUDECODE
  743. bool "uudecode"
  744. default y
  745. help
  746. uudecode is used to decode a uuencoded file.
  747. config BUSYBOX_UUENCODE
  748. bool "uuencode"
  749. default y
  750. help
  751. uuencode is used to uuencode a file.
  752. config BUSYBOX_WC
  753. bool "wc"
  754. default y
  755. help
  756. wc is used to print the number of bytes, words, and lines,
  757. in specified files.
  758. config BUSYBOX_FEATURE_WC_LARGE
  759. bool "Support very large files in wc"
  760. default y
  761. depends on BUSYBOX_WC
  762. help
  763. Use "unsigned long long" in wc for counter variables.
  764. config BUSYBOX_WHOAMI
  765. bool "whoami"
  766. default y
  767. help
  768. whoami is used to print the username of the current
  769. user id (same as id -un).
  770. config BUSYBOX_YES
  771. bool "yes"
  772. default y
  773. help
  774. yes is used to repeatedly output a specific string, or
  775. the default string `y'.
  776. comment "Common options"
  777. config BUSYBOX_FEATURE_VERBOSE
  778. bool "Support verbose options (usually -v) for various applets"
  779. default y
  780. help
  781. Enable cp -v, rm -v and similar messages.
  782. Also enables long option (--verbose) if it exists.
  783. Without this option, -v is accepted but ignored.
  784. comment "Common options for cp and mv"
  785. depends on BUSYBOX_CP || BUSYBOX_MV
  786. config BUSYBOX_FEATURE_PRESERVE_HARDLINKS
  787. bool "Preserve hard links"
  788. default y
  789. depends on BUSYBOX_CP || BUSYBOX_MV
  790. help
  791. Allow cp and mv to preserve hard links.
  792. comment "Common options for ls, more and telnet"
  793. depends on BUSYBOX_LS || BUSYBOX_MORE || BUSYBOX_TELNET
  794. config BUSYBOX_FEATURE_AUTOWIDTH
  795. bool "Calculate terminal & column widths"
  796. default y
  797. depends on BUSYBOX_LS || BUSYBOX_MORE || BUSYBOX_TELNET
  798. help
  799. This option allows utilities such as 'ls', 'more' and 'telnet'
  800. to determine the width of the screen, which can allow them to
  801. display additional text or avoid wrapping text onto the next line.
  802. If you leave this disabled, your utilities will be especially
  803. primitive and will be unable to determine the current screen width.
  804. comment "Common options for df, du, ls"
  805. depends on BUSYBOX_DF || BUSYBOX_DU || BUSYBOX_LS
  806. config BUSYBOX_FEATURE_HUMAN_READABLE
  807. bool "Support for human readable output (example 13k, 23M, 235G)"
  808. default y
  809. depends on BUSYBOX_DF || BUSYBOX_DU || BUSYBOX_LS
  810. help
  811. Allow df, du, and ls to have human readable output.
  812. comment "Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum"
  813. depends on BUSYBOX_MD5SUM || BUSYBOX_SHA1SUM || BUSYBOX_SHA256SUM || BUSYBOX_SHA512SUM || BUSYBOX_SHA3SUM
  814. config BUSYBOX_FEATURE_MD5_SHA1_SUM_CHECK
  815. bool "Enable -c, -s and -w options"
  816. default y
  817. depends on BUSYBOX_MD5SUM || BUSYBOX_SHA1SUM || BUSYBOX_SHA256SUM || BUSYBOX_SHA512SUM || BUSYBOX_SHA3SUM
  818. help
  819. Enabling the -c options allows files to be checked
  820. against pre-calculated hash values.
  821. -s and -w are useful options when verifying checksums.
  822. endmenu