Config.in 14 KB

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