Config.in 28 KB

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