Config.in 13 KB

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