Config.in 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679
  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 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 CONFIG_CAL
  14. bool "cal"
  15. default n
  16. help
  17. cal is used to display a monthly calender.
  18. config 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 CONFIG_CHGRP
  25. bool "chgrp"
  26. default n
  27. help
  28. chgrp is used to change the group ownership of files.
  29. config CONFIG_CHMOD
  30. bool "chmod"
  31. default n
  32. help
  33. chmod is used to change the access permission of files.
  34. config CONFIG_CHOWN
  35. bool "chown"
  36. default n
  37. help
  38. chown is used to change the user and/or group ownership
  39. of files.
  40. config CONFIG_CHROOT
  41. bool "chroot"
  42. default n
  43. help
  44. chroot is used to change the root directory and run a command.
  45. The default command is `/bin/sh'.
  46. config CONFIG_CMP
  47. bool "cmp"
  48. default n
  49. help
  50. cmp is used to compare two files and returns the result
  51. to standard output.
  52. config CONFIG_COMM
  53. bool "comm"
  54. default n
  55. help
  56. comm is used to compare two files line by line and return
  57. a three-column output.
  58. config CONFIG_CP
  59. bool "cp"
  60. default n
  61. help
  62. cp is used to copy files and directories.
  63. config CONFIG_CUT
  64. bool "cut"
  65. default n
  66. help
  67. cut is used to print selected parts of lines from
  68. each file to stdout.
  69. config CONFIG_DATE
  70. bool "date"
  71. default n
  72. help
  73. date is used to set the system date or display the
  74. current time in the given format.
  75. config CONFIG_FEATURE_DATE_ISOFMT
  76. bool " Enable ISO date format output (-I)"
  77. default y
  78. depends on CONFIG_DATE
  79. help
  80. Enable option (-I) to output an ISO-8601 compliant
  81. date/time string.
  82. config CONFIG_DD
  83. bool "dd"
  84. default n
  85. help
  86. dd copies a file (from standard input to standard output,
  87. by default) using specific input and output blocksizes,
  88. while optionally performing conversions on it.
  89. config CONFIG_DF
  90. bool "df"
  91. default n
  92. help
  93. df reports the amount of disk space used and available
  94. on filesystems.
  95. config CONFIG_DIRNAME
  96. bool "dirname"
  97. default n
  98. help
  99. dirname is used to strip a non-directory suffix from
  100. a file name.
  101. config CONFIG_DOS2UNIX
  102. bool "dos2unix/unix2dos"
  103. default n
  104. help
  105. dos2unix is used to convert a text file from DOS format to
  106. UNIX format, and vice versa.
  107. config CONFIG_UNIX2DOS
  108. bool
  109. default y
  110. depends on CONFIG_DOS2UNIX
  111. config CONFIG_DU
  112. bool "du (default blocksize of 512 bytes)"
  113. default n
  114. help
  115. du is used to report the amount of disk space used
  116. for specified files.
  117. config CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
  118. bool " Use a default blocksize of 1024 bytes (1K)"
  119. default y
  120. depends on CONFIG_DU
  121. help
  122. Use a blocksize of (1K) instead of the default 512b.
  123. config CONFIG_ECHO
  124. bool "echo (basic SuSv3 version taking no options)"
  125. default n
  126. help
  127. echo is used to print a specified string to stdout.
  128. # this entry also appears in shell/Config.in, next to the echo builtin
  129. config CONFIG_FEATURE_FANCY_ECHO
  130. bool " Enable echo options (-n and -e)"
  131. default y
  132. depends on CONFIG_ECHO
  133. help
  134. This adds options (-n and -e) to echo.
  135. config CONFIG_ENV
  136. bool "env"
  137. default n
  138. help
  139. env is used to set an environment variable and run
  140. a command; without options it displays the current
  141. environment.
  142. config CONFIG_EXPR
  143. bool "expr"
  144. default n
  145. help
  146. expr is used to calculate numbers and print the result
  147. to standard output.
  148. config CONFIG_EXPR_MATH_SUPPORT_64
  149. bool " Extend Posix numbers support to 64 bit"
  150. default n
  151. depends on CONFIG_EXPR
  152. help
  153. Enable 64-bit math support in the expr applet. This will make
  154. the applet slightly larger, but will allow computation with very
  155. large numbers.
  156. config CONFIG_FALSE
  157. bool "false"
  158. default n
  159. help
  160. false returns an exit code of FALSE (1).
  161. config CONFIG_FOLD
  162. bool "fold"
  163. default n
  164. help
  165. Wrap text to fit a specific width.
  166. config CONFIG_HEAD
  167. bool "head"
  168. default n
  169. help
  170. head is used to print the first specified number of lines
  171. from files.
  172. config CONFIG_FEATURE_FANCY_HEAD
  173. bool " Enable head options (-c, -q, and -v)"
  174. default n
  175. depends on CONFIG_HEAD
  176. help
  177. This enables the head options (-c, -q, and -v).
  178. config CONFIG_HOSTID
  179. bool "hostid"
  180. default n
  181. help
  182. hostid prints the numeric identifier (in hexadecimal) for
  183. the current host.
  184. config CONFIG_ID
  185. bool "id"
  186. default n
  187. help
  188. id displays the current user and group ID names.
  189. config CONFIG_INSTALL
  190. bool "install"
  191. default n
  192. help
  193. Copy files and set attributes.
  194. config CONFIG_LENGTH
  195. bool "length"
  196. default n
  197. help
  198. length is used to print out the length of a specified string.
  199. config CONFIG_LN
  200. bool "ln"
  201. default n
  202. help
  203. ln is used to create hard or soft links between files.
  204. config CONFIG_LOGNAME
  205. bool "logname"
  206. default n
  207. help
  208. logname is used to print the current user's login name.
  209. config CONFIG_LS
  210. bool "ls"
  211. default n
  212. help
  213. ls is used to list the contents of directories.
  214. config CONFIG_FEATURE_LS_FILETYPES
  215. bool " Enable filetyping options (-p and -F)"
  216. default y
  217. depends on CONFIG_LS
  218. help
  219. Enable the ls options (-p and -F).
  220. config CONFIG_FEATURE_LS_FOLLOWLINKS
  221. bool " Enable symlinks dereferencing (-L)"
  222. default y
  223. depends on CONFIG_LS
  224. help
  225. Enable the ls option (-L).
  226. config CONFIG_FEATURE_LS_RECURSIVE
  227. bool " Enable recursion (-R)"
  228. default y
  229. depends on CONFIG_LS
  230. help
  231. Enable the ls option (-R).
  232. config CONFIG_FEATURE_LS_SORTFILES
  233. bool " Sort the file names"
  234. default y
  235. depends on CONFIG_LS
  236. help
  237. Allow ls to sort file names alphabetically.
  238. config CONFIG_FEATURE_LS_TIMESTAMPS
  239. bool " Show file timestamps"
  240. default y
  241. depends on CONFIG_LS
  242. help
  243. Allow ls to display timestamps for files.
  244. config CONFIG_FEATURE_LS_USERNAME
  245. bool " Show username/groupnames"
  246. default y
  247. depends on CONFIG_LS
  248. help
  249. Allow ls to display username/groupname for files.
  250. config CONFIG_FEATURE_LS_COLOR
  251. bool " Allow use of color to identify file types"
  252. default y
  253. depends on CONFIG_LS
  254. help
  255. This enables the --color option to ls.
  256. config CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
  257. bool " Produce colored ls output by default"
  258. default n
  259. depends on CONFIG_FEATURE_LS_COLOR
  260. help
  261. Saying yes here will turn coloring on by default,
  262. even if no "--color" option is given to the ls command.
  263. This is not recommended, since the colors are not
  264. configurable, and the output may not be legible on
  265. many output screens.
  266. config CONFIG_MD5SUM
  267. bool "md5sum"
  268. default n
  269. help
  270. md5sum is used to print or check MD5 checksums.
  271. config CONFIG_MKDIR
  272. bool "mkdir"
  273. default n
  274. help
  275. mkdir is used to create directories with the specified names.
  276. config CONFIG_MKFIFO
  277. bool "mkfifo"
  278. default n
  279. help
  280. mkfifo is used to create FIFOs (named pipes).
  281. The `mknod' program can also create FIFOs.
  282. config CONFIG_MKNOD
  283. bool "mknod"
  284. default n
  285. help
  286. mknod is used to create FIFOs or block/character special
  287. files with the specified names.
  288. config CONFIG_MV
  289. bool "mv"
  290. default n
  291. help
  292. mv is used to move or rename files or directories.
  293. config CONFIG_NICE
  294. bool "nice"
  295. default n
  296. help
  297. nice runs a program with modified scheduling priority.
  298. config CONFIG_NOHUP
  299. bool "nohup"
  300. default n
  301. help
  302. run a command immune to hangups, with output to a non-tty.
  303. config CONFIG_OD
  304. bool "od"
  305. default n
  306. help
  307. od is used to dump binary files in octal and other formats.
  308. config CONFIG_PRINTENV
  309. bool "printenv"
  310. default n
  311. help
  312. printenv is used to print all or part of environment.
  313. config CONFIG_PRINTF
  314. bool "printf"
  315. default n
  316. help
  317. printf is used to format and print specified strings.
  318. It's similar to `echo' except it has more options.
  319. config CONFIG_PWD
  320. bool "pwd"
  321. default n
  322. help
  323. pwd is used to print the current directory.
  324. config CONFIG_REALPATH
  325. bool "realpath"
  326. default n
  327. help
  328. Return the canonicalized absolute pathname.
  329. This isn't provided by GNU shellutils, but where else does it belong.
  330. config CONFIG_RM
  331. bool "rm"
  332. default n
  333. help
  334. rm is used to remove files or directories.
  335. config CONFIG_RMDIR
  336. bool "rmdir"
  337. default n
  338. help
  339. rmdir is used to remove empty directories.
  340. config CONFIG_SEQ
  341. bool "seq"
  342. default n
  343. help
  344. print a sequence of numbers
  345. config CONFIG_SHA1SUM
  346. bool "sha1sum"
  347. default n
  348. help
  349. Compute and check SHA1 message digest
  350. config CONFIG_SLEEP
  351. bool "sleep (single integer arg with no suffix)"
  352. default n
  353. help
  354. sleep is used to pause for a specified number of seconds,
  355. config CONFIG_FEATURE_FANCY_SLEEP
  356. bool " Enable multiple integer args and optional time suffixes"
  357. default n
  358. depends on CONFIG_SLEEP
  359. help
  360. Allow sleep to pause for specified minutes, hours, and days.
  361. config CONFIG_SORT
  362. bool "sort"
  363. default n
  364. help
  365. sort is used to sort lines of text in specified files.
  366. config CONFIG_FEATURE_SORT_BIG
  367. bool " full SuSv3 compliant sort (Support -ktcsbdfiozgM)"
  368. default y
  369. depends on CONFIG_SORT
  370. help
  371. Without this, sort only supports -r, -u, and an integer version
  372. of -n. Selecting this adds sort keys, floating point support, and
  373. more. This adds a little over 3k to a nonstatic build on x86.
  374. The SuSv3 sort standard is available at:
  375. http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
  376. config CONFIG_STAT
  377. bool "stat"
  378. default n
  379. help
  380. display file or filesystem status.
  381. config CONFIG_FEATURE_STAT_FORMAT
  382. bool " Enable custom formats (-c)"
  383. default n
  384. depends on CONFIG_STAT
  385. help
  386. Without this, stat will not support the '-c format' option where
  387. users can pass a custom format string for output. This adds about
  388. 7k to a nonstatic build on amd64.
  389. config CONFIG_STTY
  390. bool "stty"
  391. default n
  392. help
  393. stty is used to change and print terminal line settings.
  394. config CONFIG_SUM
  395. bool "sum"
  396. default n
  397. help
  398. checksum and count the blocks in a file
  399. config CONFIG_SYNC
  400. bool "sync"
  401. default n
  402. help
  403. sync is used to flush filesystem buffers.
  404. config CONFIG_TAIL
  405. bool "tail"
  406. default n
  407. help
  408. tail is used to print the last specified number of lines
  409. from files.
  410. config CONFIG_FEATURE_FANCY_TAIL
  411. bool " Enable extra tail options (-q, -s, and -v)"
  412. default y
  413. depends on CONFIG_TAIL
  414. help
  415. The options (-q, -s, and -v) are provided by GNU tail, but
  416. are not specific in the SUSv3 standard.
  417. config CONFIG_TEE
  418. bool "tee"
  419. default n
  420. help
  421. tee is used to read from standard input and write
  422. to standard output and files.
  423. config CONFIG_FEATURE_TEE_USE_BLOCK_IO
  424. bool " Enable block i/o (larger/faster) instead of byte i/o."
  425. default n
  426. depends on CONFIG_TEE
  427. help
  428. Enable this option for a faster tee, at expense of size.
  429. config CONFIG_TEST
  430. bool "test"
  431. default n
  432. help
  433. test is used to check file types and compare values,
  434. returning an appropriate exit code. The shells (ash
  435. and bash) have test builtin.
  436. config CONFIG_FEATURE_TEST_64
  437. bool " Extend test to 64 bit"
  438. default n
  439. depends on CONFIG_TEST
  440. help
  441. Enable 64-bit support in test.
  442. config CONFIG_TOUCH
  443. bool "touch"
  444. default n
  445. help
  446. touch is used to create or change the access and/or
  447. modification timestamp of specified files.
  448. config CONFIG_TR
  449. bool "tr"
  450. default n
  451. help
  452. tr is used to squeeze, and/or delete characters from standard
  453. input, writing to standard output.
  454. config CONFIG_FEATURE_TR_CLASSES
  455. bool " Enable character classes (such as [:upper:])"
  456. default n
  457. depends on CONFIG_TR
  458. help
  459. Enable character classes, enabling commands such as:
  460. tr [:upper:] [:lower:] to convert input into lowercase.
  461. config CONFIG_FEATURE_TR_EQUIV
  462. bool " Enable equivalence classes"
  463. default n
  464. depends on CONFIG_TR
  465. help
  466. Enable equivalence classes, which essentially add the enclosed
  467. character to the current set. For instance, tr [=a=] xyz would
  468. replace all instances of 'a' with 'xyz'. This option is mainly
  469. useful for cases when no other way of expressing a character
  470. is possible.
  471. config CONFIG_TRUE
  472. bool "true"
  473. default n
  474. help
  475. true returns an exit code of TRUE (0).
  476. config CONFIG_TTY
  477. bool "tty"
  478. default n
  479. help
  480. tty is used to print the name of the current terminal to
  481. standard output.
  482. config CONFIG_UNAME
  483. bool "uname"
  484. default n
  485. help
  486. uname is used to print system information.
  487. config CONFIG_UNIQ
  488. bool "uniq"
  489. default n
  490. help
  491. uniq is used to remove duplicate lines from a sorted file.
  492. config CONFIG_USLEEP
  493. bool "usleep"
  494. default n
  495. help
  496. usleep is used to pause for a specified number of microseconds.
  497. config CONFIG_UUDECODE
  498. bool "uudecode"
  499. default n
  500. help
  501. uudecode is used to decode a uuencoded file.
  502. config CONFIG_UUENCODE
  503. bool "uuencode"
  504. default n
  505. help
  506. uuencode is used to uuencode a file.
  507. config CONFIG_WATCH
  508. bool "watch"
  509. default n
  510. select CONFIG_DATE
  511. help
  512. watch is used to execute a program periodically, showing
  513. output to the screen.
  514. config CONFIG_WC
  515. bool "wc"
  516. default n
  517. help
  518. wc is used to print the number of bytes, words, and lines,
  519. in specified files.
  520. config CONFIG_WHO
  521. bool "who"
  522. default n
  523. select CONFIG_FEATURE_UTMP
  524. help
  525. who is used to show who is logged on.
  526. config CONFIG_WHOAMI
  527. bool "whoami"
  528. default n
  529. help
  530. whoami is used to print the username of the current
  531. user id (same as id -un).
  532. config CONFIG_YES
  533. bool "yes"
  534. default n
  535. help
  536. yes is used to repeatedly output a specific string, or
  537. the default string `y'.
  538. comment "Common options for cp and mv"
  539. depends on CONFIG_CP || CONFIG_MV
  540. config CONFIG_FEATURE_PRESERVE_HARDLINKS
  541. bool " Preserve hard links"
  542. default n
  543. depends on CONFIG_CP || CONFIG_MV
  544. help
  545. Allow cp and mv to preserve hard links.
  546. comment "Common options for ls, more and telnet"
  547. depends on CONFIG_LS || CONFIG_MORE || CONFIG_TELNET
  548. config CONFIG_FEATURE_AUTOWIDTH
  549. bool " Calculate terminal & column widths"
  550. default y
  551. depends on CONFIG_LS || CONFIG_MORE || CONFIG_TELNET
  552. help
  553. This option allows utilities such as 'ls', 'more' and 'telnet'
  554. to determine the width of the screen, which can allow them to
  555. display additional text or avoid wrapping text onto the next line.
  556. If you leave this disabled, your utilities will be especially
  557. primitive and will be unable to determine the current screen width.
  558. comment "Common options for df, du, ls"
  559. depends on CONFIG_DF || CONFIG_DU || CONFIG_LS
  560. config CONFIG_FEATURE_HUMAN_READABLE
  561. bool " Support for human readable output (example 13k, 23M, 235G)"
  562. default n
  563. depends on CONFIG_DF || CONFIG_DU || CONFIG_LS
  564. help
  565. Allow df, du, and ls to have human readable output.
  566. comment "Common options for md5sum, sha1sum"
  567. depends on CONFIG_MD5SUM || CONFIG_SHA1SUM
  568. config CONFIG_FEATURE_MD5_SHA1_SUM_CHECK
  569. bool " Enable -c, -s and -w options"
  570. default n
  571. depends on CONFIG_MD5SUM || CONFIG_SHA1SUM
  572. help
  573. Enabling the -c options allows files to be checked
  574. against pre-calculated hash values.
  575. -s and -w are useful options when verifying checksums.
  576. endmenu