Config.in 28 KB

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