Config.in 19 KB

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