Config.in 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790
  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 BUSYBOX_CONFIG_BASENAME
  7. bool "basename"
  8. default y
  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 BUSYBOX_CONFIG_CAL
  14. bool "cal"
  15. default n
  16. help
  17. cal is used to display a monthly calender.
  18. config BUSYBOX_CONFIG_CAT
  19. bool "cat"
  20. default y
  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 BUSYBOX_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 BUSYBOX_CONFIG_CHGRP
  31. bool "chgrp"
  32. default y
  33. help
  34. chgrp is used to change the group ownership of files.
  35. config BUSYBOX_CONFIG_CHMOD
  36. bool "chmod"
  37. default y
  38. help
  39. chmod is used to change the access permission of files.
  40. config BUSYBOX_CONFIG_CHOWN
  41. bool "chown"
  42. default y
  43. help
  44. chown is used to change the user and/or group ownership
  45. of files.
  46. config BUSYBOX_CONFIG_CHROOT
  47. bool "chroot"
  48. default y
  49. help
  50. chroot is used to change the root directory and run a command.
  51. The default command is `/bin/sh'.
  52. config BUSYBOX_CONFIG_CKSUM
  53. bool "cksum"
  54. default n
  55. help
  56. cksum is used to calculate the CRC32 checksum of a file.
  57. config BUSYBOX_CONFIG_COMM
  58. bool "comm"
  59. default n
  60. help
  61. comm is used to compare two files line by line and return
  62. a three-column output.
  63. config BUSYBOX_CONFIG_CP
  64. bool "cp"
  65. default y
  66. help
  67. cp is used to copy files and directories.
  68. config BUSYBOX_CONFIG_CUT
  69. bool "cut"
  70. default y
  71. help
  72. cut is used to print selected parts of lines from
  73. each file to stdout.
  74. config BUSYBOX_CONFIG_DATE
  75. bool "date"
  76. default y
  77. help
  78. date is used to set the system date or display the
  79. current time in the given format.
  80. config BUSYBOX_CONFIG_FEATURE_DATE_ISOFMT
  81. bool "Enable ISO date format output (-I)"
  82. default y
  83. depends on BUSYBOX_CONFIG_DATE
  84. help
  85. Enable option (-I) to output an ISO-8601 compliant
  86. date/time string.
  87. config BUSYBOX_CONFIG_DD
  88. bool "dd"
  89. default y
  90. help
  91. dd copies a file (from standard input to standard output,
  92. by default) using specific input and output blocksizes,
  93. while optionally performing conversions on it.
  94. config BUSYBOX_CONFIG_FEATURE_DD_SIGNAL_HANDLING
  95. bool "Enable DD signal handling for status reporting"
  96. default y
  97. depends on BUSYBOX_CONFIG_DD
  98. help
  99. sending a SIGUSR1 signal to a running `dd' process makes it
  100. print to standard error the number of records read and written
  101. so far, then to resume copying.
  102. $ dd if=/dev/zero of=/dev/null& pid=$! $ kill -USR1 $pid; sleep 1; kill $pid
  103. 10899206+0 records in 10899206+0 records out
  104. config BUSYBOX_CONFIG_FEATURE_DD_IBS_OBS
  105. bool "Enable ibs, obs and conv options"
  106. default n
  107. depends on BUSYBOX_CONFIG_DD
  108. help
  109. Enables support for writing a certain number of bytes in and out,
  110. at a time, and performing conversions on the data stream.
  111. config BUSYBOX_CONFIG_DF
  112. bool "df"
  113. default y
  114. help
  115. df reports the amount of disk space used and available
  116. on filesystems.
  117. config BUSYBOX_CONFIG_DIRNAME
  118. bool "dirname"
  119. default y
  120. help
  121. dirname is used to strip a non-directory suffix from
  122. a file name.
  123. config BUSYBOX_CONFIG_DOS2UNIX
  124. bool "dos2unix/unix2dos"
  125. default n
  126. help
  127. dos2unix is used to convert a text file from DOS format to
  128. UNIX format, and vice versa.
  129. config BUSYBOX_CONFIG_UNIX2DOS
  130. bool
  131. default n
  132. depends on BUSYBOX_CONFIG_DOS2UNIX
  133. help
  134. unix2dos is used to convert a text file from UNIX format to
  135. DOS format, and vice versa.
  136. config BUSYBOX_CONFIG_DU
  137. bool "du (default blocksize of 512 bytes)"
  138. default y
  139. help
  140. du is used to report the amount of disk space used
  141. for specified files.
  142. config BUSYBOX_CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
  143. bool "Use a default blocksize of 1024 bytes (1K)"
  144. default y
  145. depends on BUSYBOX_CONFIG_DU
  146. help
  147. Use a blocksize of (1K) instead of the default 512b.
  148. config BUSYBOX_CONFIG_ECHO
  149. bool "echo (basic SuSv3 version taking no options)"
  150. default y
  151. help
  152. echo is used to print a specified string to stdout.
  153. # this entry also appears in shell/Config.in, next to the echo builtin
  154. config BUSYBOX_CONFIG_FEATURE_FANCY_ECHO
  155. bool "Enable echo options (-n and -e)"
  156. default y
  157. depends on BUSYBOX_CONFIG_ECHO
  158. help
  159. This adds options (-n and -e) to echo.
  160. config BUSYBOX_CONFIG_ENV
  161. bool "env"
  162. default y
  163. help
  164. env is used to set an environment variable and run
  165. a command; without options it displays the current
  166. environment.
  167. config BUSYBOX_CONFIG_FEATURE_ENV_LONG_OPTIONS
  168. bool "Enable long options"
  169. default n
  170. depends on BUSYBOX_CONFIG_ENV && BUSYBOX_CONFIG_GETOPT_LONG
  171. help
  172. Support long options for the env applet.
  173. config BUSYBOX_CONFIG_EXPAND
  174. bool "expand"
  175. default n
  176. help
  177. By default, convert all tabs to spaces.
  178. config BUSYBOX_CONFIG_FEATURE_EXPAND_LONG_OPTIONS
  179. bool "Enable long options"
  180. default n
  181. depends on BUSYBOX_CONFIG_EXPAND && BUSYBOX_CONFIG_GETOPT_LONG
  182. help
  183. Support long options for the expand applet.
  184. config BUSYBOX_CONFIG_EXPR
  185. bool "expr"
  186. default y
  187. help
  188. expr is used to calculate numbers and print the result
  189. to standard output.
  190. config BUSYBOX_CONFIG_EXPR_MATH_SUPPORT_64
  191. bool "Extend Posix numbers support to 64 bit"
  192. default n
  193. depends on BUSYBOX_CONFIG_EXPR
  194. help
  195. Enable 64-bit math support in the expr applet. This will make
  196. the applet slightly larger, but will allow computation with very
  197. large numbers.
  198. config BUSYBOX_CONFIG_FALSE
  199. bool "false"
  200. default y
  201. help
  202. false returns an exit code of FALSE (1).
  203. config BUSYBOX_CONFIG_FOLD
  204. bool "fold"
  205. default n
  206. help
  207. Wrap text to fit a specific width.
  208. config BUSYBOX_CONFIG_HEAD
  209. bool "head"
  210. default y
  211. help
  212. head is used to print the first specified number of lines
  213. from files.
  214. config BUSYBOX_CONFIG_FEATURE_FANCY_HEAD
  215. bool "Enable head options (-c, -q, and -v)"
  216. default y
  217. depends on BUSYBOX_CONFIG_HEAD
  218. help
  219. This enables the head options (-c, -q, and -v).
  220. config BUSYBOX_CONFIG_HOSTID
  221. bool "hostid"
  222. default y
  223. help
  224. hostid prints the numeric identifier (in hexadecimal) for
  225. the current host.
  226. config BUSYBOX_CONFIG_ID
  227. bool "id"
  228. default y
  229. help
  230. id displays the current user and group ID names.
  231. config BUSYBOX_CONFIG_INSTALL
  232. bool "install"
  233. default n
  234. help
  235. Copy files and set attributes.
  236. config BUSYBOX_CONFIG_FEATURE_INSTALL_LONG_OPTIONS
  237. bool "Enable long options"
  238. default n
  239. depends on BUSYBOX_CONFIG_INSTALL && BUSYBOX_CONFIG_GETOPT_LONG
  240. help
  241. Support long options for the install applet.
  242. config BUSYBOX_CONFIG_LENGTH
  243. bool "length"
  244. default y
  245. help
  246. length is used to print out the length of a specified string.
  247. config BUSYBOX_CONFIG_LN
  248. bool "ln"
  249. default y
  250. help
  251. ln is used to create hard or soft links between files.
  252. config BUSYBOX_CONFIG_LOGNAME
  253. bool "logname"
  254. default n
  255. help
  256. logname is used to print the current user's login name.
  257. config BUSYBOX_CONFIG_LS
  258. bool "ls"
  259. default y
  260. help
  261. ls is used to list the contents of directories.
  262. config BUSYBOX_CONFIG_FEATURE_LS_FILETYPES
  263. bool "Enable filetyping options (-p and -F)"
  264. default y
  265. depends on BUSYBOX_CONFIG_LS
  266. help
  267. Enable the ls options (-p and -F).
  268. config BUSYBOX_CONFIG_FEATURE_LS_FOLLOWLINKS
  269. bool "Enable symlinks dereferencing (-L)"
  270. default y
  271. depends on BUSYBOX_CONFIG_LS
  272. help
  273. Enable the ls option (-L).
  274. config BUSYBOX_CONFIG_FEATURE_LS_RECURSIVE
  275. bool "Enable recursion (-R)"
  276. default y
  277. depends on BUSYBOX_CONFIG_LS
  278. help
  279. Enable the ls option (-R).
  280. config BUSYBOX_CONFIG_FEATURE_LS_SORTFILES
  281. bool "Sort the file names"
  282. default y
  283. depends on BUSYBOX_CONFIG_LS
  284. help
  285. Allow ls to sort file names alphabetically.
  286. config BUSYBOX_CONFIG_FEATURE_LS_TIMESTAMPS
  287. bool "Show file timestamps"
  288. default y
  289. depends on BUSYBOX_CONFIG_LS
  290. help
  291. Allow ls to display timestamps for files.
  292. config BUSYBOX_CONFIG_FEATURE_LS_USERNAME
  293. bool "Show username/groupnames"
  294. default y
  295. depends on BUSYBOX_CONFIG_LS
  296. help
  297. Allow ls to display username/groupname for files.
  298. config BUSYBOX_CONFIG_FEATURE_LS_COLOR
  299. bool "Allow use of color to identify file types"
  300. default y
  301. depends on BUSYBOX_CONFIG_LS && BUSYBOX_CONFIG_GETOPT_LONG
  302. help
  303. This enables the --color option to ls.
  304. config BUSYBOX_CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
  305. bool "Produce colored ls output by default"
  306. default y
  307. depends on BUSYBOX_CONFIG_FEATURE_LS_COLOR
  308. help
  309. Saying yes here will turn coloring on by default,
  310. even if no "--color" option is given to the ls command.
  311. This is not recommended, since the colors are not
  312. configurable, and the output may not be legible on
  313. many output screens.
  314. config BUSYBOX_CONFIG_MD5SUM
  315. bool "md5sum"
  316. default y
  317. help
  318. md5sum is used to print or check MD5 checksums.
  319. config BUSYBOX_CONFIG_MKDIR
  320. bool "mkdir"
  321. default y
  322. help
  323. mkdir is used to create directories with the specified names.
  324. config BUSYBOX_CONFIG_FEATURE_MKDIR_LONG_OPTIONS
  325. bool "Enable long options"
  326. default n
  327. depends on BUSYBOX_CONFIG_MKDIR && BUSYBOX_CONFIG_GETOPT_LONG
  328. help
  329. Support long options for the mkdir applet.
  330. config BUSYBOX_CONFIG_MKFIFO
  331. bool "mkfifo"
  332. default y
  333. help
  334. mkfifo is used to create FIFOs (named pipes).
  335. The `mknod' program can also create FIFOs.
  336. config BUSYBOX_CONFIG_MKNOD
  337. bool "mknod"
  338. default y
  339. help
  340. mknod is used to create FIFOs or block/character special
  341. files with the specified names.
  342. config BUSYBOX_CONFIG_MV
  343. bool "mv"
  344. default y
  345. help
  346. mv is used to move or rename files or directories.
  347. config BUSYBOX_CONFIG_FEATURE_MV_LONG_OPTIONS
  348. bool "Enable long options"
  349. default n
  350. depends on BUSYBOX_CONFIG_MV && BUSYBOX_CONFIG_GETOPT_LONG
  351. help
  352. Support long options for the mv applet.
  353. config BUSYBOX_CONFIG_NICE
  354. bool "nice"
  355. default y
  356. help
  357. nice runs a program with modified scheduling priority.
  358. config BUSYBOX_CONFIG_NOHUP
  359. bool "nohup"
  360. default n
  361. help
  362. run a command immune to hangups, with output to a non-tty.
  363. config BUSYBOX_CONFIG_OD
  364. bool "od"
  365. default n
  366. help
  367. od is used to dump binary files in octal and other formats.
  368. config BUSYBOX_CONFIG_PRINTENV
  369. bool "printenv"
  370. default n
  371. help
  372. printenv is used to print all or part of environment.
  373. config BUSYBOX_CONFIG_PRINTF
  374. bool "printf"
  375. default y
  376. help
  377. printf is used to format and print specified strings.
  378. It's similar to `echo' except it has more options.
  379. config BUSYBOX_CONFIG_PWD
  380. bool "pwd"
  381. default y
  382. help
  383. pwd is used to print the current directory.
  384. config BUSYBOX_CONFIG_READLINK
  385. bool "readlink"
  386. default n
  387. help
  388. This program reads a symbolic link and returns the name
  389. of the file it points to
  390. config BUSYBOX_CONFIG_FEATURE_READLINK_FOLLOW
  391. bool "Enable canonicalization by following all symlinks (-f)"
  392. default n
  393. depends on BUSYBOX_CONFIG_READLINK
  394. help
  395. Enable the readlink option (-f).
  396. config BUSYBOX_CONFIG_REALPATH
  397. bool "realpath"
  398. default n
  399. help
  400. Return the canonicalized absolute pathname.
  401. This isn't provided by GNU shellutils, but where else does it belong.
  402. config BUSYBOX_CONFIG_RM
  403. bool "rm"
  404. default y
  405. help
  406. rm is used to remove files or directories.
  407. config BUSYBOX_CONFIG_RMDIR
  408. bool "rmdir"
  409. default y
  410. help
  411. rmdir is used to remove empty directories.
  412. config BUSYBOX_CONFIG_SEQ
  413. bool "seq"
  414. default y
  415. help
  416. print a sequence of numbers
  417. config BUSYBOX_CONFIG_SHA1SUM
  418. bool "sha1sum"
  419. default n
  420. help
  421. Compute and check SHA1 message digest
  422. config BUSYBOX_CONFIG_SLEEP
  423. bool "sleep (single integer arg with no suffix)"
  424. default y
  425. help
  426. sleep is used to pause for a specified number of seconds,
  427. config BUSYBOX_CONFIG_FEATURE_FANCY_SLEEP
  428. bool "Enable multiple integer args and optional time suffixes"
  429. default y
  430. depends on BUSYBOX_CONFIG_SLEEP
  431. help
  432. Allow sleep to pause for specified minutes, hours, and days.
  433. config BUSYBOX_CONFIG_SORT
  434. bool "sort"
  435. default y
  436. help
  437. sort is used to sort lines of text in specified files.
  438. config BUSYBOX_CONFIG_FEATURE_SORT_BIG
  439. bool "full SuSv3 compliant sort (Support -ktcsbdfiozgM)"
  440. default n
  441. depends on BUSYBOX_CONFIG_SORT
  442. help
  443. Without this, sort only supports -r, -u, and an integer version
  444. of -n. Selecting this adds sort keys, floating point support, and
  445. more. This adds a little over 3k to a nonstatic build on x86.
  446. The SuSv3 sort standard is available at:
  447. http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
  448. config BUSYBOX_CONFIG_SPLIT
  449. bool "split"
  450. default n
  451. help
  452. split a file into pieces.
  453. config BUSYBOX_CONFIG_FEATURE_SPLIT_FANCY
  454. bool "fancy extensions"
  455. default n
  456. depends on BUSYBOX_CONFIG_SPLIT
  457. help
  458. Add support for features not required by SUSv3.
  459. Supports additional suffixes 'b' for 512 bytes,
  460. 'g' for 1GiB for the -b option.
  461. config BUSYBOX_CONFIG_STAT
  462. bool "stat"
  463. default n
  464. help
  465. display file or filesystem status.
  466. config BUSYBOX_CONFIG_FEATURE_STAT_FORMAT
  467. bool "Enable custom formats (-c)"
  468. default n
  469. depends on BUSYBOX_CONFIG_STAT
  470. help
  471. Without this, stat will not support the '-c format' option where
  472. users can pass a custom format string for output. This adds about
  473. 7k to a nonstatic build on amd64.
  474. config BUSYBOX_CONFIG_STTY
  475. bool "stty"
  476. default n
  477. help
  478. stty is used to change and print terminal line settings.
  479. config BUSYBOX_CONFIG_SUM
  480. bool "sum"
  481. default n
  482. help
  483. checksum and count the blocks in a file
  484. config BUSYBOX_CONFIG_SYNC
  485. bool "sync"
  486. default y
  487. help
  488. sync is used to flush filesystem buffers.
  489. config BUSYBOX_CONFIG_TAIL
  490. bool "tail"
  491. default y
  492. help
  493. tail is used to print the last specified number of lines
  494. from files.
  495. config BUSYBOX_CONFIG_FEATURE_FANCY_TAIL
  496. bool "Enable extra tail options (-q, -s, and -v)"
  497. default y
  498. depends on BUSYBOX_CONFIG_TAIL
  499. help
  500. The options (-q, -s, and -v) are provided by GNU tail, but
  501. are not specific in the SUSv3 standard.
  502. config BUSYBOX_CONFIG_TEE
  503. bool "tee"
  504. default y
  505. help
  506. tee is used to read from standard input and write
  507. to standard output and files.
  508. config BUSYBOX_CONFIG_FEATURE_TEE_USE_BLOCK_IO
  509. bool "Enable block i/o (larger/faster) instead of byte i/o."
  510. default y
  511. depends on BUSYBOX_CONFIG_TEE
  512. help
  513. Enable this option for a faster tee, at expense of size.
  514. config BUSYBOX_CONFIG_TEST
  515. bool "test"
  516. default y
  517. help
  518. test is used to check file types and compare values,
  519. returning an appropriate exit code. The bash shell
  520. has test built in, ash can build it in optionally.
  521. config BUSYBOX_CONFIG_FEATURE_TEST_64
  522. bool "Extend test to 64 bit"
  523. default n
  524. depends on BUSYBOX_CONFIG_TEST
  525. help
  526. Enable 64-bit support in test.
  527. config BUSYBOX_CONFIG_TOUCH
  528. bool "touch"
  529. default y
  530. help
  531. touch is used to create or change the access and/or
  532. modification timestamp of specified files.
  533. config BUSYBOX_CONFIG_TR
  534. bool "tr"
  535. default y
  536. help
  537. tr is used to squeeze, and/or delete characters from standard
  538. input, writing to standard output.
  539. config BUSYBOX_CONFIG_FEATURE_TR_CLASSES
  540. bool "Enable character classes (such as [:upper:])"
  541. default n
  542. depends on BUSYBOX_CONFIG_TR
  543. help
  544. Enable character classes, enabling commands such as:
  545. tr [:upper:] [:lower:] to convert input into lowercase.
  546. config BUSYBOX_CONFIG_FEATURE_TR_EQUIV
  547. bool "Enable equivalence classes"
  548. default n
  549. depends on BUSYBOX_CONFIG_TR
  550. help
  551. Enable equivalence classes, which essentially add the enclosed
  552. character to the current set. For instance, tr [=a=] xyz would
  553. replace all instances of 'a' with 'xyz'. This option is mainly
  554. useful for cases when no other way of expressing a character
  555. is possible.
  556. config BUSYBOX_CONFIG_TRUE
  557. bool "true"
  558. default y
  559. help
  560. true returns an exit code of TRUE (0).
  561. config BUSYBOX_CONFIG_TTY
  562. bool "tty"
  563. default n
  564. help
  565. tty is used to print the name of the current terminal to
  566. standard output.
  567. config BUSYBOX_CONFIG_UNAME
  568. bool "uname"
  569. default y
  570. help
  571. uname is used to print system information.
  572. config BUSYBOX_CONFIG_UNEXPAND
  573. bool "unexpand"
  574. default n
  575. help
  576. By default, convert only leading sequences of blanks to tabs.
  577. config BUSYBOX_CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS
  578. bool "Enable long options"
  579. default n
  580. depends on BUSYBOX_CONFIG_UNEXPAND && BUSYBOX_CONFIG_GETOPT_LONG
  581. help
  582. Support long options for the unexpand applet.
  583. config BUSYBOX_CONFIG_UNIQ
  584. bool "uniq"
  585. default y
  586. help
  587. uniq is used to remove duplicate lines from a sorted file.
  588. config BUSYBOX_CONFIG_USLEEP
  589. bool "usleep"
  590. default n
  591. help
  592. usleep is used to pause for a specified number of microseconds.
  593. config BUSYBOX_CONFIG_UUDECODE
  594. bool "uudecode"
  595. default n
  596. help
  597. uudecode is used to decode a uuencoded file.
  598. config BUSYBOX_CONFIG_UUENCODE
  599. bool "uuencode"
  600. default n
  601. help
  602. uuencode is used to uuencode a file.
  603. config BUSYBOX_CONFIG_WC
  604. bool "wc"
  605. default y
  606. help
  607. wc is used to print the number of bytes, words, and lines,
  608. in specified files.
  609. config BUSYBOX_CONFIG_FEATURE_WC_LARGE
  610. bool "Support very large files in wc"
  611. default n
  612. depends on BUSYBOX_CONFIG_WC
  613. help
  614. Use "unsigned long long" in wc for count variables
  615. config BUSYBOX_CONFIG_WHO
  616. bool "who"
  617. default n
  618. select BUSYBOX_CONFIG_FEATURE_UTMP
  619. help
  620. who is used to show who is logged on.
  621. config BUSYBOX_CONFIG_WHOAMI
  622. bool "whoami"
  623. default n
  624. help
  625. whoami is used to print the username of the current
  626. user id (same as id -un).
  627. config BUSYBOX_CONFIG_YES
  628. bool "yes"
  629. default y
  630. help
  631. yes is used to repeatedly output a specific string, or
  632. the default string `y'.
  633. comment "Common options for cp and mv"
  634. depends on BUSYBOX_CONFIG_CP || BUSYBOX_CONFIG_MV
  635. config BUSYBOX_CONFIG_FEATURE_PRESERVE_HARDLINKS
  636. bool "Preserve hard links"
  637. default y
  638. depends on BUSYBOX_CONFIG_CP || BUSYBOX_CONFIG_MV
  639. help
  640. Allow cp and mv to preserve hard links.
  641. comment "Common options for ls, more and telnet"
  642. depends on BUSYBOX_CONFIG_LS || BUSYBOX_CONFIG_MORE || BUSYBOX_CONFIG_TELNET
  643. config BUSYBOX_CONFIG_FEATURE_AUTOWIDTH
  644. bool "Calculate terminal & column widths"
  645. default y
  646. depends on BUSYBOX_CONFIG_LS || BUSYBOX_CONFIG_MORE || BUSYBOX_CONFIG_TELNET
  647. help
  648. This option allows utilities such as 'ls', 'more' and 'telnet'
  649. to determine the width of the screen, which can allow them to
  650. display additional text or avoid wrapping text onto the next line.
  651. If you leave this disabled, your utilities will be especially
  652. primitive and will be unable to determine the current screen width.
  653. comment "Common options for df, du, ls"
  654. depends on BUSYBOX_CONFIG_DF || BUSYBOX_CONFIG_DU || BUSYBOX_CONFIG_LS
  655. config BUSYBOX_CONFIG_FEATURE_HUMAN_READABLE
  656. bool "Support for human readable output (example 13k, 23M, 235G)"
  657. default y
  658. depends on BUSYBOX_CONFIG_DF || BUSYBOX_CONFIG_DU || BUSYBOX_CONFIG_LS
  659. help
  660. Allow df, du, and ls to have human readable output.
  661. comment "Common options for md5sum, sha1sum"
  662. depends on BUSYBOX_CONFIG_MD5SUM || BUSYBOX_CONFIG_SHA1SUM
  663. config BUSYBOX_CONFIG_FEATURE_MD5_SHA1_SUM_CHECK
  664. bool "Enable -c, -s and -w options"
  665. default y
  666. depends on BUSYBOX_CONFIG_MD5SUM || BUSYBOX_CONFIG_SHA1SUM
  667. help
  668. Enabling the -c options allows files to be checked
  669. against pre-calculated hash values.
  670. -s and -w are useful options when verifying checksums.
  671. endmenu