Config.in 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909
  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_BASE64
  7. bool "base64"
  8. default y
  9. help
  10. Base64 encode and decode
  11. config BUSYBOX_BASENAME
  12. bool "basename"
  13. default y
  14. help
  15. basename is used to strip the directory and suffix from filenames,
  16. leaving just the filename itself. Enable this option if you wish
  17. to enable the 'basename' utility.
  18. config BUSYBOX_CAL
  19. bool "cal"
  20. default n
  21. help
  22. cal is used to display a monthly calender.
  23. config BUSYBOX_CAT
  24. bool "cat"
  25. default y
  26. help
  27. cat is used to concatenate files and print them to the standard
  28. output. Enable this option if you wish to enable the 'cat' utility.
  29. config BUSYBOX_CATV
  30. bool "catv"
  31. default n
  32. help
  33. Display nonprinting characters as escape sequences (like some
  34. implementations' cat -v option).
  35. config BUSYBOX_CHGRP
  36. bool "chgrp"
  37. default y
  38. help
  39. chgrp is used to change the group ownership of files.
  40. config BUSYBOX_CHMOD
  41. bool "chmod"
  42. default y
  43. help
  44. chmod is used to change the access permission of files.
  45. config BUSYBOX_CHOWN
  46. bool "chown"
  47. default y
  48. help
  49. chown is used to change the user and/or group ownership
  50. of files.
  51. config BUSYBOX_FEATURE_CHOWN_LONG_OPTIONS
  52. bool "Enable long options"
  53. default n
  54. depends on BUSYBOX_CHOWN && BUSYBOX_LONG_OPTS
  55. help
  56. Enable use of long options
  57. config BUSYBOX_CHROOT
  58. bool "chroot"
  59. default y
  60. help
  61. chroot is used to change the root directory and run a command.
  62. The default command is `/bin/sh'.
  63. config BUSYBOX_CKSUM
  64. bool "cksum"
  65. default n
  66. help
  67. cksum is used to calculate the CRC32 checksum of a file.
  68. config BUSYBOX_COMM
  69. bool "comm"
  70. default y
  71. help
  72. comm is used to compare two files line by line and return
  73. a three-column output.
  74. config BUSYBOX_CP
  75. bool "cp"
  76. default y
  77. help
  78. cp is used to copy files and directories.
  79. config BUSYBOX_FEATURE_CP_LONG_OPTIONS
  80. bool "Enable long options for cp"
  81. default n
  82. depends on BUSYBOX_CP && BUSYBOX_LONG_OPTS
  83. help
  84. Enable long options for cp.
  85. Also add support for --parents option.
  86. config BUSYBOX_CUT
  87. bool "cut"
  88. default y
  89. help
  90. cut is used to print selected parts of lines from
  91. each file to stdout.
  92. config BUSYBOX_DATE
  93. bool "date"
  94. default y
  95. help
  96. date is used to set the system date or display the
  97. current time in the given format.
  98. config BUSYBOX_FEATURE_DATE_ISOFMT
  99. bool "Enable ISO date format output (-I)"
  100. default y
  101. depends on BUSYBOX_DATE
  102. help
  103. Enable option (-I) to output an ISO-8601 compliant
  104. date/time string.
  105. # defaults to "no": stat's nanosecond field is a bit non-portable
  106. config BUSYBOX_FEATURE_DATE_NANO
  107. bool "Support %[num]N nanosecond format specifier"
  108. default n
  109. depends on BUSYBOX_DATE && BUSYBOX_PLATFORM_LINUX # syscall(__NR_clock_gettime)
  110. help
  111. Support %[num]N format specifier. Adds ~250 bytes of code.
  112. config BUSYBOX_FEATURE_DATE_COMPAT
  113. bool "Support weird 'date MMDDhhmm[[YY]YY][.ss]' format"
  114. default y
  115. depends on BUSYBOX_DATE
  116. help
  117. System time can be set by 'date -s DATE' and simply 'date DATE',
  118. but formats of DATE string are different. 'date DATE' accepts
  119. a rather weird MMDDhhmm[[YY]YY][.ss] format with completely
  120. unnatural placement of year between minutes and seconds.
  121. date -s (and other commands like touch -d) use more sensible
  122. formats (for one, ISO format YYYY-MM-DD hh:mm:ss.ssssss).
  123. With this option off, 'date DATE' is 'date -s DATE' support
  124. the same format. With it on, 'date DATE' additionally supports
  125. MMDDhhmm[[YY]YY][.ss] format.
  126. config BUSYBOX_DD
  127. bool "dd"
  128. default y
  129. help
  130. dd copies a file (from standard input to standard output,
  131. by default) using specific input and output blocksizes,
  132. while optionally performing conversions on it.
  133. config BUSYBOX_FEATURE_DD_SIGNAL_HANDLING
  134. bool "Enable DD signal handling for status reporting"
  135. default y
  136. depends on BUSYBOX_DD
  137. help
  138. Sending a SIGUSR1 signal to a running `dd' process makes it
  139. print to standard error the number of records read and written
  140. so far, then to resume copying.
  141. $ dd if=/dev/zero of=/dev/null&
  142. $ pid=$! kill -USR1 $pid; sleep 1; kill $pid
  143. 10899206+0 records in
  144. 10899206+0 records out
  145. config BUSYBOX_FEATURE_DD_THIRD_STATUS_LINE
  146. bool "Enable the third status line upon signal"
  147. default n
  148. depends on BUSYBOX_DD && BUSYBOX_FEATURE_DD_SIGNAL_HANDLING
  149. help
  150. Displays a coreutils-like third status line with transferred bytes,
  151. elapsed time and speed.
  152. config BUSYBOX_FEATURE_DD_IBS_OBS
  153. bool "Enable ibs, obs and conv options"
  154. default n
  155. depends on BUSYBOX_DD
  156. help
  157. Enables support for writing a certain number of bytes in and out,
  158. at a time, and performing conversions on the data stream.
  159. config BUSYBOX_DF
  160. bool "df"
  161. default y
  162. help
  163. df reports the amount of disk space used and available
  164. on filesystems.
  165. config BUSYBOX_FEATURE_DF_FANCY
  166. bool "Enable -a, -i, -B"
  167. default n
  168. depends on BUSYBOX_DF
  169. help
  170. This option enables -a, -i and -B.
  171. -a Show all filesystems
  172. -i Inodes
  173. -B <SIZE> Blocksize
  174. config BUSYBOX_DIRNAME
  175. bool "dirname"
  176. default y
  177. help
  178. dirname is used to strip a non-directory suffix from
  179. a file name.
  180. config BUSYBOX_DOS2UNIX
  181. bool "dos2unix/unix2dos"
  182. default n
  183. help
  184. dos2unix is used to convert a text file from DOS format to
  185. UNIX format, and vice versa.
  186. config BUSYBOX_UNIX2DOS
  187. bool
  188. default y
  189. depends on BUSYBOX_DOS2UNIX
  190. help
  191. unix2dos is used to convert a text file from UNIX format to
  192. DOS format, and vice versa.
  193. config BUSYBOX_DU
  194. bool "du (default blocksize of 512 bytes)"
  195. default y
  196. help
  197. du is used to report the amount of disk space used
  198. for specified files.
  199. config BUSYBOX_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
  200. bool "Use a default blocksize of 1024 bytes (1K)"
  201. default y
  202. depends on BUSYBOX_DU
  203. help
  204. Use a blocksize of (1K) instead of the default 512b.
  205. config BUSYBOX_ECHO
  206. bool "echo (basic SuSv3 version taking no options)"
  207. default y
  208. help
  209. echo is used to print a specified string to stdout.
  210. # this entry also appears in shell/Config.in, next to the echo builtin
  211. config BUSYBOX_FEATURE_FANCY_ECHO
  212. bool "Enable echo options (-n and -e)"
  213. default y
  214. depends on BUSYBOX_ECHO || BUSYBOX_ASH_BUILTIN_ECHO || BUSYBOX_HUSH
  215. help
  216. This adds options (-n and -e) to echo.
  217. config BUSYBOX_ENV
  218. bool "env"
  219. default y
  220. help
  221. env is used to set an environment variable and run
  222. a command; without options it displays the current
  223. environment.
  224. config BUSYBOX_FEATURE_ENV_LONG_OPTIONS
  225. bool "Enable long options"
  226. default n
  227. depends on BUSYBOX_ENV && BUSYBOX_LONG_OPTS
  228. help
  229. Support long options for the env applet.
  230. config BUSYBOX_EXPAND
  231. bool "expand"
  232. default n
  233. help
  234. By default, convert all tabs to spaces.
  235. config BUSYBOX_FEATURE_EXPAND_LONG_OPTIONS
  236. bool "Enable long options"
  237. default n
  238. depends on BUSYBOX_EXPAND && BUSYBOX_LONG_OPTS
  239. help
  240. Support long options for the expand applet.
  241. config BUSYBOX_EXPR
  242. bool "expr"
  243. default y
  244. help
  245. expr is used to calculate numbers and print the result
  246. to standard output.
  247. config BUSYBOX_EXPR_MATH_SUPPORT_64
  248. bool "Extend Posix numbers support to 64 bit"
  249. default n
  250. depends on BUSYBOX_EXPR
  251. help
  252. Enable 64-bit math support in the expr applet. This will make
  253. the applet slightly larger, but will allow computation with very
  254. large numbers.
  255. config BUSYBOX_FALSE
  256. bool "false"
  257. default y
  258. help
  259. false returns an exit code of FALSE (1).
  260. config BUSYBOX_FOLD
  261. bool "fold"
  262. default n
  263. help
  264. Wrap text to fit a specific width.
  265. config BUSYBOX_FSYNC
  266. bool "fsync"
  267. default n
  268. help
  269. fsync is used to flush file-related cached blocks to disk.
  270. config BUSYBOX_HEAD
  271. bool "head"
  272. default y
  273. help
  274. head is used to print the first specified number of lines
  275. from files.
  276. config BUSYBOX_FEATURE_FANCY_HEAD
  277. bool "Enable head options (-c, -q, and -v)"
  278. default n
  279. depends on BUSYBOX_HEAD
  280. help
  281. This enables the head options (-c, -q, and -v).
  282. config BUSYBOX_HOSTID
  283. bool "hostid"
  284. default n
  285. help
  286. hostid prints the numeric identifier (in hexadecimal) for
  287. the current host.
  288. config BUSYBOX_ID
  289. bool "id"
  290. default y
  291. help
  292. id displays the current user and group ID names.
  293. config BUSYBOX_INSTALL
  294. bool "install"
  295. default y
  296. help
  297. Copy files and set attributes.
  298. config BUSYBOX_FEATURE_INSTALL_LONG_OPTIONS
  299. bool "Enable long options"
  300. default n
  301. depends on BUSYBOX_INSTALL && BUSYBOX_LONG_OPTS
  302. help
  303. Support long options for the install applet.
  304. config BUSYBOX_LENGTH
  305. bool "length"
  306. default n
  307. help
  308. length is used to print out the length of a specified string.
  309. config BUSYBOX_LN
  310. bool "ln"
  311. default y
  312. help
  313. ln is used to create hard or soft links between files.
  314. config BUSYBOX_LOGNAME
  315. bool "logname"
  316. default n
  317. help
  318. logname is used to print the current user's login name.
  319. config BUSYBOX_LS
  320. bool "ls"
  321. default y
  322. help
  323. ls is used to list the contents of directories.
  324. config BUSYBOX_FEATURE_LS_FILETYPES
  325. bool "Enable filetyping options (-p and -F)"
  326. default y
  327. depends on BUSYBOX_LS
  328. help
  329. Enable the ls options (-p and -F).
  330. config BUSYBOX_FEATURE_LS_FOLLOWLINKS
  331. bool "Enable symlinks dereferencing (-L)"
  332. default y
  333. depends on BUSYBOX_LS
  334. help
  335. Enable the ls option (-L).
  336. config BUSYBOX_FEATURE_LS_RECURSIVE
  337. bool "Enable recursion (-R)"
  338. default y
  339. depends on BUSYBOX_LS
  340. help
  341. Enable the ls option (-R).
  342. config BUSYBOX_FEATURE_LS_SORTFILES
  343. bool "Sort the file names"
  344. default y
  345. depends on BUSYBOX_LS
  346. help
  347. Allow ls to sort file names alphabetically.
  348. config BUSYBOX_FEATURE_LS_TIMESTAMPS
  349. bool "Show file timestamps"
  350. default y
  351. depends on BUSYBOX_LS
  352. help
  353. Allow ls to display timestamps for files.
  354. config BUSYBOX_FEATURE_LS_USERNAME
  355. bool "Show username/groupnames"
  356. default y
  357. depends on BUSYBOX_LS
  358. help
  359. Allow ls to display username/groupname for files.
  360. config BUSYBOX_FEATURE_LS_COLOR
  361. bool "Allow use of color to identify file types"
  362. default n
  363. depends on BUSYBOX_LS && BUSYBOX_LONG_OPTS
  364. help
  365. This enables the --color option to ls.
  366. config BUSYBOX_FEATURE_LS_COLOR_IS_DEFAULT
  367. bool "Produce colored ls output by default"
  368. default n
  369. depends on BUSYBOX_FEATURE_LS_COLOR
  370. help
  371. Saying yes here will turn coloring on by default,
  372. even if no "--color" option is given to the ls command.
  373. This is not recommended, since the colors are not
  374. configurable, and the output may not be legible on
  375. many output screens.
  376. config BUSYBOX_MD5SUM
  377. bool "md5sum"
  378. default y
  379. help
  380. md5sum is used to print or check MD5 checksums.
  381. config BUSYBOX_MKDIR
  382. bool "mkdir"
  383. default y
  384. help
  385. mkdir is used to create directories with the specified names.
  386. config BUSYBOX_FEATURE_MKDIR_LONG_OPTIONS
  387. bool "Enable long options"
  388. default n
  389. depends on BUSYBOX_MKDIR && BUSYBOX_LONG_OPTS
  390. help
  391. Support long options for the mkdir applet.
  392. config BUSYBOX_MKFIFO
  393. bool "mkfifo"
  394. default y
  395. help
  396. mkfifo is used to create FIFOs (named pipes).
  397. The `mknod' program can also create FIFOs.
  398. config BUSYBOX_MKNOD
  399. bool "mknod"
  400. default y
  401. help
  402. mknod is used to create FIFOs or block/character special
  403. files with the specified names.
  404. config BUSYBOX_MV
  405. bool "mv"
  406. default y
  407. help
  408. mv is used to move or rename files or directories.
  409. config BUSYBOX_FEATURE_MV_LONG_OPTIONS
  410. bool "Enable long options"
  411. default n
  412. depends on BUSYBOX_MV && BUSYBOX_LONG_OPTS
  413. help
  414. Support long options for the mv applet.
  415. config BUSYBOX_NICE
  416. bool "nice"
  417. default n
  418. help
  419. nice runs a program with modified scheduling priority.
  420. config BUSYBOX_NOHUP
  421. bool "nohup"
  422. default n
  423. help
  424. run a command immune to hangups, with output to a non-tty.
  425. config BUSYBOX_OD
  426. bool "od"
  427. default y
  428. help
  429. od is used to dump binary files in octal and other formats.
  430. config BUSYBOX_PRINTENV
  431. bool "printenv"
  432. default n
  433. help
  434. printenv is used to print all or part of environment.
  435. config BUSYBOX_PRINTF
  436. bool "printf"
  437. default y
  438. help
  439. printf is used to format and print specified strings.
  440. It's similar to `echo' except it has more options.
  441. config BUSYBOX_PWD
  442. bool "pwd"
  443. default y
  444. help
  445. pwd is used to print the current directory.
  446. config BUSYBOX_READLINK
  447. bool "readlink"
  448. default y
  449. help
  450. This program reads a symbolic link and returns the name
  451. of the file it points to
  452. config BUSYBOX_FEATURE_READLINK_FOLLOW
  453. bool "Enable canonicalization by following all symlinks (-f)"
  454. default y
  455. depends on BUSYBOX_READLINK
  456. help
  457. Enable the readlink option (-f).
  458. config BUSYBOX_REALPATH
  459. bool "realpath"
  460. default n
  461. help
  462. Return the canonicalized absolute pathname.
  463. This isn't provided by GNU shellutils, but where else does it belong.
  464. config BUSYBOX_RM
  465. bool "rm"
  466. default y
  467. help
  468. rm is used to remove files or directories.
  469. config BUSYBOX_RMDIR
  470. bool "rmdir"
  471. default y
  472. help
  473. rmdir is used to remove empty directories.
  474. config BUSYBOX_FEATURE_RMDIR_LONG_OPTIONS
  475. bool "Enable long options"
  476. default n
  477. depends on BUSYBOX_RMDIR && BUSYBOX_LONG_OPTS
  478. help
  479. Support long options for the rmdir applet, including
  480. --ignore-fail-on-non-empty for compatibility with GNU rmdir.
  481. config BUSYBOX_SEQ
  482. bool "seq"
  483. default y
  484. help
  485. print a sequence of numbers
  486. config BUSYBOX_SHA1SUM
  487. bool "sha1sum"
  488. default n
  489. help
  490. Compute and check SHA1 message digest
  491. config BUSYBOX_SHA256SUM
  492. bool "sha256sum"
  493. default n
  494. help
  495. Compute and check SHA256 message digest
  496. config BUSYBOX_SHA512SUM
  497. bool "sha512sum"
  498. default n
  499. help
  500. Compute and check SHA512 message digest
  501. config BUSYBOX_SLEEP
  502. bool "sleep"
  503. default y
  504. help
  505. sleep is used to pause for a specified number of seconds.
  506. It comes in 3 versions:
  507. - small: takes one integer parameter
  508. - fancy: takes multiple integer arguments with suffixes:
  509. sleep 1d 2h 3m 15s
  510. - fancy with fractional numbers:
  511. sleep 2.3s 4.5h sleeps for 16202.3 seconds
  512. Last one is "the most compatible" with coreutils sleep,
  513. but it adds around 1k of code.
  514. config BUSYBOX_FEATURE_FANCY_SLEEP
  515. bool "Enable multiple arguments and s/m/h/d suffixes"
  516. default n
  517. depends on BUSYBOX_SLEEP
  518. help
  519. Allow sleep to pause for specified minutes, hours, and days.
  520. config BUSYBOX_FEATURE_FLOAT_SLEEP
  521. bool "Enable fractional arguments"
  522. default y
  523. depends on BUSYBOX_FEATURE_FANCY_SLEEP
  524. help
  525. Allow for fractional numeric parameters.
  526. config BUSYBOX_SORT
  527. bool "sort"
  528. default y
  529. help
  530. sort is used to sort lines of text in specified files.
  531. config BUSYBOX_FEATURE_SORT_BIG
  532. bool "Full SuSv3 compliant sort (support -ktcsbdfiozgM)"
  533. default y
  534. depends on BUSYBOX_SORT
  535. help
  536. Without this, sort only supports -r, -u, and an integer version
  537. of -n. Selecting this adds sort keys, floating point support, and
  538. more. This adds a little over 3k to a nonstatic build on x86.
  539. The SuSv3 sort standard is available at:
  540. http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
  541. config BUSYBOX_SPLIT
  542. bool "split"
  543. default y
  544. help
  545. split a file into pieces.
  546. config BUSYBOX_FEATURE_SPLIT_FANCY
  547. bool "Fancy extensions"
  548. default n
  549. depends on BUSYBOX_SPLIT
  550. help
  551. Add support for features not required by SUSv3.
  552. Supports additional suffixes 'b' for 512 bytes,
  553. 'g' for 1GiB for the -b option.
  554. config BUSYBOX_STAT
  555. bool "stat"
  556. default y
  557. depends on BUSYBOX_PLATFORM_LINUX # statfs()
  558. help
  559. display file or filesystem status.
  560. config BUSYBOX_FEATURE_STAT_FORMAT
  561. bool "Enable custom formats (-c)"
  562. default n
  563. depends on BUSYBOX_STAT
  564. help
  565. Without this, stat will not support the '-c format' option where
  566. users can pass a custom format string for output. This adds about
  567. 7k to a nonstatic build on amd64.
  568. config BUSYBOX_STTY
  569. bool "stty"
  570. default n
  571. help
  572. stty is used to change and print terminal line settings.
  573. config BUSYBOX_SUM
  574. bool "sum"
  575. default n
  576. help
  577. checksum and count the blocks in a file
  578. config BUSYBOX_SYNC
  579. bool "sync"
  580. default y
  581. help
  582. sync is used to flush filesystem buffers.
  583. config BUSYBOX_TAC
  584. bool "tac"
  585. default y
  586. help
  587. tac is used to concatenate and print files in reverse.
  588. config BUSYBOX_TAIL
  589. bool "tail"
  590. default y
  591. help
  592. tail is used to print the last specified number of lines
  593. from files.
  594. config BUSYBOX_FEATURE_FANCY_TAIL
  595. bool "Enable extra tail options (-q, -s, -v, and -F)"
  596. default y
  597. depends on BUSYBOX_TAIL
  598. help
  599. The options (-q, -s, and -v) are provided by GNU tail, but
  600. are not specific in the SUSv3 standard.
  601. -q Never output headers giving file names
  602. -s SEC Wait SEC seconds between reads with -f
  603. -v Always output headers giving file names
  604. config BUSYBOX_TEE
  605. bool "tee"
  606. default y
  607. help
  608. tee is used to read from standard input and write
  609. to standard output and files.
  610. config BUSYBOX_FEATURE_TEE_USE_BLOCK_IO
  611. bool "Enable block I/O (larger/faster) instead of byte I/O"
  612. default n
  613. depends on BUSYBOX_TEE
  614. help
  615. Enable this option for a faster tee, at expense of size.
  616. config BUSYBOX_TEST
  617. bool "test"
  618. default y
  619. help
  620. test is used to check file types and compare values,
  621. returning an appropriate exit code. The bash shell
  622. has test built in, ash can build it in optionally.
  623. config BUSYBOX_FEATURE_TEST_64
  624. bool "Extend test to 64 bit"
  625. default n
  626. depends on BUSYBOX_TEST || BUSYBOX_ASH_BUILTIN_TEST || BUSYBOX_HUSH
  627. help
  628. Enable 64-bit support in test.
  629. config BUSYBOX_TOUCH
  630. bool "touch"
  631. default y
  632. help
  633. touch is used to create or change the access and/or
  634. modification timestamp of specified files.
  635. config BUSYBOX_TR
  636. bool "tr"
  637. default y
  638. help
  639. tr is used to squeeze, and/or delete characters from standard
  640. input, writing to standard output.
  641. config BUSYBOX_FEATURE_TR_CLASSES
  642. bool "Enable character classes (such as [:upper:])"
  643. default y
  644. depends on BUSYBOX_TR
  645. help
  646. Enable character classes, enabling commands such as:
  647. tr [:upper:] [:lower:] to convert input into lowercase.
  648. config BUSYBOX_FEATURE_TR_EQUIV
  649. bool "Enable equivalence classes"
  650. default y
  651. depends on BUSYBOX_TR
  652. help
  653. Enable equivalence classes, which essentially add the enclosed
  654. character to the current set. For instance, tr [=a=] xyz would
  655. replace all instances of 'a' with 'xyz'. This option is mainly
  656. useful for cases when no other way of expressing a character
  657. is possible.
  658. config BUSYBOX_TRUE
  659. bool "true"
  660. default y
  661. help
  662. true returns an exit code of TRUE (0).
  663. config BUSYBOX_TTY
  664. bool "tty"
  665. default y
  666. help
  667. tty is used to print the name of the current terminal to
  668. standard output.
  669. config BUSYBOX_UNAME
  670. bool "uname"
  671. default y
  672. help
  673. uname is used to print system information.
  674. config BUSYBOX_UNEXPAND
  675. bool "unexpand"
  676. default n
  677. help
  678. By default, convert only leading sequences of blanks to tabs.
  679. config BUSYBOX_FEATURE_UNEXPAND_LONG_OPTIONS
  680. bool "Enable long options"
  681. default n
  682. depends on BUSYBOX_UNEXPAND && BUSYBOX_LONG_OPTS
  683. help
  684. Support long options for the unexpand applet.
  685. config BUSYBOX_UNIQ
  686. bool "uniq"
  687. default y
  688. help
  689. uniq is used to remove duplicate lines from a sorted file.
  690. config BUSYBOX_USLEEP
  691. bool "usleep"
  692. default n
  693. help
  694. usleep is used to pause for a specified number of microseconds.
  695. config BUSYBOX_UUDECODE
  696. bool "uudecode"
  697. default n
  698. help
  699. uudecode is used to decode a uuencoded file.
  700. config BUSYBOX_UUENCODE
  701. bool "uuencode"
  702. default n
  703. help
  704. uuencode is used to uuencode a file.
  705. config BUSYBOX_WC
  706. bool "wc"
  707. default y
  708. help
  709. wc is used to print the number of bytes, words, and lines,
  710. in specified files.
  711. config BUSYBOX_FEATURE_WC_LARGE
  712. bool "Support very large files in wc"
  713. default n
  714. depends on BUSYBOX_WC
  715. help
  716. Use "unsigned long long" in wc for counter variables.
  717. config BUSYBOX_WHO
  718. bool "who"
  719. default n
  720. select BUSYBOX_FEATURE_UTMP
  721. help
  722. who is used to show who is logged on.
  723. config BUSYBOX_WHOAMI
  724. bool "whoami"
  725. default y
  726. help
  727. whoami is used to print the username of the current
  728. user id (same as id -un).
  729. config BUSYBOX_YES
  730. bool "yes"
  731. default y
  732. help
  733. yes is used to repeatedly output a specific string, or
  734. the default string `y'.
  735. comment "Common options for cp and mv"
  736. depends on BUSYBOX_CP || BUSYBOX_MV
  737. config BUSYBOX_FEATURE_PRESERVE_HARDLINKS
  738. bool "Preserve hard links"
  739. default y
  740. depends on BUSYBOX_CP || BUSYBOX_MV
  741. help
  742. Allow cp and mv to preserve hard links.
  743. comment "Common options for ls, more and telnet"
  744. depends on BUSYBOX_LS || BUSYBOX_MORE || BUSYBOX_TELNET
  745. config BUSYBOX_FEATURE_AUTOWIDTH
  746. bool "Calculate terminal & column widths"
  747. default y
  748. depends on BUSYBOX_LS || BUSYBOX_MORE || BUSYBOX_TELNET
  749. help
  750. This option allows utilities such as 'ls', 'more' and 'telnet'
  751. to determine the width of the screen, which can allow them to
  752. display additional text or avoid wrapping text onto the next line.
  753. If you leave this disabled, your utilities will be especially
  754. primitive and will be unable to determine the current screen width.
  755. comment "Common options for df, du, ls"
  756. depends on BUSYBOX_DF || BUSYBOX_DU || BUSYBOX_LS
  757. config BUSYBOX_FEATURE_HUMAN_READABLE
  758. bool "Support for human readable output (example 13k, 23M, 235G)"
  759. default y
  760. depends on BUSYBOX_DF || BUSYBOX_DU || BUSYBOX_LS
  761. help
  762. Allow df, du, and ls to have human readable output.
  763. comment "Common options for md5sum, sha1sum, sha256sum, sha512sum"
  764. depends on BUSYBOX_MD5SUM || BUSYBOX_SHA1SUM || BUSYBOX_SHA256SUM || BUSYBOX_SHA512SUM
  765. config BUSYBOX_FEATURE_MD5_SHA1_SUM_CHECK
  766. bool "Enable -c, -s and -w options"
  767. default n
  768. depends on BUSYBOX_MD5SUM || BUSYBOX_SHA1SUM || BUSYBOX_SHA256SUM || BUSYBOX_SHA512SUM
  769. help
  770. Enabling the -c options allows files to be checked
  771. against pre-calculated hash values.
  772. -s and -w are useful options when verifying checksums.
  773. endmenu