Config.in 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960
  1. # DO NOT EDIT. This file is generated from Config.src
  2. #
  3. # For a description of the syntax of this configuration file,
  4. # see docs/Kconfig-language.txt.
  5. #
  6. menu "Coreutils"
  7. config BUSYBOX_FEATURE_VERBOSE
  8. bool "Support verbose options (usually -v) for various applets"
  9. default y
  10. help
  11. Enable cp -v, rm -v and similar messages.
  12. Also enables long option (--verbose) if it exists.
  13. Without this option, -v is accepted but ignored.
  14. comment "Common options for date and touch"
  15. config BUSYBOX_FEATURE_TIMEZONE
  16. bool "Allow timezone in dates"
  17. default y
  18. depends on BUSYBOX_DESKTOP
  19. help
  20. Permit the use of timezones when parsing user-provided data
  21. strings, e.g. '1996-04-09 12:45:00 -0500'.
  22. This requires support for the '%z' extension to strptime() which
  23. may not be available in all implementations.
  24. comment "Common options for cp and mv"
  25. depends on BUSYBOX_CP || BUSYBOX_MV
  26. config BUSYBOX_FEATURE_PRESERVE_HARDLINKS
  27. bool "Preserve hard links"
  28. default y
  29. depends on BUSYBOX_CP || BUSYBOX_MV
  30. help
  31. Allow cp and mv to preserve hard links.
  32. comment "Common options for df, du, ls"
  33. depends on BUSYBOX_DF || BUSYBOX_DU || BUSYBOX_LS
  34. config BUSYBOX_FEATURE_HUMAN_READABLE
  35. bool "Support human readable output (example 13k, 23M, 235G)"
  36. default y
  37. depends on BUSYBOX_DF || BUSYBOX_DU || BUSYBOX_LS
  38. help
  39. Allow df, du, and ls to have human readable output.
  40. config BUSYBOX_BASENAME
  41. bool "basename (438 bytes)"
  42. default y
  43. help
  44. basename is used to strip the directory and suffix from filenames,
  45. leaving just the filename itself. Enable this option if you wish
  46. to enable the 'basename' utility.
  47. config BUSYBOX_CAT
  48. bool "cat (5.6 kb)"
  49. default y
  50. help
  51. cat is used to concatenate files and print them to the standard
  52. output. Enable this option if you wish to enable the 'cat' utility.
  53. config BUSYBOX_FEATURE_CATN
  54. bool "Enable -n and -b options"
  55. default y
  56. depends on BUSYBOX_CAT
  57. help
  58. -n numbers all output lines while -b numbers nonempty output lines.
  59. config BUSYBOX_FEATURE_CATV
  60. bool "cat -v[etA]"
  61. default y
  62. depends on BUSYBOX_CAT
  63. help
  64. Display nonprinting characters as escape sequences
  65. config BUSYBOX_CHGRP
  66. bool "chgrp (7.6 kb)"
  67. default y
  68. help
  69. chgrp is used to change the group ownership of files.
  70. config BUSYBOX_CHMOD
  71. bool "chmod (5.5 kb)"
  72. default y
  73. help
  74. chmod is used to change the access permission of files.
  75. config BUSYBOX_CHOWN
  76. bool "chown (7.6 kb)"
  77. default y
  78. help
  79. chown is used to change the user and/or group ownership
  80. of files.
  81. config BUSYBOX_FEATURE_CHOWN_LONG_OPTIONS
  82. bool "Enable long options"
  83. default y
  84. depends on BUSYBOX_CHOWN && BUSYBOX_LONG_OPTS
  85. config BUSYBOX_CHROOT
  86. bool "chroot (3.7 kb)"
  87. default y
  88. help
  89. chroot is used to change the root directory and run a command.
  90. The default command is '/bin/sh'.
  91. config BUSYBOX_CKSUM
  92. bool "cksum (4.1 kb)"
  93. default y
  94. config BUSYBOX_CRC32
  95. bool "crc32 (4.1 kb)"
  96. default y
  97. config BUSYBOX_COMM
  98. bool "comm (4.2 kb)"
  99. default y
  100. help
  101. comm is used to compare two files line by line and return
  102. a three-column output.
  103. config BUSYBOX_CP
  104. bool "cp (10 kb)"
  105. default y
  106. help
  107. cp is used to copy files and directories.
  108. config BUSYBOX_FEATURE_CP_LONG_OPTIONS
  109. bool "Enable long options"
  110. default y
  111. depends on BUSYBOX_CP && BUSYBOX_LONG_OPTS
  112. help
  113. Enable long options.
  114. Also add support for --parents option.
  115. config BUSYBOX_FEATURE_CP_REFLINK
  116. bool "Enable --reflink[=auto]"
  117. default y
  118. depends on BUSYBOX_FEATURE_CP_LONG_OPTIONS
  119. config BUSYBOX_CUT
  120. bool "cut (5.8 kb)"
  121. default y
  122. help
  123. cut is used to print selected parts of lines from
  124. each file to stdout.
  125. config BUSYBOX_FEATURE_CUT_REGEX
  126. bool "cut -F"
  127. default y
  128. depends on BUSYBOX_CUT
  129. help
  130. Allow regex based delimiters.
  131. config BUSYBOX_DATE
  132. bool "date (7 kb)"
  133. default y
  134. help
  135. date is used to set the system date or display the
  136. current time in the given format.
  137. config BUSYBOX_FEATURE_DATE_ISOFMT
  138. bool "Enable ISO date format output (-I)"
  139. default y
  140. depends on BUSYBOX_DATE
  141. help
  142. Enable option (-I) to output an ISO-8601 compliant
  143. date/time string.
  144. config BUSYBOX_FEATURE_DATE_NANO
  145. bool "Support %[num]N nanosecond format specifier"
  146. default n # stat's nanosecond field is a bit non-portable
  147. depends on BUSYBOX_DATE
  148. help
  149. Support %[num]N format specifier. Adds ~250 bytes of code.
  150. config BUSYBOX_FEATURE_DATE_COMPAT
  151. bool "Support weird 'date MMDDhhmm[[YY]YY][.ss]' format"
  152. default y
  153. depends on BUSYBOX_DATE
  154. help
  155. System time can be set by 'date -s DATE' and simply 'date DATE',
  156. but formats of DATE string are different. 'date DATE' accepts
  157. a rather weird MMDDhhmm[[YY]YY][.ss] format with completely
  158. unnatural placement of year between minutes and seconds.
  159. date -s (and other commands like touch -d) use more sensible
  160. formats (for one, ISO format YYYY-MM-DD hh:mm:ss.ssssss).
  161. With this option off, 'date DATE' and 'date -s DATE' support
  162. the same format. With it on, 'date DATE' additionally supports
  163. MMDDhhmm[[YY]YY][.ss] format.
  164. config BUSYBOX_DD
  165. bool "dd (7.5 kb)"
  166. default y
  167. help
  168. dd copies a file (from standard input to standard output,
  169. by default) using specific input and output blocksizes,
  170. while optionally performing conversions on it.
  171. config BUSYBOX_FEATURE_DD_SIGNAL_HANDLING
  172. bool "Enable signal handling for status reporting"
  173. default y
  174. depends on BUSYBOX_DD
  175. help
  176. Sending a SIGUSR1 signal to a running 'dd' process makes it
  177. print to standard error the number of records read and written
  178. so far, then to resume copying.
  179. $ dd if=/dev/zero of=/dev/null &
  180. $ pid=$!; kill -USR1 $pid; sleep 1; kill $pid
  181. 10899206+0 records in
  182. 10899206+0 records out
  183. config BUSYBOX_FEATURE_DD_THIRD_STATUS_LINE
  184. bool "Enable the third status line upon signal"
  185. default y
  186. depends on BUSYBOX_DD && BUSYBOX_FEATURE_DD_SIGNAL_HANDLING
  187. help
  188. Displays a coreutils-like third status line with transferred bytes,
  189. elapsed time and speed.
  190. config BUSYBOX_FEATURE_DD_IBS_OBS
  191. bool "Enable ibs, obs, iflag, oflag and conv options"
  192. default y
  193. depends on BUSYBOX_DD
  194. help
  195. Enable support for writing a certain number of bytes in and out,
  196. at a time, and performing conversions on the data stream.
  197. config BUSYBOX_FEATURE_DD_STATUS
  198. bool "Enable status display options"
  199. default y
  200. depends on BUSYBOX_DD
  201. help
  202. Enable support for status=noxfer/none option.
  203. config BUSYBOX_DF
  204. bool "df (6.8 kb)"
  205. default y
  206. help
  207. df reports the amount of disk space used and available
  208. on filesystems.
  209. config BUSYBOX_FEATURE_DF_FANCY
  210. bool "Enable -a, -i, -B"
  211. default y
  212. depends on BUSYBOX_DF
  213. help
  214. -a Show all filesystems
  215. -i Inodes
  216. -B <SIZE> Blocksize
  217. config BUSYBOX_FEATURE_SKIP_ROOTFS
  218. bool "Skip rootfs in mount table"
  219. default y
  220. depends on BUSYBOX_DF
  221. help
  222. Ignore rootfs entry in mount table.
  223. In Linux, kernel has a special filesystem, rootfs, which is initially
  224. mounted on /. It contains initramfs data, if kernel is configured
  225. to have one. Usually, another file system is mounted over / early
  226. in boot process, and therefore most tools which manipulate
  227. mount table, such as df, will skip rootfs entry.
  228. However, some systems do not mount anything on /.
  229. If you need to configure busybox for one of these systems,
  230. you may find it useful to turn this option off to make df show
  231. initramfs statistics.
  232. Otherwise, choose Y.
  233. config BUSYBOX_DIRNAME
  234. bool "dirname (329 bytes)"
  235. default y
  236. help
  237. dirname is used to strip a non-directory suffix from
  238. a file name.
  239. config BUSYBOX_DOS2UNIX
  240. bool "dos2unix (5.2 kb)"
  241. default y
  242. help
  243. dos2unix is used to convert a text file from DOS format to
  244. UNIX format, and vice versa.
  245. config BUSYBOX_UNIX2DOS
  246. bool "unix2dos (5.2 kb)"
  247. default y
  248. help
  249. unix2dos is used to convert a text file from UNIX format to
  250. DOS format, and vice versa.
  251. config BUSYBOX_DU
  252. bool "du (6.3 kb)"
  253. default y
  254. help
  255. du is used to report the amount of disk space used
  256. for specified files.
  257. config BUSYBOX_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
  258. bool "Use default blocksize of 1024 bytes (else it's 512 bytes)"
  259. default y
  260. depends on BUSYBOX_DU
  261. config BUSYBOX_ECHO
  262. bool "echo (1.8 kb)"
  263. default y
  264. help
  265. echo prints a specified string to stdout.
  266. # this entry also appears in shell/Config.in, next to the echo builtin
  267. config BUSYBOX_FEATURE_FANCY_ECHO
  268. bool "Enable -n and -e options"
  269. default y
  270. depends on BUSYBOX_ECHO || BUSYBOX_ASH_ECHO || BUSYBOX_HUSH_ECHO
  271. config BUSYBOX_ENV
  272. bool "env (4 kb)"
  273. default y
  274. help
  275. env is used to set an environment variable and run
  276. a command; without options it displays the current
  277. environment.
  278. config BUSYBOX_EXPAND
  279. bool "expand (5.1 kb)"
  280. default y
  281. help
  282. By default, convert all tabs to spaces.
  283. config BUSYBOX_UNEXPAND
  284. bool "unexpand (5.3 kb)"
  285. default y
  286. help
  287. By default, convert only leading sequences of blanks to tabs.
  288. config BUSYBOX_EXPR
  289. bool "expr (6.6 kb)"
  290. default y
  291. help
  292. expr is used to calculate numbers and print the result
  293. to standard output.
  294. config BUSYBOX_EXPR_MATH_SUPPORT_64
  295. bool "Extend Posix numbers support to 64 bit"
  296. default y
  297. depends on BUSYBOX_EXPR
  298. help
  299. Enable 64-bit math support in the expr applet. This will make
  300. the applet slightly larger, but will allow computation with very
  301. large numbers.
  302. config BUSYBOX_FACTOR
  303. bool "factor (2.7 kb)"
  304. default y
  305. help
  306. factor factorizes integers
  307. config BUSYBOX_FALSE
  308. bool "false (tiny)"
  309. default y
  310. help
  311. false returns an exit code of FALSE (1).
  312. config BUSYBOX_FOLD
  313. bool "fold (4.6 kb)"
  314. default y
  315. help
  316. Wrap text to fit a specific width.
  317. config BUSYBOX_HEAD
  318. bool "head (3.8 kb)"
  319. default y
  320. help
  321. head is used to print the first specified number of lines
  322. from files.
  323. config BUSYBOX_FEATURE_FANCY_HEAD
  324. bool "Enable -c, -q, and -v"
  325. default y
  326. depends on BUSYBOX_HEAD
  327. config BUSYBOX_HOSTID
  328. bool "hostid (286 bytes)"
  329. default y
  330. help
  331. hostid prints the numeric identifier (in hexadecimal) for
  332. the current host.
  333. config BUSYBOX_ID
  334. bool "id (7 kb)"
  335. default y
  336. help
  337. id displays the current user and group ID names.
  338. config BUSYBOX_GROUPS
  339. bool "groups (6.7 kb)"
  340. default y
  341. help
  342. Print the group names associated with current user id.
  343. config BUSYBOX_INSTALL
  344. bool "install (12 kb)"
  345. default y
  346. help
  347. Copy files and set attributes.
  348. config BUSYBOX_FEATURE_INSTALL_LONG_OPTIONS
  349. bool "Enable long options"
  350. default y
  351. depends on BUSYBOX_INSTALL && BUSYBOX_LONG_OPTS
  352. config BUSYBOX_LINK
  353. bool "link (3.2 kb)"
  354. default y
  355. help
  356. link creates hard links between files.
  357. config BUSYBOX_LN
  358. bool "ln (4.9 kb)"
  359. default y
  360. help
  361. ln is used to create hard or soft links between files.
  362. config BUSYBOX_LOGNAME
  363. bool "logname (1.1 kb)"
  364. default y
  365. help
  366. logname is used to print the current user's login name.
  367. config BUSYBOX_LS
  368. bool "ls (14 kb)"
  369. default y
  370. help
  371. ls is used to list the contents of directories.
  372. config BUSYBOX_FEATURE_LS_FILETYPES
  373. bool "Enable filetyping options (-p and -F)"
  374. default y
  375. depends on BUSYBOX_LS
  376. config BUSYBOX_FEATURE_LS_FOLLOWLINKS
  377. bool "Enable symlinks dereferencing (-L)"
  378. default y
  379. depends on BUSYBOX_LS
  380. config BUSYBOX_FEATURE_LS_RECURSIVE
  381. bool "Enable recursion (-R)"
  382. default y
  383. depends on BUSYBOX_LS
  384. config BUSYBOX_FEATURE_LS_WIDTH
  385. bool "Enable -w WIDTH and window size autodetection"
  386. default y
  387. depends on BUSYBOX_LS
  388. config BUSYBOX_FEATURE_LS_SORTFILES
  389. bool "Sort the file names"
  390. default y
  391. depends on BUSYBOX_LS
  392. help
  393. Allow ls to sort file names alphabetically.
  394. config BUSYBOX_FEATURE_LS_TIMESTAMPS
  395. bool "Show file timestamps"
  396. default y
  397. depends on BUSYBOX_LS
  398. help
  399. Allow ls to display timestamps for files.
  400. config BUSYBOX_FEATURE_LS_USERNAME
  401. bool "Show username/groupnames"
  402. default y
  403. depends on BUSYBOX_LS
  404. help
  405. Allow ls to display username/groupname for files.
  406. config BUSYBOX_FEATURE_LS_COLOR
  407. bool "Allow use of color to identify file types"
  408. default y
  409. depends on BUSYBOX_LS && BUSYBOX_LONG_OPTS
  410. help
  411. This enables the --color option to ls.
  412. config BUSYBOX_FEATURE_LS_COLOR_IS_DEFAULT
  413. bool "Produce colored ls output by default"
  414. default y
  415. depends on BUSYBOX_FEATURE_LS_COLOR
  416. help
  417. Saying yes here will turn coloring on by default,
  418. even if no "--color" option is given to the ls command.
  419. This is not recommended, since the colors are not
  420. configurable, and the output may not be legible on
  421. many output screens.
  422. config BUSYBOX_MD5SUM
  423. bool "md5sum (6.5 kb)"
  424. default y
  425. help
  426. Compute and check MD5 message digest
  427. config BUSYBOX_SHA1SUM
  428. bool "sha1sum (5.9 kb)"
  429. default y
  430. help
  431. Compute and check SHA1 message digest
  432. config BUSYBOX_SHA256SUM
  433. bool "sha256sum (7 kb)"
  434. default y
  435. help
  436. Compute and check SHA256 message digest
  437. config BUSYBOX_SHA512SUM
  438. bool "sha512sum (7.4 kb)"
  439. default y
  440. help
  441. Compute and check SHA512 message digest
  442. config BUSYBOX_SHA3SUM
  443. bool "sha3sum (6.1 kb)"
  444. default y
  445. help
  446. Compute and check SHA3 message digest
  447. comment "Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum"
  448. depends on BUSYBOX_MD5SUM || BUSYBOX_SHA1SUM || BUSYBOX_SHA256SUM || BUSYBOX_SHA512SUM || BUSYBOX_SHA3SUM
  449. config BUSYBOX_FEATURE_MD5_SHA1_SUM_CHECK
  450. bool "Enable -c, -s and -w options"
  451. default y
  452. depends on BUSYBOX_MD5SUM || BUSYBOX_SHA1SUM || BUSYBOX_SHA256SUM || BUSYBOX_SHA512SUM || BUSYBOX_SHA3SUM
  453. help
  454. Enabling the -c options allows files to be checked
  455. against pre-calculated hash values.
  456. -s and -w are useful options when verifying checksums.
  457. config BUSYBOX_MKDIR
  458. bool "mkdir (4.5 kb)"
  459. default y
  460. help
  461. mkdir is used to create directories with the specified names.
  462. config BUSYBOX_MKFIFO
  463. bool "mkfifo (3.8 kb)"
  464. default y
  465. help
  466. mkfifo is used to create FIFOs (named pipes).
  467. The 'mknod' program can also create FIFOs.
  468. config BUSYBOX_MKNOD
  469. bool "mknod (4.5 kb)"
  470. default y
  471. help
  472. mknod is used to create FIFOs or block/character special
  473. files with the specified names.
  474. config BUSYBOX_MKTEMP
  475. bool "mktemp (4.2 kb)"
  476. default y
  477. help
  478. mktemp is used to create unique temporary files
  479. config BUSYBOX_MV
  480. bool "mv (10 kb)"
  481. default y
  482. help
  483. mv is used to move or rename files or directories.
  484. config BUSYBOX_NICE
  485. bool "nice (2.1 kb)"
  486. default y
  487. help
  488. nice runs a program with modified scheduling priority.
  489. config BUSYBOX_NL
  490. bool "nl (4.6 kb)"
  491. default y
  492. help
  493. nl is used to number lines of files.
  494. config BUSYBOX_NOHUP
  495. bool "nohup (2 kb)"
  496. default y
  497. help
  498. run a command immune to hangups, with output to a non-tty.
  499. config BUSYBOX_NPROC
  500. bool "nproc (3.7 kb)"
  501. default y
  502. help
  503. Print number of CPUs
  504. config BUSYBOX_OD
  505. bool "od (11 kb)"
  506. default y
  507. help
  508. od is used to dump binary files in octal and other formats.
  509. config BUSYBOX_PASTE
  510. bool "paste (4.9 kb)"
  511. default y
  512. help
  513. paste is used to paste lines of different files together
  514. and write the result to stdout
  515. config BUSYBOX_PRINTENV
  516. bool "printenv (1.3 kb)"
  517. default y
  518. help
  519. printenv is used to print all or part of environment.
  520. config BUSYBOX_PRINTF
  521. bool "printf (3.8 kb)"
  522. default y
  523. help
  524. printf is used to format and print specified strings.
  525. It's similar to 'echo' except it has more options.
  526. config BUSYBOX_PWD
  527. bool "pwd (3.7 kb)"
  528. default y
  529. help
  530. pwd is used to print the current directory.
  531. config BUSYBOX_READLINK
  532. bool "readlink (4 kb)"
  533. default y
  534. help
  535. This program reads a symbolic link and returns the name
  536. of the file it points to
  537. config BUSYBOX_FEATURE_READLINK_FOLLOW
  538. bool "Enable canonicalization by following all symlinks (-f)"
  539. default y
  540. depends on BUSYBOX_READLINK
  541. help
  542. Enable the readlink option (-f).
  543. config BUSYBOX_REALPATH
  544. bool "realpath (1.6 kb)"
  545. default y
  546. help
  547. Return the canonicalized absolute pathname.
  548. This isn't provided by GNU shellutils, but where else does it belong.
  549. config BUSYBOX_RM
  550. bool "rm (5.4 kb)"
  551. default y
  552. help
  553. rm is used to remove files or directories.
  554. config BUSYBOX_RMDIR
  555. bool "rmdir (3.5 kb)"
  556. default y
  557. help
  558. rmdir is used to remove empty directories.
  559. config BUSYBOX_SEQ
  560. bool "seq (3.8 kb)"
  561. default y
  562. help
  563. print a sequence of numbers
  564. config BUSYBOX_SHRED
  565. bool "shred (4.9 kb)"
  566. default y
  567. help
  568. Overwrite a file to hide its contents, and optionally delete it
  569. config BUSYBOX_SHUF
  570. bool "shuf (5.4 kb)"
  571. default y
  572. help
  573. Generate random permutations
  574. config BUSYBOX_SLEEP
  575. bool "sleep (2 kb)"
  576. default y
  577. help
  578. sleep is used to pause for a specified number of seconds.
  579. It comes in 3 versions:
  580. - small: takes one integer parameter
  581. - fancy: takes multiple integer arguments with suffixes:
  582. sleep 1d 2h 3m 15s
  583. - fancy with fractional numbers:
  584. sleep 2.3s 4.5h sleeps for 16202.3 seconds
  585. Last one is "the most compatible" with coreutils sleep,
  586. but it adds around 1k of code.
  587. config BUSYBOX_FEATURE_FANCY_SLEEP
  588. bool "Enable multiple arguments and s/m/h/d suffixes"
  589. default y
  590. depends on BUSYBOX_SLEEP
  591. help
  592. Allow sleep to pause for specified minutes, hours, and days.
  593. config BUSYBOX_SORT
  594. bool "sort (7.7 kb)"
  595. default y
  596. help
  597. sort is used to sort lines of text in specified files.
  598. config BUSYBOX_FEATURE_SORT_BIG
  599. bool "Full SuSv3 compliant sort (support -ktcbdfiogM)"
  600. default y
  601. depends on BUSYBOX_SORT
  602. help
  603. Without this, sort only supports -rusz, and an integer version
  604. of -n. Selecting this adds sort keys, floating point support, and
  605. more. This adds a little over 3k to a nonstatic build on x86.
  606. The SuSv3 sort standard is available at:
  607. http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
  608. config BUSYBOX_FEATURE_SORT_OPTIMIZE_MEMORY
  609. bool "Use less memory (but might be slower)"
  610. default n # defaults to N since we are size-paranoid tribe
  611. depends on BUSYBOX_SORT
  612. help
  613. Attempt to use less memory (by storing only one copy
  614. of duplicated lines, and such). Useful if you work on huge files.
  615. config BUSYBOX_SPLIT
  616. bool "split (5 kb)"
  617. default y
  618. help
  619. Split a file into pieces.
  620. config BUSYBOX_FEATURE_SPLIT_FANCY
  621. bool "Fancy extensions"
  622. default y
  623. depends on BUSYBOX_SPLIT
  624. help
  625. Add support for features not required by SUSv3.
  626. Supports additional suffixes 'b' for 512 bytes,
  627. 'g' for 1GiB for the -b option.
  628. config BUSYBOX_STAT
  629. bool "stat (11 kb)"
  630. default y
  631. help
  632. display file or filesystem status.
  633. config BUSYBOX_FEATURE_STAT_FORMAT
  634. bool "Enable custom formats (-c)"
  635. default y
  636. depends on BUSYBOX_STAT
  637. help
  638. Without this, stat will not support the '-c format' option where
  639. users can pass a custom format string for output. This adds about
  640. 7k to a nonstatic build on amd64.
  641. config BUSYBOX_FEATURE_STAT_FILESYSTEM
  642. bool "Enable display of filesystem status (-f)"
  643. default y
  644. depends on BUSYBOX_STAT
  645. help
  646. Without this, stat will not support the '-f' option to display
  647. information about filesystem status.
  648. config BUSYBOX_STTY
  649. bool "stty (8.9 kb)"
  650. default y
  651. help
  652. stty is used to change and print terminal line settings.
  653. config BUSYBOX_SUM
  654. bool "sum (4 kb)"
  655. default y
  656. help
  657. checksum and count the blocks in a file
  658. config BUSYBOX_SYNC
  659. bool "sync (3.8 kb)"
  660. default y
  661. help
  662. sync is used to flush filesystem buffers.
  663. config BUSYBOX_FEATURE_SYNC_FANCY
  664. bool "Enable -d and -f flags (requires syncfs(2) in libc)"
  665. default y
  666. depends on BUSYBOX_SYNC
  667. help
  668. sync -d FILE... executes fdatasync() on each FILE.
  669. sync -f FILE... executes syncfs() on each FILE.
  670. config BUSYBOX_FSYNC
  671. bool "fsync (3.6 kb)"
  672. default y
  673. help
  674. fsync is used to flush file-related cached blocks to disk.
  675. config BUSYBOX_TAC
  676. bool "tac (3.9 kb)"
  677. default y
  678. help
  679. tac is used to concatenate and print files in reverse.
  680. config BUSYBOX_TAIL
  681. bool "tail (6.8 kb)"
  682. default y
  683. help
  684. tail is used to print the last specified number of lines
  685. from files.
  686. config BUSYBOX_FEATURE_FANCY_TAIL
  687. bool "Enable -q, -s, -v, and -F options"
  688. default y
  689. depends on BUSYBOX_TAIL
  690. help
  691. These options are provided by GNU tail, but
  692. are not specified in the SUSv3 standard:
  693. -q Never output headers giving file names
  694. -s SEC Wait SEC seconds between reads with -f
  695. -v Always output headers giving file names
  696. -F Same as -f, but keep retrying
  697. config BUSYBOX_TEE
  698. bool "tee (4.2 kb)"
  699. default y
  700. help
  701. tee is used to read from standard input and write
  702. to standard output and files.
  703. config BUSYBOX_FEATURE_TEE_USE_BLOCK_IO
  704. bool "Enable block I/O (larger/faster) instead of byte I/O"
  705. default y
  706. depends on BUSYBOX_TEE
  707. help
  708. Enable this option for a faster tee, at expense of size.
  709. config BUSYBOX_TEST
  710. bool "test (4.1 kb)"
  711. default y
  712. help
  713. test is used to check file types and compare values,
  714. returning an appropriate exit code. The bash shell
  715. has test built in, ash can build it in optionally.
  716. config BUSYBOX_TEST1
  717. bool "test as ["
  718. default y
  719. help
  720. Provide test command in the "[ EXPR ]" form
  721. config BUSYBOX_TEST2
  722. bool "test as [["
  723. default y
  724. help
  725. Provide test command in the "[[ EXPR ]]" form
  726. config BUSYBOX_FEATURE_TEST_64
  727. bool "Extend test to 64 bit"
  728. default y
  729. depends on BUSYBOX_TEST || BUSYBOX_TEST1 || BUSYBOX_TEST2 || BUSYBOX_ASH_TEST || BUSYBOX_HUSH_TEST
  730. help
  731. Enable 64-bit support in test.
  732. config BUSYBOX_TIMEOUT
  733. bool "timeout (6 kb)"
  734. default y
  735. help
  736. Runs a program and watches it. If it does not terminate in
  737. specified number of seconds, it is sent a signal.
  738. config BUSYBOX_TOUCH
  739. bool "touch (5.9 kb)"
  740. default y
  741. help
  742. touch is used to create or change the access and/or
  743. modification timestamp of specified files.
  744. config BUSYBOX_FEATURE_TOUCH_SUSV3
  745. bool "Add support for SUSV3 features (-a -d -m -t -r)"
  746. default y
  747. depends on BUSYBOX_TOUCH
  748. help
  749. Enable touch to use a reference file or a given date/time argument.
  750. config BUSYBOX_TR
  751. bool "tr (5.1 kb)"
  752. default y
  753. help
  754. tr is used to squeeze, and/or delete characters from standard
  755. input, writing to standard output.
  756. config BUSYBOX_FEATURE_TR_CLASSES
  757. bool "Enable character classes (such as [:upper:])"
  758. default y
  759. depends on BUSYBOX_TR
  760. help
  761. Enable character classes, enabling commands such as:
  762. tr [:upper:] [:lower:] to convert input into lowercase.
  763. config BUSYBOX_FEATURE_TR_EQUIV
  764. bool "Enable equivalence classes"
  765. default y
  766. depends on BUSYBOX_TR
  767. help
  768. Enable equivalence classes, which essentially add the enclosed
  769. character to the current set. For instance, tr [=a=] xyz would
  770. replace all instances of 'a' with 'xyz'. This option is mainly
  771. useful for cases when no other way of expressing a character
  772. is possible.
  773. config BUSYBOX_TRUE
  774. bool "true (tiny)"
  775. default y
  776. help
  777. true returns an exit code of TRUE (0).
  778. config BUSYBOX_TRUNCATE
  779. bool "truncate (4.2 kb)"
  780. default y
  781. help
  782. truncate truncates files to a given size. If a file does
  783. not exist, it is created unless told otherwise.
  784. config BUSYBOX_TTY
  785. bool "tty (3.6 kb)"
  786. default y
  787. help
  788. tty is used to print the name of the current terminal to
  789. standard output.
  790. config BUSYBOX_UNAME
  791. bool "uname (3.9 kb)"
  792. default y
  793. help
  794. uname is used to print system information.
  795. config BUSYBOX_UNAME_OSNAME
  796. string "Operating system name"
  797. default "GNU/Linux"
  798. depends on BUSYBOX_UNAME
  799. help
  800. Sets the operating system name reported by uname -o. The
  801. default is "GNU/Linux".
  802. config BUSYBOX_BB_ARCH
  803. bool "arch (1.1 kb)"
  804. default y
  805. help
  806. Same as uname -m.
  807. config BUSYBOX_UNIQ
  808. bool "uniq (4.9 kb)"
  809. default y
  810. help
  811. uniq is used to remove duplicate lines from a sorted file.
  812. config BUSYBOX_UNLINK
  813. bool "unlink (3.2 kb)"
  814. default y
  815. help
  816. unlink deletes a file by calling unlink()
  817. config BUSYBOX_USLEEP
  818. bool "usleep (1.3 kb)"
  819. default y
  820. help
  821. usleep is used to pause for a specified number of microseconds.
  822. config BUSYBOX_UUDECODE
  823. bool "uudecode (5.8 kb)"
  824. default y
  825. help
  826. uudecode is used to decode a uuencoded file.
  827. config BUSYBOX_BASE32
  828. bool "base32 (4.9 kb)"
  829. default y
  830. help
  831. Base32 encode and decode
  832. config BUSYBOX_BASE64
  833. bool "base64 (4.9 kb)"
  834. default y
  835. help
  836. Base64 encode and decode
  837. config BUSYBOX_UUENCODE
  838. bool "uuencode (4.4 kb)"
  839. default y
  840. help
  841. uuencode is used to uuencode a file.
  842. config BUSYBOX_WC
  843. bool "wc (4.5 kb)"
  844. default y
  845. help
  846. wc is used to print the number of bytes, words, and lines,
  847. in specified files.
  848. config BUSYBOX_FEATURE_WC_LARGE
  849. bool "Support very large counts"
  850. default y
  851. depends on BUSYBOX_WC
  852. help
  853. Use "unsigned long long" for counter variables.
  854. config BUSYBOX_WHO
  855. bool "who (3.9 kb)"
  856. default y
  857. depends on BUSYBOX_FEATURE_UTMP
  858. help
  859. Print users currently logged on.
  860. config BUSYBOX_W
  861. bool "w (3.8 kb)"
  862. default y
  863. depends on BUSYBOX_FEATURE_UTMP
  864. help
  865. Print users currently logged on.
  866. config BUSYBOX_USERS
  867. bool "users (3.4 kb)"
  868. default y
  869. depends on BUSYBOX_FEATURE_UTMP
  870. help
  871. Print users currently logged on.
  872. config BUSYBOX_WHOAMI
  873. bool "whoami (3.2 kb)"
  874. default y
  875. help
  876. whoami is used to print the username of the current
  877. user id (same as id -un).
  878. config BUSYBOX_YES
  879. bool "yes (1.2 kb)"
  880. default y
  881. help
  882. yes is used to repeatedly output a specific string, or
  883. the default string 'y'.
  884. endmenu