PageRenderTime 47ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 1ms

/package/utils/busybox/config/coreutils/Config.in

https://gitlab.com/gl-xinshouyong/1407-mifi-customer-tmp
Autoconf | 933 lines | 792 code | 129 blank | 12 comment | 75 complexity | 5f49f980e2780312e640fb1450932385 MD5 | raw file
  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 scripts/kbuild/config-language.txt.
  5. #
  6. menu "Coreutils"
  7. config BUSYBOX_CONFIG_BASENAME
  8. bool "basename"
  9. default BUSYBOX_DEFAULT_BASENAME
  10. help
  11. basename is used to strip the directory and suffix from filenames,
  12. leaving just the filename itself. Enable this option if you wish
  13. to enable the 'basename' utility.
  14. config BUSYBOX_CONFIG_CAT
  15. bool "cat"
  16. default BUSYBOX_DEFAULT_CAT
  17. help
  18. cat is used to concatenate files and print them to the standard
  19. output. Enable this option if you wish to enable the 'cat' utility.
  20. config BUSYBOX_CONFIG_DATE
  21. bool "date"
  22. default BUSYBOX_DEFAULT_DATE
  23. help
  24. date is used to set the system date or display the
  25. current time in the given format.
  26. config BUSYBOX_CONFIG_FEATURE_DATE_ISOFMT
  27. bool "Enable ISO date format output (-I)"
  28. default BUSYBOX_DEFAULT_FEATURE_DATE_ISOFMT
  29. depends on BUSYBOX_CONFIG_DATE
  30. help
  31. Enable option (-I) to output an ISO-8601 compliant
  32. date/time string.
  33. # defaults to "no": stat's nanosecond field is a bit non-portable
  34. config BUSYBOX_CONFIG_FEATURE_DATE_NANO
  35. bool "Support %[num]N nanosecond format specifier"
  36. default BUSYBOX_DEFAULT_FEATURE_DATE_NANO
  37. depends on BUSYBOX_CONFIG_DATE # syscall(__NR_clock_gettime)
  38. select BUSYBOX_CONFIG_PLATFORM_LINUX
  39. help
  40. Support %[num]N format specifier. Adds ~250 bytes of code.
  41. config BUSYBOX_CONFIG_FEATURE_DATE_COMPAT
  42. bool "Support weird 'date MMDDhhmm[[YY]YY][.ss]' format"
  43. default BUSYBOX_DEFAULT_FEATURE_DATE_COMPAT
  44. depends on BUSYBOX_CONFIG_DATE
  45. help
  46. System time can be set by 'date -s DATE' and simply 'date DATE',
  47. but formats of DATE string are different. 'date DATE' accepts
  48. a rather weird MMDDhhmm[[YY]YY][.ss] format with completely
  49. unnatural placement of year between minutes and seconds.
  50. date -s (and other commands like touch -d) use more sensible
  51. formats (for one, ISO format YYYY-MM-DD hh:mm:ss.ssssss).
  52. With this option off, 'date DATE' is 'date -s DATE' support
  53. the same format. With it on, 'date DATE' additionally supports
  54. MMDDhhmm[[YY]YY][.ss] format.
  55. config BUSYBOX_CONFIG_HOSTID
  56. bool "hostid"
  57. default BUSYBOX_DEFAULT_HOSTID
  58. help
  59. hostid prints the numeric identifier (in hexadecimal) for
  60. the current host.
  61. config BUSYBOX_CONFIG_ID
  62. bool "id"
  63. default BUSYBOX_DEFAULT_ID
  64. help
  65. id displays the current user and group ID names.
  66. config BUSYBOX_CONFIG_GROUPS
  67. bool "groups"
  68. default BUSYBOX_DEFAULT_GROUPS
  69. help
  70. Print the group names associated with current user id.
  71. config BUSYBOX_CONFIG_TEST
  72. bool "test"
  73. default BUSYBOX_DEFAULT_TEST
  74. help
  75. test is used to check file types and compare values,
  76. returning an appropriate exit code. The bash shell
  77. has test built in, ash can build it in optionally.
  78. config BUSYBOX_CONFIG_FEATURE_TEST_64
  79. bool "Extend test to 64 bit"
  80. default BUSYBOX_DEFAULT_FEATURE_TEST_64
  81. depends on BUSYBOX_CONFIG_TEST || BUSYBOX_CONFIG_ASH_BUILTIN_TEST || BUSYBOX_CONFIG_HUSH
  82. help
  83. Enable 64-bit support in test.
  84. config BUSYBOX_CONFIG_TOUCH
  85. bool "touch"
  86. default BUSYBOX_DEFAULT_TOUCH
  87. help
  88. touch is used to create or change the access and/or
  89. modification timestamp of specified files.
  90. config BUSYBOX_CONFIG_FEATURE_TOUCH_NODEREF
  91. bool "Add support for -h"
  92. default BUSYBOX_DEFAULT_FEATURE_TOUCH_NODEREF
  93. depends on BUSYBOX_CONFIG_TOUCH
  94. help
  95. Enable touch to have the -h option.
  96. This requires libc support for lutimes() function.
  97. config BUSYBOX_CONFIG_FEATURE_TOUCH_SUSV3
  98. bool "Add support for SUSV3 features (-d -t -r)"
  99. default BUSYBOX_DEFAULT_FEATURE_TOUCH_SUSV3
  100. depends on BUSYBOX_CONFIG_TOUCH
  101. help
  102. Enable touch to use a reference file or a given date/time argument.
  103. config BUSYBOX_CONFIG_TR
  104. bool "tr"
  105. default BUSYBOX_DEFAULT_TR
  106. help
  107. tr is used to squeeze, and/or delete characters from standard
  108. input, writing to standard output.
  109. config BUSYBOX_CONFIG_FEATURE_TR_CLASSES
  110. bool "Enable character classes (such as [:upper:])"
  111. default BUSYBOX_DEFAULT_FEATURE_TR_CLASSES
  112. depends on BUSYBOX_CONFIG_TR
  113. help
  114. Enable character classes, enabling commands such as:
  115. tr [:upper:] [:lower:] to convert input into lowercase.
  116. config BUSYBOX_CONFIG_FEATURE_TR_EQUIV
  117. bool "Enable equivalence classes"
  118. default BUSYBOX_DEFAULT_FEATURE_TR_EQUIV
  119. depends on BUSYBOX_CONFIG_TR
  120. help
  121. Enable equivalence classes, which essentially add the enclosed
  122. character to the current set. For instance, tr [=a=] xyz would
  123. replace all instances of 'a' with 'xyz'. This option is mainly
  124. useful for cases when no other way of expressing a character
  125. is possible.
  126. config BUSYBOX_CONFIG_BASE64
  127. bool "base64"
  128. default BUSYBOX_DEFAULT_BASE64
  129. help
  130. Base64 encode and decode
  131. config BUSYBOX_CONFIG_WHO
  132. bool "who"
  133. default BUSYBOX_DEFAULT_WHO
  134. depends on BUSYBOX_CONFIG_FEATURE_UTMP
  135. help
  136. who is used to show who is logged on.
  137. config BUSYBOX_CONFIG_USERS
  138. bool "users"
  139. default BUSYBOX_DEFAULT_USERS
  140. depends on BUSYBOX_CONFIG_FEATURE_UTMP
  141. help
  142. Print users currently logged on.
  143. config BUSYBOX_CONFIG_CAL
  144. bool "cal"
  145. default BUSYBOX_DEFAULT_CAL
  146. help
  147. cal is used to display a monthly calender.
  148. config BUSYBOX_CONFIG_CATV
  149. bool "catv"
  150. default BUSYBOX_DEFAULT_CATV
  151. help
  152. Display nonprinting characters as escape sequences (like some
  153. implementations' cat -v option).
  154. config BUSYBOX_CONFIG_CHGRP
  155. bool "chgrp"
  156. default BUSYBOX_DEFAULT_CHGRP
  157. help
  158. chgrp is used to change the group ownership of files.
  159. config BUSYBOX_CONFIG_CHMOD
  160. bool "chmod"
  161. default BUSYBOX_DEFAULT_CHMOD
  162. help
  163. chmod is used to change the access permission of files.
  164. config BUSYBOX_CONFIG_CHOWN
  165. bool "chown"
  166. default BUSYBOX_DEFAULT_CHOWN
  167. help
  168. chown is used to change the user and/or group ownership
  169. of files.
  170. config BUSYBOX_CONFIG_FEATURE_CHOWN_LONG_OPTIONS
  171. bool "Enable long options"
  172. default BUSYBOX_DEFAULT_FEATURE_CHOWN_LONG_OPTIONS
  173. depends on BUSYBOX_CONFIG_CHOWN && BUSYBOX_CONFIG_LONG_OPTS
  174. help
  175. Enable use of long options
  176. config BUSYBOX_CONFIG_CHROOT
  177. bool "chroot"
  178. default BUSYBOX_DEFAULT_CHROOT
  179. help
  180. chroot is used to change the root directory and run a command.
  181. The default command is `/bin/sh'.
  182. config BUSYBOX_CONFIG_CKSUM
  183. bool "cksum"
  184. default BUSYBOX_DEFAULT_CKSUM
  185. help
  186. cksum is used to calculate the CRC32 checksum of a file.
  187. config BUSYBOX_CONFIG_COMM
  188. bool "comm"
  189. default BUSYBOX_DEFAULT_COMM
  190. help
  191. comm is used to compare two files line by line and return
  192. a three-column output.
  193. config BUSYBOX_CONFIG_CP
  194. bool "cp"
  195. default BUSYBOX_DEFAULT_CP
  196. help
  197. cp is used to copy files and directories.
  198. config BUSYBOX_CONFIG_FEATURE_CP_LONG_OPTIONS
  199. bool "Enable long options for cp"
  200. default BUSYBOX_DEFAULT_FEATURE_CP_LONG_OPTIONS
  201. depends on BUSYBOX_CONFIG_CP && BUSYBOX_CONFIG_LONG_OPTS
  202. help
  203. Enable long options for cp.
  204. Also add support for --parents option.
  205. config BUSYBOX_CONFIG_CUT
  206. bool "cut"
  207. default BUSYBOX_DEFAULT_CUT
  208. help
  209. cut is used to print selected parts of lines from
  210. each file to stdout.
  211. config BUSYBOX_CONFIG_DD
  212. bool "dd"
  213. default BUSYBOX_DEFAULT_DD
  214. help
  215. dd copies a file (from standard input to standard output,
  216. by default) using specific input and output blocksizes,
  217. while optionally performing conversions on it.
  218. config BUSYBOX_CONFIG_FEATURE_DD_SIGNAL_HANDLING
  219. bool "Enable DD signal handling for status reporting"
  220. default BUSYBOX_DEFAULT_FEATURE_DD_SIGNAL_HANDLING
  221. depends on BUSYBOX_CONFIG_DD
  222. help
  223. Sending a SIGUSR1 signal to a running `dd' process makes it
  224. print to standard error the number of records read and written
  225. so far, then to resume copying.
  226. $ dd if=/dev/zero of=/dev/null&
  227. $ pid=$! kill -USR1 $pid; sleep 1; kill $pid
  228. 10899206+0 records in
  229. 10899206+0 records out
  230. config BUSYBOX_CONFIG_FEATURE_DD_THIRD_STATUS_LINE
  231. bool "Enable the third status line upon signal"
  232. default BUSYBOX_DEFAULT_FEATURE_DD_THIRD_STATUS_LINE
  233. depends on BUSYBOX_CONFIG_DD && BUSYBOX_CONFIG_FEATURE_DD_SIGNAL_HANDLING
  234. help
  235. Displays a coreutils-like third status line with transferred bytes,
  236. elapsed time and speed.
  237. config BUSYBOX_CONFIG_FEATURE_DD_IBS_OBS
  238. bool "Enable ibs, obs and conv options"
  239. default BUSYBOX_DEFAULT_FEATURE_DD_IBS_OBS
  240. depends on BUSYBOX_CONFIG_DD
  241. help
  242. Enables support for writing a certain number of bytes in and out,
  243. at a time, and performing conversions on the data stream.
  244. config BUSYBOX_CONFIG_DF
  245. bool "df"
  246. default BUSYBOX_DEFAULT_DF
  247. help
  248. df reports the amount of disk space used and available
  249. on filesystems.
  250. config BUSYBOX_CONFIG_FEATURE_DF_FANCY
  251. bool "Enable -a, -i, -B"
  252. default BUSYBOX_DEFAULT_FEATURE_DF_FANCY
  253. depends on BUSYBOX_CONFIG_DF
  254. help
  255. This option enables -a, -i and -B.
  256. -a Show all filesystems
  257. -i Inodes
  258. -B <SIZE> Blocksize
  259. config BUSYBOX_CONFIG_DIRNAME
  260. bool "dirname"
  261. default BUSYBOX_DEFAULT_DIRNAME
  262. help
  263. dirname is used to strip a non-directory suffix from
  264. a file name.
  265. config BUSYBOX_CONFIG_DOS2UNIX
  266. bool "dos2unix/unix2dos"
  267. default BUSYBOX_DEFAULT_DOS2UNIX
  268. help
  269. dos2unix is used to convert a text file from DOS format to
  270. UNIX format, and vice versa.
  271. config BUSYBOX_CONFIG_UNIX2DOS
  272. bool
  273. default BUSYBOX_DEFAULT_UNIX2DOS
  274. depends on BUSYBOX_CONFIG_DOS2UNIX
  275. help
  276. unix2dos is used to convert a text file from UNIX format to
  277. DOS format, and vice versa.
  278. config BUSYBOX_CONFIG_DU
  279. bool "du (default blocksize of 512 bytes)"
  280. default BUSYBOX_DEFAULT_DU
  281. help
  282. du is used to report the amount of disk space used
  283. for specified files.
  284. config BUSYBOX_CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
  285. bool "Use a default blocksize of 1024 bytes (1K)"
  286. default BUSYBOX_DEFAULT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
  287. depends on BUSYBOX_CONFIG_DU
  288. help
  289. Use a blocksize of (1K) instead of the default 512b.
  290. config BUSYBOX_CONFIG_ECHO
  291. bool "echo (basic SuSv3 version taking no options)"
  292. default BUSYBOX_DEFAULT_ECHO
  293. help
  294. echo is used to print a specified string to stdout.
  295. # this entry also appears in shell/Config.in, next to the echo builtin
  296. config BUSYBOX_CONFIG_FEATURE_FANCY_ECHO
  297. bool "Enable echo options (-n and -e)"
  298. default BUSYBOX_DEFAULT_FEATURE_FANCY_ECHO
  299. depends on BUSYBOX_CONFIG_ECHO || BUSYBOX_CONFIG_ASH_BUILTIN_ECHO || BUSYBOX_CONFIG_HUSH
  300. help
  301. This adds options (-n and -e) to echo.
  302. config BUSYBOX_CONFIG_ENV
  303. bool "env"
  304. default BUSYBOX_DEFAULT_ENV
  305. help
  306. env is used to set an environment variable and run
  307. a command; without options it displays the current
  308. environment.
  309. config BUSYBOX_CONFIG_FEATURE_ENV_LONG_OPTIONS
  310. bool "Enable long options"
  311. default BUSYBOX_DEFAULT_FEATURE_ENV_LONG_OPTIONS
  312. depends on BUSYBOX_CONFIG_ENV && BUSYBOX_CONFIG_LONG_OPTS
  313. help
  314. Support long options for the env applet.
  315. config BUSYBOX_CONFIG_EXPAND
  316. bool "expand"
  317. default BUSYBOX_DEFAULT_EXPAND
  318. help
  319. By default, convert all tabs to spaces.
  320. config BUSYBOX_CONFIG_FEATURE_EXPAND_LONG_OPTIONS
  321. bool "Enable long options"
  322. default BUSYBOX_DEFAULT_FEATURE_EXPAND_LONG_OPTIONS
  323. depends on BUSYBOX_CONFIG_EXPAND && BUSYBOX_CONFIG_LONG_OPTS
  324. help
  325. Support long options for the expand applet.
  326. config BUSYBOX_CONFIG_EXPR
  327. bool "expr"
  328. default BUSYBOX_DEFAULT_EXPR
  329. help
  330. expr is used to calculate numbers and print the result
  331. to standard output.
  332. config BUSYBOX_CONFIG_EXPR_MATH_SUPPORT_64
  333. bool "Extend Posix numbers support to 64 bit"
  334. default BUSYBOX_DEFAULT_EXPR_MATH_SUPPORT_64
  335. depends on BUSYBOX_CONFIG_EXPR
  336. help
  337. Enable 64-bit math support in the expr applet. This will make
  338. the applet slightly larger, but will allow computation with very
  339. large numbers.
  340. config BUSYBOX_CONFIG_FALSE
  341. bool "false"
  342. default BUSYBOX_DEFAULT_FALSE
  343. help
  344. false returns an exit code of FALSE (1).
  345. config BUSYBOX_CONFIG_FOLD
  346. bool "fold"
  347. default BUSYBOX_DEFAULT_FOLD
  348. help
  349. Wrap text to fit a specific width.
  350. config BUSYBOX_CONFIG_FSYNC
  351. bool "fsync"
  352. default BUSYBOX_DEFAULT_FSYNC
  353. help
  354. fsync is used to flush file-related cached blocks to disk.
  355. config BUSYBOX_CONFIG_HEAD
  356. bool "head"
  357. default BUSYBOX_DEFAULT_HEAD
  358. help
  359. head is used to print the first specified number of lines
  360. from files.
  361. config BUSYBOX_CONFIG_FEATURE_FANCY_HEAD
  362. bool "Enable head options (-c, -q, and -v)"
  363. default BUSYBOX_DEFAULT_FEATURE_FANCY_HEAD
  364. depends on BUSYBOX_CONFIG_HEAD
  365. help
  366. This enables the head options (-c, -q, and -v).
  367. config BUSYBOX_CONFIG_INSTALL
  368. bool "install"
  369. default BUSYBOX_DEFAULT_INSTALL
  370. help
  371. Copy files and set attributes.
  372. config BUSYBOX_CONFIG_FEATURE_INSTALL_LONG_OPTIONS
  373. bool "Enable long options"
  374. default BUSYBOX_DEFAULT_FEATURE_INSTALL_LONG_OPTIONS
  375. depends on BUSYBOX_CONFIG_INSTALL && BUSYBOX_CONFIG_LONG_OPTS
  376. help
  377. Support long options for the install applet.
  378. ####config LENGTH
  379. #### bool "length"
  380. #### default y
  381. #### help
  382. #### length is used to print out the length of a specified string.
  383. config BUSYBOX_CONFIG_LN
  384. bool "ln"
  385. default BUSYBOX_DEFAULT_LN
  386. help
  387. ln is used to create hard or soft links between files.
  388. config BUSYBOX_CONFIG_LOGNAME
  389. bool "logname"
  390. default BUSYBOX_DEFAULT_LOGNAME
  391. help
  392. logname is used to print the current user's login name.
  393. config BUSYBOX_CONFIG_LS
  394. bool "ls"
  395. default BUSYBOX_DEFAULT_LS
  396. help
  397. ls is used to list the contents of directories.
  398. config BUSYBOX_CONFIG_FEATURE_LS_FILETYPES
  399. bool "Enable filetyping options (-p and -F)"
  400. default BUSYBOX_DEFAULT_FEATURE_LS_FILETYPES
  401. depends on BUSYBOX_CONFIG_LS
  402. help
  403. Enable the ls options (-p and -F).
  404. config BUSYBOX_CONFIG_FEATURE_LS_FOLLOWLINKS
  405. bool "Enable symlinks dereferencing (-L)"
  406. default BUSYBOX_DEFAULT_FEATURE_LS_FOLLOWLINKS
  407. depends on BUSYBOX_CONFIG_LS
  408. help
  409. Enable the ls option (-L).
  410. config BUSYBOX_CONFIG_FEATURE_LS_RECURSIVE
  411. bool "Enable recursion (-R)"
  412. default BUSYBOX_DEFAULT_FEATURE_LS_RECURSIVE
  413. depends on BUSYBOX_CONFIG_LS
  414. help
  415. Enable the ls option (-R).
  416. config BUSYBOX_CONFIG_FEATURE_LS_SORTFILES
  417. bool "Sort the file names"
  418. default BUSYBOX_DEFAULT_FEATURE_LS_SORTFILES
  419. depends on BUSYBOX_CONFIG_LS
  420. help
  421. Allow ls to sort file names alphabetically.
  422. config BUSYBOX_CONFIG_FEATURE_LS_TIMESTAMPS
  423. bool "Show file timestamps"
  424. default BUSYBOX_DEFAULT_FEATURE_LS_TIMESTAMPS
  425. depends on BUSYBOX_CONFIG_LS
  426. help
  427. Allow ls to display timestamps for files.
  428. config BUSYBOX_CONFIG_FEATURE_LS_USERNAME
  429. bool "Show username/groupnames"
  430. default BUSYBOX_DEFAULT_FEATURE_LS_USERNAME
  431. depends on BUSYBOX_CONFIG_LS
  432. help
  433. Allow ls to display username/groupname for files.
  434. config BUSYBOX_CONFIG_FEATURE_LS_COLOR
  435. bool "Allow use of color to identify file types"
  436. default BUSYBOX_DEFAULT_FEATURE_LS_COLOR
  437. depends on BUSYBOX_CONFIG_LS && BUSYBOX_CONFIG_LONG_OPTS
  438. help
  439. This enables the --color option to ls.
  440. config BUSYBOX_CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
  441. bool "Produce colored ls output by default"
  442. default BUSYBOX_DEFAULT_FEATURE_LS_COLOR_IS_DEFAULT
  443. depends on BUSYBOX_CONFIG_FEATURE_LS_COLOR
  444. help
  445. Saying yes here will turn coloring on by default,
  446. even if no "--color" option is given to the ls command.
  447. This is not recommended, since the colors are not
  448. configurable, and the output may not be legible on
  449. many output screens.
  450. config BUSYBOX_CONFIG_MD5SUM
  451. bool "md5sum"
  452. default BUSYBOX_DEFAULT_MD5SUM
  453. help
  454. md5sum is used to print or check MD5 checksums.
  455. config BUSYBOX_CONFIG_MKDIR
  456. bool "mkdir"
  457. default BUSYBOX_DEFAULT_MKDIR
  458. help
  459. mkdir is used to create directories with the specified names.
  460. config BUSYBOX_CONFIG_FEATURE_MKDIR_LONG_OPTIONS
  461. bool "Enable long options"
  462. default BUSYBOX_DEFAULT_FEATURE_MKDIR_LONG_OPTIONS
  463. depends on BUSYBOX_CONFIG_MKDIR && BUSYBOX_CONFIG_LONG_OPTS
  464. help
  465. Support long options for the mkdir applet.
  466. config BUSYBOX_CONFIG_MKFIFO
  467. bool "mkfifo"
  468. default BUSYBOX_DEFAULT_MKFIFO
  469. help
  470. mkfifo is used to create FIFOs (named pipes).
  471. The `mknod' program can also create FIFOs.
  472. config BUSYBOX_CONFIG_MKNOD
  473. bool "mknod"
  474. default BUSYBOX_DEFAULT_MKNOD
  475. help
  476. mknod is used to create FIFOs or block/character special
  477. files with the specified names.
  478. config BUSYBOX_CONFIG_MV
  479. bool "mv"
  480. default BUSYBOX_DEFAULT_MV
  481. help
  482. mv is used to move or rename files or directories.
  483. config BUSYBOX_CONFIG_FEATURE_MV_LONG_OPTIONS
  484. bool "Enable long options"
  485. default BUSYBOX_DEFAULT_FEATURE_MV_LONG_OPTIONS
  486. depends on BUSYBOX_CONFIG_MV && BUSYBOX_CONFIG_LONG_OPTS
  487. help
  488. Support long options for the mv applet.
  489. config BUSYBOX_CONFIG_NICE
  490. bool "nice"
  491. default BUSYBOX_DEFAULT_NICE
  492. help
  493. nice runs a program with modified scheduling priority.
  494. config BUSYBOX_CONFIG_NOHUP
  495. bool "nohup"
  496. default BUSYBOX_DEFAULT_NOHUP
  497. help
  498. run a command immune to hangups, with output to a non-tty.
  499. config BUSYBOX_CONFIG_OD
  500. bool "od"
  501. default BUSYBOX_DEFAULT_OD
  502. help
  503. od is used to dump binary files in octal and other formats.
  504. config BUSYBOX_CONFIG_PRINTENV
  505. bool "printenv"
  506. default BUSYBOX_DEFAULT_PRINTENV
  507. help
  508. printenv is used to print all or part of environment.
  509. config BUSYBOX_CONFIG_PRINTF
  510. bool "printf"
  511. default BUSYBOX_DEFAULT_PRINTF
  512. help
  513. printf is used to format and print specified strings.
  514. It's similar to `echo' except it has more options.
  515. config BUSYBOX_CONFIG_PWD
  516. bool "pwd"
  517. default BUSYBOX_DEFAULT_PWD
  518. help
  519. pwd is used to print the current directory.
  520. config BUSYBOX_CONFIG_READLINK
  521. bool "readlink"
  522. default BUSYBOX_DEFAULT_READLINK
  523. help
  524. This program reads a symbolic link and returns the name
  525. of the file it points to
  526. config BUSYBOX_CONFIG_FEATURE_READLINK_FOLLOW
  527. bool "Enable canonicalization by following all symlinks (-f)"
  528. default BUSYBOX_DEFAULT_FEATURE_READLINK_FOLLOW
  529. depends on BUSYBOX_CONFIG_READLINK
  530. help
  531. Enable the readlink option (-f).
  532. config BUSYBOX_CONFIG_REALPATH
  533. bool "realpath"
  534. default BUSYBOX_DEFAULT_REALPATH
  535. help
  536. Return the canonicalized absolute pathname.
  537. This isn't provided by GNU shellutils, but where else does it belong.
  538. config BUSYBOX_CONFIG_RM
  539. bool "rm"
  540. default BUSYBOX_DEFAULT_RM
  541. help
  542. rm is used to remove files or directories.
  543. config BUSYBOX_CONFIG_RMDIR
  544. bool "rmdir"
  545. default BUSYBOX_DEFAULT_RMDIR
  546. help
  547. rmdir is used to remove empty directories.
  548. config BUSYBOX_CONFIG_FEATURE_RMDIR_LONG_OPTIONS
  549. bool "Enable long options"
  550. default BUSYBOX_DEFAULT_FEATURE_RMDIR_LONG_OPTIONS
  551. depends on BUSYBOX_CONFIG_RMDIR && BUSYBOX_CONFIG_LONG_OPTS
  552. help
  553. Support long options for the rmdir applet, including
  554. --ignore-fail-on-non-empty for compatibility with GNU rmdir.
  555. config BUSYBOX_CONFIG_SEQ
  556. bool "seq"
  557. default BUSYBOX_DEFAULT_SEQ
  558. help
  559. print a sequence of numbers
  560. config BUSYBOX_CONFIG_SHA1SUM
  561. bool "sha1sum"
  562. default BUSYBOX_DEFAULT_SHA1SUM
  563. help
  564. Compute and check SHA1 message digest
  565. config BUSYBOX_CONFIG_SHA256SUM
  566. bool "sha256sum"
  567. default BUSYBOX_DEFAULT_SHA256SUM
  568. help
  569. Compute and check SHA256 message digest
  570. config BUSYBOX_CONFIG_SHA512SUM
  571. bool "sha512sum"
  572. default BUSYBOX_DEFAULT_SHA512SUM
  573. help
  574. Compute and check SHA512 message digest
  575. config BUSYBOX_CONFIG_SHA3SUM
  576. bool "sha3sum"
  577. default BUSYBOX_DEFAULT_SHA3SUM
  578. help
  579. Compute and check SHA3 (512-bit) message digest
  580. config BUSYBOX_CONFIG_SLEEP
  581. bool "sleep"
  582. default BUSYBOX_DEFAULT_SLEEP
  583. help
  584. sleep is used to pause for a specified number of seconds.
  585. It comes in 3 versions:
  586. - small: takes one integer parameter
  587. - fancy: takes multiple integer arguments with suffixes:
  588. sleep 1d 2h 3m 15s
  589. - fancy with fractional numbers:
  590. sleep 2.3s 4.5h sleeps for 16202.3 seconds
  591. Last one is "the most compatible" with coreutils sleep,
  592. but it adds around 1k of code.
  593. config BUSYBOX_CONFIG_FEATURE_FANCY_SLEEP
  594. bool "Enable multiple arguments and s/m/h/d suffixes"
  595. default BUSYBOX_DEFAULT_FEATURE_FANCY_SLEEP
  596. depends on BUSYBOX_CONFIG_SLEEP
  597. help
  598. Allow sleep to pause for specified minutes, hours, and days.
  599. config BUSYBOX_CONFIG_FEATURE_FLOAT_SLEEP
  600. bool "Enable fractional arguments"
  601. default BUSYBOX_DEFAULT_FEATURE_FLOAT_SLEEP
  602. depends on BUSYBOX_CONFIG_FEATURE_FANCY_SLEEP
  603. help
  604. Allow for fractional numeric parameters.
  605. config BUSYBOX_CONFIG_SORT
  606. bool "sort"
  607. default BUSYBOX_DEFAULT_SORT
  608. help
  609. sort is used to sort lines of text in specified files.
  610. config BUSYBOX_CONFIG_FEATURE_SORT_BIG
  611. bool "Full SuSv3 compliant sort (support -ktcsbdfiozgM)"
  612. default BUSYBOX_DEFAULT_FEATURE_SORT_BIG
  613. depends on BUSYBOX_CONFIG_SORT
  614. help
  615. Without this, sort only supports -r, -u, and an integer version
  616. of -n. Selecting this adds sort keys, floating point support, and
  617. more. This adds a little over 3k to a nonstatic build on x86.
  618. The SuSv3 sort standard is available at:
  619. http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
  620. config BUSYBOX_CONFIG_SPLIT
  621. bool "split"
  622. default BUSYBOX_DEFAULT_SPLIT
  623. help
  624. split a file into pieces.
  625. config BUSYBOX_CONFIG_FEATURE_SPLIT_FANCY
  626. bool "Fancy extensions"
  627. default BUSYBOX_DEFAULT_FEATURE_SPLIT_FANCY
  628. depends on BUSYBOX_CONFIG_SPLIT
  629. help
  630. Add support for features not required by SUSv3.
  631. Supports additional suffixes 'b' for 512 bytes,
  632. 'g' for 1GiB for the -b option.
  633. config BUSYBOX_CONFIG_STAT
  634. bool "stat"
  635. default BUSYBOX_DEFAULT_STAT
  636. select BUSYBOX_CONFIG_PLATFORM_LINUX # statfs()
  637. help
  638. display file or filesystem status.
  639. config BUSYBOX_CONFIG_FEATURE_STAT_FORMAT
  640. bool "Enable custom formats (-c)"
  641. default BUSYBOX_DEFAULT_FEATURE_STAT_FORMAT
  642. depends on BUSYBOX_CONFIG_STAT
  643. help
  644. Without this, stat will not support the '-c format' option where
  645. users can pass a custom format string for output. This adds about
  646. 7k to a nonstatic build on amd64.
  647. config BUSYBOX_CONFIG_STTY
  648. bool "stty"
  649. default BUSYBOX_DEFAULT_STTY
  650. help
  651. stty is used to change and print terminal line settings.
  652. config BUSYBOX_CONFIG_SUM
  653. bool "sum"
  654. default BUSYBOX_DEFAULT_SUM
  655. help
  656. checksum and count the blocks in a file
  657. config BUSYBOX_CONFIG_SYNC
  658. bool "sync"
  659. default BUSYBOX_DEFAULT_SYNC
  660. help
  661. sync is used to flush filesystem buffers.
  662. config BUSYBOX_CONFIG_TAC
  663. bool "tac"
  664. default BUSYBOX_DEFAULT_TAC
  665. help
  666. tac is used to concatenate and print files in reverse.
  667. config BUSYBOX_CONFIG_TAIL
  668. bool "tail"
  669. default BUSYBOX_DEFAULT_TAIL
  670. help
  671. tail is used to print the last specified number of lines
  672. from files.
  673. config BUSYBOX_CONFIG_FEATURE_FANCY_TAIL
  674. bool "Enable extra tail options (-q, -s, -v, and -F)"
  675. default BUSYBOX_DEFAULT_FEATURE_FANCY_TAIL
  676. depends on BUSYBOX_CONFIG_TAIL
  677. help
  678. The options (-q, -s, and -v) are provided by GNU tail, but
  679. are not specific in the SUSv3 standard.
  680. -q Never output headers giving file names
  681. -s SEC Wait SEC seconds between reads with -f
  682. -v Always output headers giving file names
  683. config BUSYBOX_CONFIG_TEE
  684. bool "tee"
  685. default BUSYBOX_DEFAULT_TEE
  686. help
  687. tee is used to read from standard input and write
  688. to standard output and files.
  689. config BUSYBOX_CONFIG_FEATURE_TEE_USE_BLOCK_IO
  690. bool "Enable block I/O (larger/faster) instead of byte I/O"
  691. default BUSYBOX_DEFAULT_FEATURE_TEE_USE_BLOCK_IO
  692. depends on BUSYBOX_CONFIG_TEE
  693. help
  694. Enable this option for a faster tee, at expense of size.
  695. config BUSYBOX_CONFIG_TRUE
  696. bool "true"
  697. default BUSYBOX_DEFAULT_TRUE
  698. help
  699. true returns an exit code of TRUE (0).
  700. config BUSYBOX_CONFIG_TTY
  701. bool "tty"
  702. default BUSYBOX_DEFAULT_TTY
  703. help
  704. tty is used to print the name of the current terminal to
  705. standard output.
  706. config BUSYBOX_CONFIG_UNAME
  707. bool "uname"
  708. default BUSYBOX_DEFAULT_UNAME
  709. help
  710. uname is used to print system information.
  711. config BUSYBOX_CONFIG_UNEXPAND
  712. bool "unexpand"
  713. default BUSYBOX_DEFAULT_UNEXPAND
  714. help
  715. By default, convert only leading sequences of blanks to tabs.
  716. config BUSYBOX_CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS
  717. bool "Enable long options"
  718. default BUSYBOX_DEFAULT_FEATURE_UNEXPAND_LONG_OPTIONS
  719. depends on BUSYBOX_CONFIG_UNEXPAND && BUSYBOX_CONFIG_LONG_OPTS
  720. help
  721. Support long options for the unexpand applet.
  722. config BUSYBOX_CONFIG_UNIQ
  723. bool "uniq"
  724. default BUSYBOX_DEFAULT_UNIQ
  725. help
  726. uniq is used to remove duplicate lines from a sorted file.
  727. config BUSYBOX_CONFIG_USLEEP
  728. bool "usleep"
  729. default BUSYBOX_DEFAULT_USLEEP
  730. help
  731. usleep is used to pause for a specified number of microseconds.
  732. config BUSYBOX_CONFIG_UUDECODE
  733. bool "uudecode"
  734. default BUSYBOX_DEFAULT_UUDECODE
  735. help
  736. uudecode is used to decode a uuencoded file.
  737. config BUSYBOX_CONFIG_UUENCODE
  738. bool "uuencode"
  739. default BUSYBOX_DEFAULT_UUENCODE
  740. help
  741. uuencode is used to uuencode a file.
  742. config BUSYBOX_CONFIG_WC
  743. bool "wc"
  744. default BUSYBOX_DEFAULT_WC
  745. help
  746. wc is used to print the number of bytes, words, and lines,
  747. in specified files.
  748. config BUSYBOX_CONFIG_FEATURE_WC_LARGE
  749. bool "Support very large files in wc"
  750. default BUSYBOX_DEFAULT_FEATURE_WC_LARGE
  751. depends on BUSYBOX_CONFIG_WC
  752. help
  753. Use "unsigned long long" in wc for counter variables.
  754. config BUSYBOX_CONFIG_WHOAMI
  755. bool "whoami"
  756. default BUSYBOX_DEFAULT_WHOAMI
  757. help
  758. whoami is used to print the username of the current
  759. user id (same as id -un).
  760. config BUSYBOX_CONFIG_YES
  761. bool "yes"
  762. default BUSYBOX_DEFAULT_YES
  763. help
  764. yes is used to repeatedly output a specific string, or
  765. the default string `y'.
  766. comment "Common options for cp and mv"
  767. depends on BUSYBOX_CONFIG_CP || BUSYBOX_CONFIG_MV
  768. config BUSYBOX_CONFIG_FEATURE_PRESERVE_HARDLINKS
  769. bool "Preserve hard links"
  770. default BUSYBOX_DEFAULT_FEATURE_PRESERVE_HARDLINKS
  771. depends on BUSYBOX_CONFIG_CP || BUSYBOX_CONFIG_MV
  772. help
  773. Allow cp and mv to preserve hard links.
  774. comment "Common options for ls, more and telnet"
  775. depends on BUSYBOX_CONFIG_LS || BUSYBOX_CONFIG_MORE || BUSYBOX_CONFIG_TELNET
  776. config BUSYBOX_CONFIG_FEATURE_AUTOWIDTH
  777. bool "Calculate terminal & column widths"
  778. default BUSYBOX_DEFAULT_FEATURE_AUTOWIDTH
  779. depends on BUSYBOX_CONFIG_LS || BUSYBOX_CONFIG_MORE || BUSYBOX_CONFIG_TELNET
  780. help
  781. This option allows utilities such as 'ls', 'more' and 'telnet'
  782. to determine the width of the screen, which can allow them to
  783. display additional text or avoid wrapping text onto the next line.
  784. If you leave this disabled, your utilities will be especially
  785. primitive and will be unable to determine the current screen width.
  786. comment "Common options for df, du, ls"
  787. depends on BUSYBOX_CONFIG_DF || BUSYBOX_CONFIG_DU || BUSYBOX_CONFIG_LS
  788. config BUSYBOX_CONFIG_FEATURE_HUMAN_READABLE
  789. bool "Support for human readable output (example 13k, 23M, 235G)"
  790. default BUSYBOX_DEFAULT_FEATURE_HUMAN_READABLE
  791. depends on BUSYBOX_CONFIG_DF || BUSYBOX_CONFIG_DU || BUSYBOX_CONFIG_LS
  792. help
  793. Allow df, du, and ls to have human readable output.
  794. comment "Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum"
  795. depends on BUSYBOX_CONFIG_MD5SUM || BUSYBOX_CONFIG_SHA1SUM || BUSYBOX_CONFIG_SHA256SUM || BUSYBOX_CONFIG_SHA512SUM || BUSYBOX_CONFIG_SHA3SUM
  796. config BUSYBOX_CONFIG_FEATURE_MD5_SHA1_SUM_CHECK
  797. bool "Enable -c, -s and -w options"
  798. default BUSYBOX_DEFAULT_FEATURE_MD5_SHA1_SUM_CHECK
  799. depends on BUSYBOX_CONFIG_MD5SUM || BUSYBOX_CONFIG_SHA1SUM || BUSYBOX_CONFIG_SHA256SUM || BUSYBOX_CONFIG_SHA512SUM || BUSYBOX_CONFIG_SHA3SUM
  800. help
  801. Enabling the -c options allows files to be checked
  802. against pre-calculated hash values.
  803. -s and -w are useful options when verifying checksums.
  804. endmenu