Config.in 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Coreutils"
  6. config BASENAME
  7. bool "basename"
  8. default n
  9. help
  10. basename is used to strip the directory and suffix from filenames,
  11. leaving just the filename itself. Enable this option if you wish
  12. to enable the 'basename' utility.
  13. config CAL
  14. bool "cal"
  15. default n
  16. help
  17. cal is used to display a monthly calender.
  18. config CAT
  19. bool "cat"
  20. default n
  21. help
  22. cat is used to concatenate files and print them to the standard
  23. output. Enable this option if you wish to enable the 'cat' utility.
  24. config CATV
  25. bool "catv"
  26. default n
  27. help
  28. Display nonprinting characters as escape sequences (like some
  29. implementations' cat -v option).
  30. config CHGRP
  31. bool "chgrp"
  32. default n
  33. help
  34. chgrp is used to change the group ownership of files.
  35. config CHMOD
  36. bool "chmod"
  37. default n
  38. help
  39. chmod is used to change the access permission of files.
  40. config CHOWN
  41. bool "chown"
  42. default n
  43. help
  44. chown is used to change the user and/or group ownership
  45. of files.
  46. config CHROOT
  47. bool "chroot"
  48. default n
  49. help
  50. chroot is used to change the root directory and run a command.
  51. The default command is `/bin/sh'.
  52. config CKSUM
  53. bool "cksum"
  54. default n
  55. help
  56. cksum is used to calculate the CRC32 checksum of a file.
  57. config COMM
  58. bool "comm"
  59. default n
  60. help
  61. comm is used to compare two files line by line and return
  62. a three-column output.
  63. config CP
  64. bool "cp"
  65. default n
  66. help
  67. cp is used to copy files and directories.
  68. config CUT
  69. bool "cut"
  70. default n
  71. help
  72. cut is used to print selected parts of lines from
  73. each file to stdout.
  74. config DATE
  75. bool "date"
  76. default n
  77. help
  78. date is used to set the system date or display the
  79. current time in the given format.
  80. config FEATURE_DATE_ISOFMT
  81. bool "Enable ISO date format output (-I)"
  82. default y
  83. depends on DATE
  84. help
  85. Enable option (-I) to output an ISO-8601 compliant
  86. date/time string.
  87. config DD
  88. bool "dd"
  89. default n
  90. help
  91. dd copies a file (from standard input to standard output,
  92. by default) using specific input and output blocksizes,
  93. while optionally performing conversions on it.
  94. config FEATURE_DD_SIGNAL_HANDLING
  95. bool "Enable DD signal handling for status reporting"
  96. default y
  97. depends on DD
  98. help
  99. sending a SIGUSR1 signal to a running `dd' process makes it
  100. print to standard error the number of records read and written
  101. so far, then to resume copying.
  102. $ dd if=/dev/zero of=/dev/null& pid=$! $ kill -USR1 $pid; sleep 1; kill $pid
  103. 10899206+0 records in 10899206+0 records out
  104. config FEATURE_DD_IBS_OBS
  105. bool "Enable ibs, obs and conv options"
  106. default n
  107. depends on DD
  108. help
  109. Enables support for writing a certain number of bytes in and out,
  110. at a time, and performing conversions on the data stream.
  111. config DF
  112. bool "df"
  113. default n
  114. help
  115. df reports the amount of disk space used and available
  116. on filesystems.
  117. config FEATURE_DF_INODE
  118. bool "Enable -i (inode information)"
  119. default n
  120. depends on DF
  121. help
  122. This option enables support for df -i.
  123. config DIRNAME
  124. bool "dirname"
  125. default n
  126. help
  127. dirname is used to strip a non-directory suffix from
  128. a file name.
  129. config DOS2UNIX
  130. bool "dos2unix/unix2dos"
  131. default n
  132. help
  133. dos2unix is used to convert a text file from DOS format to
  134. UNIX format, and vice versa.
  135. config UNIX2DOS
  136. bool
  137. default y
  138. depends on DOS2UNIX
  139. help
  140. unix2dos is used to convert a text file from UNIX format to
  141. DOS format, and vice versa.
  142. config DU
  143. bool "du (default blocksize of 512 bytes)"
  144. default n
  145. help
  146. du is used to report the amount of disk space used
  147. for specified files.
  148. config FEATURE_DU_DEFAULT_BLOCKSIZE_1K
  149. bool "Use a default blocksize of 1024 bytes (1K)"
  150. default y
  151. depends on DU
  152. help
  153. Use a blocksize of (1K) instead of the default 512b.
  154. config ECHO
  155. bool "echo (basic SuSv3 version taking no options)"
  156. default n
  157. help
  158. echo is used to print a specified string to stdout.
  159. # this entry also appears in shell/Config.in, next to the echo builtin
  160. config FEATURE_FANCY_ECHO
  161. bool "Enable echo options (-n and -e)"
  162. default y
  163. depends on ECHO
  164. help
  165. This adds options (-n and -e) to echo.
  166. config ENV
  167. bool "env"
  168. default n
  169. help
  170. env is used to set an environment variable and run
  171. a command; without options it displays the current
  172. environment.
  173. config FEATURE_ENV_LONG_OPTIONS
  174. bool "Enable long options"
  175. default n
  176. depends on ENV && GETOPT_LONG
  177. help
  178. Support long options for the env applet.
  179. config EXPAND
  180. bool "expand"
  181. default n
  182. help
  183. By default, convert all tabs to spaces.
  184. config FEATURE_EXPAND_LONG_OPTIONS
  185. bool "Enable long options"
  186. default n
  187. depends on EXPAND && GETOPT_LONG
  188. help
  189. Support long options for the expand applet.
  190. config EXPR
  191. bool "expr"
  192. default n
  193. help
  194. expr is used to calculate numbers and print the result
  195. to standard output.
  196. config EXPR_MATH_SUPPORT_64
  197. bool "Extend Posix numbers support to 64 bit"
  198. default n
  199. depends on EXPR
  200. help
  201. Enable 64-bit math support in the expr applet. This will make
  202. the applet slightly larger, but will allow computation with very
  203. large numbers.
  204. config FALSE
  205. bool "false"
  206. default n
  207. help
  208. false returns an exit code of FALSE (1).
  209. config FOLD
  210. bool "fold"
  211. default n
  212. help
  213. Wrap text to fit a specific width.
  214. config HEAD
  215. bool "head"
  216. default n
  217. help
  218. head is used to print the first specified number of lines
  219. from files.
  220. config FEATURE_FANCY_HEAD
  221. bool "Enable head options (-c, -q, and -v)"
  222. default n
  223. depends on HEAD
  224. help
  225. This enables the head options (-c, -q, and -v).
  226. config HOSTID
  227. bool "hostid"
  228. default n
  229. help
  230. hostid prints the numeric identifier (in hexadecimal) for
  231. the current host.
  232. config ID
  233. bool "id"
  234. default n
  235. help
  236. id displays the current user and group ID names.
  237. config INSTALL
  238. bool "install"
  239. default n
  240. help
  241. Copy files and set attributes.
  242. config FEATURE_INSTALL_LONG_OPTIONS
  243. bool "Enable long options"
  244. default n
  245. depends on INSTALL && GETOPT_LONG
  246. help
  247. Support long options for the install applet.
  248. config LENGTH
  249. bool "length"
  250. default n
  251. help
  252. length is used to print out the length of a specified string.
  253. config LN
  254. bool "ln"
  255. default n
  256. help
  257. ln is used to create hard or soft links between files.
  258. config LOGNAME
  259. bool "logname"
  260. default n
  261. help
  262. logname is used to print the current user's login name.
  263. config LS
  264. bool "ls"
  265. default n
  266. help
  267. ls is used to list the contents of directories.
  268. config FEATURE_LS_FILETYPES
  269. bool "Enable filetyping options (-p and -F)"
  270. default y
  271. depends on LS
  272. help
  273. Enable the ls options (-p and -F).
  274. config FEATURE_LS_FOLLOWLINKS
  275. bool "Enable symlinks dereferencing (-L)"
  276. default y
  277. depends on LS
  278. help
  279. Enable the ls option (-L).
  280. config FEATURE_LS_RECURSIVE
  281. bool "Enable recursion (-R)"
  282. default y
  283. depends on LS
  284. help
  285. Enable the ls option (-R).
  286. config FEATURE_LS_SORTFILES
  287. bool "Sort the file names"
  288. default y
  289. depends on LS
  290. help
  291. Allow ls to sort file names alphabetically.
  292. config FEATURE_LS_TIMESTAMPS
  293. bool "Show file timestamps"
  294. default y
  295. depends on LS
  296. help
  297. Allow ls to display timestamps for files.
  298. config FEATURE_LS_USERNAME
  299. bool "Show username/groupnames"
  300. default y
  301. depends on LS
  302. help
  303. Allow ls to display username/groupname for files.
  304. config FEATURE_LS_COLOR
  305. bool "Allow use of color to identify file types"
  306. default y
  307. depends on LS && GETOPT_LONG
  308. help
  309. This enables the --color option to ls.
  310. config FEATURE_LS_COLOR_IS_DEFAULT
  311. bool "Produce colored ls output by default"
  312. default n
  313. depends on FEATURE_LS_COLOR
  314. help
  315. Saying yes here will turn coloring on by default,
  316. even if no "--color" option is given to the ls command.
  317. This is not recommended, since the colors are not
  318. configurable, and the output may not be legible on
  319. many output screens.
  320. config MD5SUM
  321. bool "md5sum"
  322. default n
  323. help
  324. md5sum is used to print or check MD5 checksums.
  325. config MKDIR
  326. bool "mkdir"
  327. default n
  328. help
  329. mkdir is used to create directories with the specified names.
  330. config FEATURE_MKDIR_LONG_OPTIONS
  331. bool "Enable long options"
  332. default n
  333. depends on MKDIR && GETOPT_LONG
  334. help
  335. Support long options for the mkdir applet.
  336. config MKFIFO
  337. bool "mkfifo"
  338. default n
  339. help
  340. mkfifo is used to create FIFOs (named pipes).
  341. The `mknod' program can also create FIFOs.
  342. config MKNOD
  343. bool "mknod"
  344. default n
  345. help
  346. mknod is used to create FIFOs or block/character special
  347. files with the specified names.
  348. config MV
  349. bool "mv"
  350. default n
  351. help
  352. mv is used to move or rename files or directories.
  353. config FEATURE_MV_LONG_OPTIONS
  354. bool "Enable long options"
  355. default n
  356. depends on MV && GETOPT_LONG
  357. help
  358. Support long options for the mv applet.
  359. config NICE
  360. bool "nice"
  361. default n
  362. help
  363. nice runs a program with modified scheduling priority.
  364. config NOHUP
  365. bool "nohup"
  366. default n
  367. help
  368. run a command immune to hangups, with output to a non-tty.
  369. config OD
  370. bool "od"
  371. default n
  372. help
  373. od is used to dump binary files in octal and other formats.
  374. config PRINTENV
  375. bool "printenv"
  376. default n
  377. help
  378. printenv is used to print all or part of environment.
  379. config PRINTF
  380. bool "printf"
  381. default n
  382. help
  383. printf is used to format and print specified strings.
  384. It's similar to `echo' except it has more options.
  385. config PWD
  386. bool "pwd"
  387. default n
  388. help
  389. pwd is used to print the current directory.
  390. config READLINK
  391. bool "readlink"
  392. default n
  393. help
  394. This program reads a symbolic link and returns the name
  395. of the file it points to
  396. config FEATURE_READLINK_FOLLOW
  397. bool "Enable canonicalization by following all symlinks (-f)"
  398. default n
  399. depends on READLINK
  400. help
  401. Enable the readlink option (-f).
  402. config REALPATH
  403. bool "realpath"
  404. default n
  405. help
  406. Return the canonicalized absolute pathname.
  407. This isn't provided by GNU shellutils, but where else does it belong.
  408. config RM
  409. bool "rm"
  410. default n
  411. help
  412. rm is used to remove files or directories.
  413. config RMDIR
  414. bool "rmdir"
  415. default n
  416. help
  417. rmdir is used to remove empty directories.
  418. config FEATURE_RMDIR_LONG_OPTIONS
  419. bool "Enable long options"
  420. default n
  421. depends on RMDIR && GETOPT_LONG
  422. help
  423. Support long options for the rmdir applet, including
  424. --ignore-fail-on-non-empty for compatibility with GNU rmdir.
  425. config SEQ
  426. bool "seq"
  427. default n
  428. help
  429. print a sequence of numbers
  430. config SHA1SUM
  431. bool "sha1sum"
  432. default n
  433. help
  434. Compute and check SHA1 message digest
  435. config SLEEP
  436. bool "sleep (single integer arg with no suffix)"
  437. default n
  438. help
  439. sleep is used to pause for a specified number of seconds,
  440. config FEATURE_FANCY_SLEEP
  441. bool "Enable multiple integer args and optional time suffixes"
  442. default n
  443. depends on SLEEP
  444. help
  445. Allow sleep to pause for specified minutes, hours, and days.
  446. config SORT
  447. bool "sort"
  448. default n
  449. help
  450. sort is used to sort lines of text in specified files.
  451. config FEATURE_SORT_BIG
  452. bool "Full SuSv3 compliant sort (support -ktcsbdfiozgM)"
  453. default y
  454. depends on SORT
  455. help
  456. Without this, sort only supports -r, -u, and an integer version
  457. of -n. Selecting this adds sort keys, floating point support, and
  458. more. This adds a little over 3k to a nonstatic build on x86.
  459. The SuSv3 sort standard is available at:
  460. http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
  461. config SPLIT
  462. bool "split"
  463. default n
  464. help
  465. split a file into pieces.
  466. config FEATURE_SPLIT_FANCY
  467. bool "Fancy extensions"
  468. default n
  469. depends on SPLIT
  470. help
  471. Add support for features not required by SUSv3.
  472. Supports additional suffixes 'b' for 512 bytes,
  473. 'g' for 1GiB for the -b option.
  474. config STAT
  475. bool "stat"
  476. default n
  477. help
  478. display file or filesystem status.
  479. config FEATURE_STAT_FORMAT
  480. bool "Enable custom formats (-c)"
  481. default n
  482. depends on STAT
  483. help
  484. Without this, stat will not support the '-c format' option where
  485. users can pass a custom format string for output. This adds about
  486. 7k to a nonstatic build on amd64.
  487. config STTY
  488. bool "stty"
  489. default n
  490. help
  491. stty is used to change and print terminal line settings.
  492. config SUM
  493. bool "sum"
  494. default n
  495. help
  496. checksum and count the blocks in a file
  497. config SYNC
  498. bool "sync"
  499. default n
  500. help
  501. sync is used to flush filesystem buffers.
  502. config TAC
  503. bool "tac"
  504. default n
  505. help
  506. tac is used to concatenate and print files in reverse.
  507. config TAIL
  508. bool "tail"
  509. default n
  510. help
  511. tail is used to print the last specified number of lines
  512. from files.
  513. config FEATURE_FANCY_TAIL
  514. bool "Enable extra tail options (-q, -s, and -v)"
  515. default y
  516. depends on TAIL
  517. help
  518. The options (-q, -s, and -v) are provided by GNU tail, but
  519. are not specific in the SUSv3 standard.
  520. config TEE
  521. bool "tee"
  522. default n
  523. help
  524. tee is used to read from standard input and write
  525. to standard output and files.
  526. config FEATURE_TEE_USE_BLOCK_IO
  527. bool "Enable block I/O (larger/faster) instead of byte I/O"
  528. default n
  529. depends on TEE
  530. help
  531. Enable this option for a faster tee, at expense of size.
  532. config TEST
  533. bool "test"
  534. default n
  535. help
  536. test is used to check file types and compare values,
  537. returning an appropriate exit code. The bash shell
  538. has test built in, ash can build it in optionally.
  539. config FEATURE_TEST_64
  540. bool "Extend test to 64 bit"
  541. default n
  542. depends on TEST
  543. help
  544. Enable 64-bit support in test.
  545. config TOUCH
  546. bool "touch"
  547. default n
  548. help
  549. touch is used to create or change the access and/or
  550. modification timestamp of specified files.
  551. config TR
  552. bool "tr"
  553. default n
  554. help
  555. tr is used to squeeze, and/or delete characters from standard
  556. input, writing to standard output.
  557. config FEATURE_TR_CLASSES
  558. bool "Enable character classes (such as [:upper:])"
  559. default n
  560. depends on TR
  561. help
  562. Enable character classes, enabling commands such as:
  563. tr [:upper:] [:lower:] to convert input into lowercase.
  564. config FEATURE_TR_EQUIV
  565. bool "Enable equivalence classes"
  566. default n
  567. depends on TR
  568. help
  569. Enable equivalence classes, which essentially add the enclosed
  570. character to the current set. For instance, tr [=a=] xyz would
  571. replace all instances of 'a' with 'xyz'. This option is mainly
  572. useful for cases when no other way of expressing a character
  573. is possible.
  574. config TRUE
  575. bool "true"
  576. default n
  577. help
  578. true returns an exit code of TRUE (0).
  579. config TTY
  580. bool "tty"
  581. default n
  582. help
  583. tty is used to print the name of the current terminal to
  584. standard output.
  585. config UNAME
  586. bool "uname"
  587. default n
  588. help
  589. uname is used to print system information.
  590. config UNEXPAND
  591. bool "unexpand"
  592. default n
  593. help
  594. By default, convert only leading sequences of blanks to tabs.
  595. config FEATURE_UNEXPAND_LONG_OPTIONS
  596. bool "Enable long options"
  597. default n
  598. depends on UNEXPAND && GETOPT_LONG
  599. help
  600. Support long options for the unexpand applet.
  601. config UNIQ
  602. bool "uniq"
  603. default n
  604. help
  605. uniq is used to remove duplicate lines from a sorted file.
  606. config USLEEP
  607. bool "usleep"
  608. default n
  609. help
  610. usleep is used to pause for a specified number of microseconds.
  611. config UUDECODE
  612. bool "uudecode"
  613. default n
  614. help
  615. uudecode is used to decode a uuencoded file.
  616. config UUENCODE
  617. bool "uuencode"
  618. default n
  619. help
  620. uuencode is used to uuencode a file.
  621. config WC
  622. bool "wc"
  623. default n
  624. help
  625. wc is used to print the number of bytes, words, and lines,
  626. in specified files.
  627. config FEATURE_WC_LARGE
  628. bool "Support very large files in wc"
  629. default n
  630. depends on WC
  631. help
  632. Use "unsigned long long" in wc for count variables
  633. config WHO
  634. bool "who"
  635. default n
  636. select FEATURE_UTMP
  637. help
  638. who is used to show who is logged on.
  639. config WHOAMI
  640. bool "whoami"
  641. default n
  642. help
  643. whoami is used to print the username of the current
  644. user id (same as id -un).
  645. config YES
  646. bool "yes"
  647. default n
  648. help
  649. yes is used to repeatedly output a specific string, or
  650. the default string `y'.
  651. comment "Common options for cp and mv"
  652. depends on CP || MV
  653. config FEATURE_PRESERVE_HARDLINKS
  654. bool "Preserve hard links"
  655. default n
  656. depends on CP || MV
  657. help
  658. Allow cp and mv to preserve hard links.
  659. comment "Common options for ls, more and telnet"
  660. depends on LS || MORE || TELNET
  661. config FEATURE_AUTOWIDTH
  662. bool "Calculate terminal & column widths"
  663. default y
  664. depends on LS || MORE || TELNET
  665. help
  666. This option allows utilities such as 'ls', 'more' and 'telnet'
  667. to determine the width of the screen, which can allow them to
  668. display additional text or avoid wrapping text onto the next line.
  669. If you leave this disabled, your utilities will be especially
  670. primitive and will be unable to determine the current screen width.
  671. comment "Common options for df, du, ls"
  672. depends on DF || DU || LS
  673. config FEATURE_HUMAN_READABLE
  674. bool "Support for human readable output (example 13k, 23M, 235G)"
  675. default n
  676. depends on DF || DU || LS
  677. help
  678. Allow df, du, and ls to have human readable output.
  679. comment "Common options for md5sum, sha1sum"
  680. depends on MD5SUM || SHA1SUM
  681. config FEATURE_MD5_SHA1_SUM_CHECK
  682. bool "Enable -c, -s and -w options"
  683. default n
  684. depends on MD5SUM || SHA1SUM
  685. help
  686. Enabling the -c options allows files to be checked
  687. against pre-calculated hash values.
  688. -s and -w are useful options when verifying checksums.
  689. endmenu