Config.in 16 KB

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