diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-21 09:50:55 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-21 09:50:55 +0200 |
commit | 72089cf6b4a77214ec4fd21d5ee5bf56958781cb (patch) | |
tree | a5cd9d8f47e909834d3dbc44f895556e68bcf18f /archival | |
parent | 75d151e31d135ebab083307ded4e9b98970baa75 (diff) | |
download | busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.gz busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.bz2 busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.zip |
config: deindent all help texts
Those two spaces after tab have no effect, and always a nuisance when editing.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival')
-rw-r--r-- | archival/Config.src | 4 | ||||
-rw-r--r-- | archival/ar.c | 20 | ||||
-rw-r--r-- | archival/bbunzip.c | 50 | ||||
-rw-r--r-- | archival/bzip2.c | 20 | ||||
-rw-r--r-- | archival/cpio.c | 20 | ||||
-rw-r--r-- | archival/dpkg.c | 8 | ||||
-rw-r--r-- | archival/dpkg_deb.c | 8 | ||||
-rw-r--r-- | archival/gzip.c | 28 | ||||
-rw-r--r-- | archival/lzop.c | 12 | ||||
-rw-r--r-- | archival/rpm.c | 2 | ||||
-rw-r--r-- | archival/rpm2cpio.c | 2 | ||||
-rw-r--r-- | archival/tar.c | 44 | ||||
-rw-r--r-- | archival/unzip.c | 16 |
13 files changed, 117 insertions, 117 deletions
diff --git a/archival/Config.src b/archival/Config.src index 4bb46f167..449914565 100644 --- a/archival/Config.src +++ b/archival/Config.src | |||
@@ -32,7 +32,7 @@ config FEATURE_LZMA_FAST | |||
32 | default n | 32 | default n |
33 | depends on UNLZMA || LZCAT || LZMA || FEATURE_SEAMLESS_LZMA | 33 | depends on UNLZMA || LZCAT || LZMA || FEATURE_SEAMLESS_LZMA |
34 | help | 34 | help |
35 | This option reduces decompression time by about 25% at the cost of | 35 | This option reduces decompression time by about 25% at the cost of |
36 | a 1K bigger binary. | 36 | a 1K bigger binary. |
37 | 37 | ||
38 | endmenu | 38 | endmenu |
diff --git a/archival/ar.c b/archival/ar.c index 8e4d81eeb..2886d155b 100644 --- a/archival/ar.c +++ b/archival/ar.c | |||
@@ -21,29 +21,29 @@ | |||
21 | //config: bool "ar (9.5 kb)" | 21 | //config: bool "ar (9.5 kb)" |
22 | //config: default n # needs to be improved to be able to replace binutils ar | 22 | //config: default n # needs to be improved to be able to replace binutils ar |
23 | //config: help | 23 | //config: help |
24 | //config: ar is an archival utility program used to create, modify, and | 24 | //config: ar is an archival utility program used to create, modify, and |
25 | //config: extract contents from archives. In practice, it is used exclusively | 25 | //config: extract contents from archives. In practice, it is used exclusively |
26 | //config: for object module archives used by compilers. | 26 | //config: for object module archives used by compilers. |
27 | //config: | 27 | //config: |
28 | //config: Unless you have a specific application which requires ar, you should | 28 | //config: Unless you have a specific application which requires ar, you should |
29 | //config: probably say N here: most compilers come with their own ar utility. | 29 | //config: probably say N here: most compilers come with their own ar utility. |
30 | //config: | 30 | //config: |
31 | //config:config FEATURE_AR_LONG_FILENAMES | 31 | //config:config FEATURE_AR_LONG_FILENAMES |
32 | //config: bool "Support long filenames (not needed for debs)" | 32 | //config: bool "Support long filenames (not needed for debs)" |
33 | //config: default y | 33 | //config: default y |
34 | //config: depends on AR | 34 | //config: depends on AR |
35 | //config: help | 35 | //config: help |
36 | //config: By default the ar format can only store the first 15 characters | 36 | //config: By default the ar format can only store the first 15 characters |
37 | //config: of the filename, this option removes that limitation. | 37 | //config: of the filename, this option removes that limitation. |
38 | //config: It supports the GNU ar long filename method which moves multiple long | 38 | //config: It supports the GNU ar long filename method which moves multiple long |
39 | //config: filenames into a the data section of a new ar entry. | 39 | //config: filenames into a the data section of a new ar entry. |
40 | //config: | 40 | //config: |
41 | //config:config FEATURE_AR_CREATE | 41 | //config:config FEATURE_AR_CREATE |
42 | //config: bool "Support archive creation" | 42 | //config: bool "Support archive creation" |
43 | //config: default y | 43 | //config: default y |
44 | //config: depends on AR | 44 | //config: depends on AR |
45 | //config: help | 45 | //config: help |
46 | //config: This enables archive creation (-c and -r) with busybox ar. | 46 | //config: This enables archive creation (-c and -r) with busybox ar. |
47 | 47 | ||
48 | //applet:IF_AR(APPLET(ar, BB_DIR_USR_BIN, BB_SUID_DROP)) | 48 | //applet:IF_AR(APPLET(ar, BB_DIR_USR_BIN, BB_SUID_DROP)) |
49 | //kbuild:lib-$(CONFIG_AR) += ar.o | 49 | //kbuild:lib-$(CONFIG_AR) += ar.o |
diff --git a/archival/bbunzip.c b/archival/bbunzip.c index bf18a7485..d2b162d5e 100644 --- a/archival/bbunzip.c +++ b/archival/bbunzip.c | |||
@@ -240,8 +240,8 @@ char* FAST_FUNC make_new_name_generic(char *filename, const char *expected_ext) | |||
240 | //config: bool "uncompress (7.1 kb)" | 240 | //config: bool "uncompress (7.1 kb)" |
241 | //config: default n # ancient | 241 | //config: default n # ancient |
242 | //config: help | 242 | //config: help |
243 | //config: uncompress is used to decompress archives created by compress. | 243 | //config: uncompress is used to decompress archives created by compress. |
244 | //config: Not much used anymore, replaced by gzip/gunzip. | 244 | //config: Not much used anymore, replaced by gzip/gunzip. |
245 | 245 | ||
246 | //applet:IF_UNCOMPRESS(APPLET(uncompress, BB_DIR_BIN, BB_SUID_DROP)) | 246 | //applet:IF_UNCOMPRESS(APPLET(uncompress, BB_DIR_BIN, BB_SUID_DROP)) |
247 | //kbuild:lib-$(CONFIG_UNCOMPRESS) += bbunzip.o | 247 | //kbuild:lib-$(CONFIG_UNCOMPRESS) += bbunzip.o |
@@ -316,16 +316,16 @@ int uncompress_main(int argc UNUSED_PARAM, char **argv) | |||
316 | //config: default y | 316 | //config: default y |
317 | //config: select FEATURE_GZIP_DECOMPRESS | 317 | //config: select FEATURE_GZIP_DECOMPRESS |
318 | //config: help | 318 | //config: help |
319 | //config: gunzip is used to decompress archives created by gzip. | 319 | //config: gunzip is used to decompress archives created by gzip. |
320 | //config: You can use the `-t' option to test the integrity of | 320 | //config: You can use the `-t' option to test the integrity of |
321 | //config: an archive, without decompressing it. | 321 | //config: an archive, without decompressing it. |
322 | //config: | 322 | //config: |
323 | //config:config ZCAT | 323 | //config:config ZCAT |
324 | //config: bool "zcat (25 kb)" | 324 | //config: bool "zcat (25 kb)" |
325 | //config: default y | 325 | //config: default y |
326 | //config: select FEATURE_GZIP_DECOMPRESS | 326 | //config: select FEATURE_GZIP_DECOMPRESS |
327 | //config: help | 327 | //config: help |
328 | //config: Alias to "gunzip -c". | 328 | //config: Alias to "gunzip -c". |
329 | //config: | 329 | //config: |
330 | //config:config FEATURE_GUNZIP_LONG_OPTIONS | 330 | //config:config FEATURE_GUNZIP_LONG_OPTIONS |
331 | //config: bool "Enable long options" | 331 | //config: bool "Enable long options" |
@@ -429,21 +429,21 @@ int gunzip_main(int argc UNUSED_PARAM, char **argv) | |||
429 | //config: default y | 429 | //config: default y |
430 | //config: select FEATURE_BZIP2_DECOMPRESS | 430 | //config: select FEATURE_BZIP2_DECOMPRESS |
431 | //config: help | 431 | //config: help |
432 | //config: bunzip2 is a compression utility using the Burrows-Wheeler block | 432 | //config: bunzip2 is a compression utility using the Burrows-Wheeler block |
433 | //config: sorting text compression algorithm, and Huffman coding. Compression | 433 | //config: sorting text compression algorithm, and Huffman coding. Compression |
434 | //config: is generally considerably better than that achieved by more | 434 | //config: is generally considerably better than that achieved by more |
435 | //config: conventional LZ77/LZ78-based compressors, and approaches the | 435 | //config: conventional LZ77/LZ78-based compressors, and approaches the |
436 | //config: performance of the PPM family of statistical compressors. | 436 | //config: performance of the PPM family of statistical compressors. |
437 | //config: | 437 | //config: |
438 | //config: Unless you have a specific application which requires bunzip2, you | 438 | //config: Unless you have a specific application which requires bunzip2, you |
439 | //config: should probably say N here. | 439 | //config: should probably say N here. |
440 | //config: | 440 | //config: |
441 | //config:config BZCAT | 441 | //config:config BZCAT |
442 | //config: bool "bzcat (8.8 kb)" | 442 | //config: bool "bzcat (8.8 kb)" |
443 | //config: default y | 443 | //config: default y |
444 | //config: select FEATURE_BZIP2_DECOMPRESS | 444 | //config: select FEATURE_BZIP2_DECOMPRESS |
445 | //config: help | 445 | //config: help |
446 | //config: Alias to "bunzip2 -c". | 446 | //config: Alias to "bunzip2 -c". |
447 | 447 | ||
448 | //applet:IF_BUNZIP2(APPLET(bunzip2, BB_DIR_USR_BIN, BB_SUID_DROP)) | 448 | //applet:IF_BUNZIP2(APPLET(bunzip2, BB_DIR_USR_BIN, BB_SUID_DROP)) |
449 | // APPLET_ODDNAME:name main location suid_type help | 449 | // APPLET_ODDNAME:name main location suid_type help |
@@ -496,23 +496,23 @@ int bunzip2_main(int argc UNUSED_PARAM, char **argv) | |||
496 | //config: bool "unlzma (8.6 kb)" | 496 | //config: bool "unlzma (8.6 kb)" |
497 | //config: default y | 497 | //config: default y |
498 | //config: help | 498 | //config: help |
499 | //config: unlzma is a compression utility using the Lempel-Ziv-Markov chain | 499 | //config: unlzma is a compression utility using the Lempel-Ziv-Markov chain |
500 | //config: compression algorithm, and range coding. Compression | 500 | //config: compression algorithm, and range coding. Compression |
501 | //config: is generally considerably better than that achieved by the bzip2 | 501 | //config: is generally considerably better than that achieved by the bzip2 |
502 | //config: compressors. | 502 | //config: compressors. |
503 | //config: | 503 | //config: |
504 | //config:config LZCAT | 504 | //config:config LZCAT |
505 | //config: bool "lzcat (8.5 kb)" | 505 | //config: bool "lzcat (8.5 kb)" |
506 | //config: default y | 506 | //config: default y |
507 | //config: help | 507 | //config: help |
508 | //config: Alias to "unlzma -c". | 508 | //config: Alias to "unlzma -c". |
509 | //config: | 509 | //config: |
510 | //config:config LZMA | 510 | //config:config LZMA |
511 | //config: bool "lzma -d" | 511 | //config: bool "lzma -d" |
512 | //config: default y | 512 | //config: default y |
513 | //config: help | 513 | //config: help |
514 | //config: Enable this option if you want commands like "lzma -d" to work. | 514 | //config: Enable this option if you want commands like "lzma -d" to work. |
515 | //config: IOW: you'll get lzma applet, but it will always require -d option. | 515 | //config: IOW: you'll get lzma applet, but it will always require -d option. |
516 | 516 | ||
517 | //applet:IF_UNLZMA(APPLET(unlzma, BB_DIR_USR_BIN, BB_SUID_DROP)) | 517 | //applet:IF_UNLZMA(APPLET(unlzma, BB_DIR_USR_BIN, BB_SUID_DROP)) |
518 | // APPLET_ODDNAME:name main location suid_type help | 518 | // APPLET_ODDNAME:name main location suid_type help |
@@ -567,20 +567,20 @@ int unlzma_main(int argc UNUSED_PARAM, char **argv) | |||
567 | //config: bool "unxz (13 kb)" | 567 | //config: bool "unxz (13 kb)" |
568 | //config: default y | 568 | //config: default y |
569 | //config: help | 569 | //config: help |
570 | //config: unxz is a unlzma successor. | 570 | //config: unxz is a unlzma successor. |
571 | //config: | 571 | //config: |
572 | //config:config XZCAT | 572 | //config:config XZCAT |
573 | //config: bool "xzcat (13 kb)" | 573 | //config: bool "xzcat (13 kb)" |
574 | //config: default y | 574 | //config: default y |
575 | //config: help | 575 | //config: help |
576 | //config: Alias to "unxz -c". | 576 | //config: Alias to "unxz -c". |
577 | //config: | 577 | //config: |
578 | //config:config XZ | 578 | //config:config XZ |
579 | //config: bool "xz -d" | 579 | //config: bool "xz -d" |
580 | //config: default y | 580 | //config: default y |
581 | //config: help | 581 | //config: help |
582 | //config: Enable this option if you want commands like "xz -d" to work. | 582 | //config: Enable this option if you want commands like "xz -d" to work. |
583 | //config: IOW: you'll get xz applet, but it will always require -d option. | 583 | //config: IOW: you'll get xz applet, but it will always require -d option. |
584 | 584 | ||
585 | //applet:IF_UNXZ(APPLET(unxz, BB_DIR_USR_BIN, BB_SUID_DROP)) | 585 | //applet:IF_UNXZ(APPLET(unxz, BB_DIR_USR_BIN, BB_SUID_DROP)) |
586 | // APPLET_ODDNAME:name main location suid_type help | 586 | // APPLET_ODDNAME:name main location suid_type help |
diff --git a/archival/bzip2.c b/archival/bzip2.c index a115cb6ea..0b9c508df 100644 --- a/archival/bzip2.c +++ b/archival/bzip2.c | |||
@@ -11,23 +11,23 @@ | |||
11 | //config: bool "bzip2 (18 kb)" | 11 | //config: bool "bzip2 (18 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: help | 13 | //config: help |
14 | //config: bzip2 is a compression utility using the Burrows-Wheeler block | 14 | //config: bzip2 is a compression utility using the Burrows-Wheeler block |
15 | //config: sorting text compression algorithm, and Huffman coding. Compression | 15 | //config: sorting text compression algorithm, and Huffman coding. Compression |
16 | //config: is generally considerably better than that achieved by more | 16 | //config: is generally considerably better than that achieved by more |
17 | //config: conventional LZ77/LZ78-based compressors, and approaches the | 17 | //config: conventional LZ77/LZ78-based compressors, and approaches the |
18 | //config: performance of the PPM family of statistical compressors. | 18 | //config: performance of the PPM family of statistical compressors. |
19 | //config: | 19 | //config: |
20 | //config: Unless you have a specific application which requires bzip2, you | 20 | //config: Unless you have a specific application which requires bzip2, you |
21 | //config: should probably say N here. | 21 | //config: should probably say N here. |
22 | //config: | 22 | //config: |
23 | //config:config FEATURE_BZIP2_DECOMPRESS | 23 | //config:config FEATURE_BZIP2_DECOMPRESS |
24 | //config: bool "Enable decompression" | 24 | //config: bool "Enable decompression" |
25 | //config: default y | 25 | //config: default y |
26 | //config: depends on BZIP2 || BUNZIP2 || BZCAT | 26 | //config: depends on BZIP2 || BUNZIP2 || BZCAT |
27 | //config: help | 27 | //config: help |
28 | //config: Enable -d (--decompress) and -t (--test) options for bzip2. | 28 | //config: Enable -d (--decompress) and -t (--test) options for bzip2. |
29 | //config: This will be automatically selected if bunzip2 or bzcat is | 29 | //config: This will be automatically selected if bunzip2 or bzcat is |
30 | //config: enabled. | 30 | //config: enabled. |
31 | 31 | ||
32 | //applet:IF_BZIP2(APPLET(bzip2, BB_DIR_USR_BIN, BB_SUID_DROP)) | 32 | //applet:IF_BZIP2(APPLET(bzip2, BB_DIR_USR_BIN, BB_SUID_DROP)) |
33 | //kbuild:lib-$(CONFIG_BZIP2) += bzip2.o | 33 | //kbuild:lib-$(CONFIG_BZIP2) += bzip2.o |
diff --git a/archival/cpio.c b/archival/cpio.c index 4416348b6..38bab8257 100644 --- a/archival/cpio.c +++ b/archival/cpio.c | |||
@@ -18,30 +18,30 @@ | |||
18 | //config: bool "cpio (14 kb)" | 18 | //config: bool "cpio (14 kb)" |
19 | //config: default y | 19 | //config: default y |
20 | //config: help | 20 | //config: help |
21 | //config: cpio is an archival utility program used to create, modify, and | 21 | //config: cpio is an archival utility program used to create, modify, and |
22 | //config: extract contents from archives. | 22 | //config: extract contents from archives. |
23 | //config: cpio has 110 bytes of overheads for every stored file. | 23 | //config: cpio has 110 bytes of overheads for every stored file. |
24 | //config: | 24 | //config: |
25 | //config: This implementation of cpio can extract cpio archives created in the | 25 | //config: This implementation of cpio can extract cpio archives created in the |
26 | //config: "newc" or "crc" format. | 26 | //config: "newc" or "crc" format. |
27 | //config: | 27 | //config: |
28 | //config: Unless you have a specific application which requires cpio, you | 28 | //config: Unless you have a specific application which requires cpio, you |
29 | //config: should probably say N here. | 29 | //config: should probably say N here. |
30 | //config: | 30 | //config: |
31 | //config:config FEATURE_CPIO_O | 31 | //config:config FEATURE_CPIO_O |
32 | //config: bool "Support archive creation" | 32 | //config: bool "Support archive creation" |
33 | //config: default y | 33 | //config: default y |
34 | //config: depends on CPIO | 34 | //config: depends on CPIO |
35 | //config: help | 35 | //config: help |
36 | //config: This implementation of cpio can create cpio archives in the "newc" | 36 | //config: This implementation of cpio can create cpio archives in the "newc" |
37 | //config: format only. | 37 | //config: format only. |
38 | //config: | 38 | //config: |
39 | //config:config FEATURE_CPIO_P | 39 | //config:config FEATURE_CPIO_P |
40 | //config: bool "Support passthrough mode" | 40 | //config: bool "Support passthrough mode" |
41 | //config: default y | 41 | //config: default y |
42 | //config: depends on FEATURE_CPIO_O | 42 | //config: depends on FEATURE_CPIO_O |
43 | //config: help | 43 | //config: help |
44 | //config: Passthrough mode. Rarely used. | 44 | //config: Passthrough mode. Rarely used. |
45 | 45 | ||
46 | //applet:IF_CPIO(APPLET(cpio, BB_DIR_BIN, BB_SUID_DROP)) | 46 | //applet:IF_CPIO(APPLET(cpio, BB_DIR_BIN, BB_SUID_DROP)) |
47 | //kbuild:lib-$(CONFIG_CPIO) += cpio.o | 47 | //kbuild:lib-$(CONFIG_CPIO) += cpio.o |
diff --git a/archival/dpkg.c b/archival/dpkg.c index 41c8fc5d1..90ad8766c 100644 --- a/archival/dpkg.c +++ b/archival/dpkg.c | |||
@@ -31,11 +31,11 @@ | |||
31 | //config: default y | 31 | //config: default y |
32 | //config: select FEATURE_SEAMLESS_GZ | 32 | //config: select FEATURE_SEAMLESS_GZ |
33 | //config: help | 33 | //config: help |
34 | //config: dpkg is a medium-level tool to install, build, remove and manage | 34 | //config: dpkg is a medium-level tool to install, build, remove and manage |
35 | //config: Debian packages. | 35 | //config: Debian packages. |
36 | //config: | 36 | //config: |
37 | //config: This implementation of dpkg has a number of limitations, | 37 | //config: This implementation of dpkg has a number of limitations, |
38 | //config: you should use the official dpkg if possible. | 38 | //config: you should use the official dpkg if possible. |
39 | 39 | ||
40 | //applet:IF_DPKG(APPLET(dpkg, BB_DIR_USR_BIN, BB_SUID_DROP)) | 40 | //applet:IF_DPKG(APPLET(dpkg, BB_DIR_USR_BIN, BB_SUID_DROP)) |
41 | //kbuild:lib-$(CONFIG_DPKG) += dpkg.o | 41 | //kbuild:lib-$(CONFIG_DPKG) += dpkg.o |
diff --git a/archival/dpkg_deb.c b/archival/dpkg_deb.c index ebbc7f035..029bc4af1 100644 --- a/archival/dpkg_deb.c +++ b/archival/dpkg_deb.c | |||
@@ -10,12 +10,12 @@ | |||
10 | //config: default y | 10 | //config: default y |
11 | //config: select FEATURE_SEAMLESS_GZ | 11 | //config: select FEATURE_SEAMLESS_GZ |
12 | //config: help | 12 | //config: help |
13 | //config: dpkg-deb unpacks and provides information about Debian archives. | 13 | //config: dpkg-deb unpacks and provides information about Debian archives. |
14 | //config: | 14 | //config: |
15 | //config: This implementation of dpkg-deb cannot pack archives. | 15 | //config: This implementation of dpkg-deb cannot pack archives. |
16 | //config: | 16 | //config: |
17 | //config: Unless you have a specific application which requires dpkg-deb, | 17 | //config: Unless you have a specific application which requires dpkg-deb, |
18 | //config: say N here. | 18 | //config: say N here. |
19 | 19 | ||
20 | //applet:IF_DPKG_DEB(APPLET_ODDNAME(dpkg-deb, dpkg_deb, BB_DIR_USR_BIN, BB_SUID_DROP, dpkg_deb)) | 20 | //applet:IF_DPKG_DEB(APPLET_ODDNAME(dpkg-deb, dpkg_deb, BB_DIR_USR_BIN, BB_SUID_DROP, dpkg_deb)) |
21 | 21 | ||
diff --git a/archival/gzip.c b/archival/gzip.c index a883a1fff..4cf34ac28 100644 --- a/archival/gzip.c +++ b/archival/gzip.c | |||
@@ -41,8 +41,8 @@ aa: 85.1% -- replaced with aa.gz | |||
41 | //config: bool "gzip (19 kb)" | 41 | //config: bool "gzip (19 kb)" |
42 | //config: default y | 42 | //config: default y |
43 | //config: help | 43 | //config: help |
44 | //config: gzip is used to compress files. | 44 | //config: gzip is used to compress files. |
45 | //config: It's probably the most widely used UNIX compression program. | 45 | //config: It's probably the most widely used UNIX compression program. |
46 | //config: | 46 | //config: |
47 | //config:config FEATURE_GZIP_LONG_OPTIONS | 47 | //config:config FEATURE_GZIP_LONG_OPTIONS |
48 | //config: bool "Enable long options" | 48 | //config: bool "Enable long options" |
@@ -55,30 +55,30 @@ aa: 85.1% -- replaced with aa.gz | |||
55 | //config: range 0 2 | 55 | //config: range 0 2 |
56 | //config: depends on GZIP | 56 | //config: depends on GZIP |
57 | //config: help | 57 | //config: help |
58 | //config: Enable big memory options for gzip. | 58 | //config: Enable big memory options for gzip. |
59 | //config: 0: small buffers, small hash-tables | 59 | //config: 0: small buffers, small hash-tables |
60 | //config: 1: larger buffers, larger hash-tables | 60 | //config: 1: larger buffers, larger hash-tables |
61 | //config: 2: larger buffers, largest hash-tables | 61 | //config: 2: larger buffers, largest hash-tables |
62 | //config: Larger models may give slightly better compression | 62 | //config: Larger models may give slightly better compression |
63 | //config: | 63 | //config: |
64 | //config:config FEATURE_GZIP_LEVELS | 64 | //config:config FEATURE_GZIP_LEVELS |
65 | //config: bool "Enable compression levels" | 65 | //config: bool "Enable compression levels" |
66 | //config: default n | 66 | //config: default n |
67 | //config: depends on GZIP | 67 | //config: depends on GZIP |
68 | //config: help | 68 | //config: help |
69 | //config: Enable support for compression levels 4-9. The default level | 69 | //config: Enable support for compression levels 4-9. The default level |
70 | //config: is 6. If levels 1-3 are specified, 4 is used. | 70 | //config: is 6. If levels 1-3 are specified, 4 is used. |
71 | //config: If this option is not selected, -N options are ignored and -9 | 71 | //config: If this option is not selected, -N options are ignored and -9 |
72 | //config: is used. | 72 | //config: is used. |
73 | //config: | 73 | //config: |
74 | //config:config FEATURE_GZIP_DECOMPRESS | 74 | //config:config FEATURE_GZIP_DECOMPRESS |
75 | //config: bool "Enable decompression" | 75 | //config: bool "Enable decompression" |
76 | //config: default y | 76 | //config: default y |
77 | //config: depends on GZIP || GUNZIP || ZCAT | 77 | //config: depends on GZIP || GUNZIP || ZCAT |
78 | //config: help | 78 | //config: help |
79 | //config: Enable -d (--decompress) and -t (--test) options for gzip. | 79 | //config: Enable -d (--decompress) and -t (--test) options for gzip. |
80 | //config: This will be automatically selected if gunzip or zcat is | 80 | //config: This will be automatically selected if gunzip or zcat is |
81 | //config: enabled. | 81 | //config: enabled. |
82 | 82 | ||
83 | //applet:IF_GZIP(APPLET(gzip, BB_DIR_BIN, BB_SUID_DROP)) | 83 | //applet:IF_GZIP(APPLET(gzip, BB_DIR_BIN, BB_SUID_DROP)) |
84 | //kbuild:lib-$(CONFIG_GZIP) += gzip.o | 84 | //kbuild:lib-$(CONFIG_GZIP) += gzip.o |
diff --git a/archival/lzop.c b/archival/lzop.c index 967d4b74d..df18ff170 100644 --- a/archival/lzop.c +++ b/archival/lzop.c | |||
@@ -29,28 +29,28 @@ | |||
29 | //config: bool "lzop (13 kb)" | 29 | //config: bool "lzop (13 kb)" |
30 | //config: default y | 30 | //config: default y |
31 | //config: help | 31 | //config: help |
32 | //config: Lzop compression/decompresion. | 32 | //config: Lzop compression/decompresion. |
33 | //config: | 33 | //config: |
34 | //config:config UNLZOP | 34 | //config:config UNLZOP |
35 | //config: bool "unlzop (13 kb)" | 35 | //config: bool "unlzop (13 kb)" |
36 | //config: default n # INCOMPAT: upstream lzop does not provide such tool | 36 | //config: default n # INCOMPAT: upstream lzop does not provide such tool |
37 | //config: help | 37 | //config: help |
38 | //config: Lzop decompresion. | 38 | //config: Lzop decompresion. |
39 | //config: | 39 | //config: |
40 | //config:config LZOPCAT | 40 | //config:config LZOPCAT |
41 | //config: bool "lzopcat (13 kb)" | 41 | //config: bool "lzopcat (13 kb)" |
42 | //config: default n # INCOMPAT: upstream lzop does not provide such tool | 42 | //config: default n # INCOMPAT: upstream lzop does not provide such tool |
43 | //config: help | 43 | //config: help |
44 | //config: Alias to "lzop -dc". | 44 | //config: Alias to "lzop -dc". |
45 | //config: | 45 | //config: |
46 | //config:config LZOP_COMPR_HIGH | 46 | //config:config LZOP_COMPR_HIGH |
47 | //config: bool "lzop compression levels 7,8,9 (not very useful)" | 47 | //config: bool "lzop compression levels 7,8,9 (not very useful)" |
48 | //config: default n | 48 | //config: default n |
49 | //config: depends on LZOP || UNLZOP || LZOPCAT | 49 | //config: depends on LZOP || UNLZOP || LZOPCAT |
50 | //config: help | 50 | //config: help |
51 | //config: High levels (7,8,9) of lzop compression. These levels | 51 | //config: High levels (7,8,9) of lzop compression. These levels |
52 | //config: are actually slower than gzip at equivalent compression ratios | 52 | //config: are actually slower than gzip at equivalent compression ratios |
53 | //config: and take up 3.2K of code. | 53 | //config: and take up 3.2K of code. |
54 | 54 | ||
55 | //applet:IF_LZOP(APPLET(lzop, BB_DIR_BIN, BB_SUID_DROP)) | 55 | //applet:IF_LZOP(APPLET(lzop, BB_DIR_BIN, BB_SUID_DROP)) |
56 | // APPLET_ODDNAME:name main location suid_type help | 56 | // APPLET_ODDNAME:name main location suid_type help |
diff --git a/archival/rpm.c b/archival/rpm.c index 2974dfc61..98039d499 100644 --- a/archival/rpm.c +++ b/archival/rpm.c | |||
@@ -11,7 +11,7 @@ | |||
11 | //config: bool "rpm (33 kb)" | 11 | //config: bool "rpm (33 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: help | 13 | //config: help |
14 | //config: Mini RPM applet - queries and extracts RPM packages. | 14 | //config: Mini RPM applet - queries and extracts RPM packages. |
15 | 15 | ||
16 | //applet:IF_RPM(APPLET(rpm, BB_DIR_BIN, BB_SUID_DROP)) | 16 | //applet:IF_RPM(APPLET(rpm, BB_DIR_BIN, BB_SUID_DROP)) |
17 | //kbuild:lib-$(CONFIG_RPM) += rpm.o | 17 | //kbuild:lib-$(CONFIG_RPM) += rpm.o |
diff --git a/archival/rpm2cpio.c b/archival/rpm2cpio.c index 9d503be52..3e4a6a249 100644 --- a/archival/rpm2cpio.c +++ b/archival/rpm2cpio.c | |||
@@ -11,7 +11,7 @@ | |||
11 | //config: bool "rpm2cpio (20 kb)" | 11 | //config: bool "rpm2cpio (20 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: help | 13 | //config: help |
14 | //config: Converts a RPM file into a CPIO archive. | 14 | //config: Converts a RPM file into a CPIO archive. |
15 | 15 | ||
16 | //applet:IF_RPM2CPIO(APPLET(rpm2cpio, BB_DIR_USR_BIN, BB_SUID_DROP)) | 16 | //applet:IF_RPM2CPIO(APPLET(rpm2cpio, BB_DIR_USR_BIN, BB_SUID_DROP)) |
17 | //kbuild:lib-$(CONFIG_RPM2CPIO) += rpm2cpio.o | 17 | //kbuild:lib-$(CONFIG_RPM2CPIO) += rpm2cpio.o |
diff --git a/archival/tar.c b/archival/tar.c index fcabb0126..0fc574dfd 100644 --- a/archival/tar.c +++ b/archival/tar.c | |||
@@ -45,9 +45,9 @@ | |||
45 | //config: bool "tar (40 kb)" | 45 | //config: bool "tar (40 kb)" |
46 | //config: default y | 46 | //config: default y |
47 | //config: help | 47 | //config: help |
48 | //config: tar is an archiving program. It's commonly used with gzip to | 48 | //config: tar is an archiving program. It's commonly used with gzip to |
49 | //config: create compressed archives. It's probably the most widely used | 49 | //config: create compressed archives. It's probably the most widely used |
50 | //config: UNIX archive program. | 50 | //config: UNIX archive program. |
51 | //config: | 51 | //config: |
52 | //config:config FEATURE_TAR_LONG_OPTIONS | 52 | //config:config FEATURE_TAR_LONG_OPTIONS |
53 | //config: bool "Enable long options" | 53 | //config: bool "Enable long options" |
@@ -64,35 +64,35 @@ | |||
64 | //config: default y | 64 | //config: default y |
65 | //config: depends on TAR && (FEATURE_SEAMLESS_Z || FEATURE_SEAMLESS_GZ || FEATURE_SEAMLESS_BZ2 || FEATURE_SEAMLESS_LZMA || FEATURE_SEAMLESS_XZ) | 65 | //config: depends on TAR && (FEATURE_SEAMLESS_Z || FEATURE_SEAMLESS_GZ || FEATURE_SEAMLESS_BZ2 || FEATURE_SEAMLESS_LZMA || FEATURE_SEAMLESS_XZ) |
66 | //config: help | 66 | //config: help |
67 | //config: With this option tar can automatically detect compressed | 67 | //config: With this option tar can automatically detect compressed |
68 | //config: tarballs. Currently it works only on files (not pipes etc). | 68 | //config: tarballs. Currently it works only on files (not pipes etc). |
69 | //config: | 69 | //config: |
70 | //config:config FEATURE_TAR_FROM | 70 | //config:config FEATURE_TAR_FROM |
71 | //config: bool "Enable -X (exclude from) and -T (include from) options)" | 71 | //config: bool "Enable -X (exclude from) and -T (include from) options)" |
72 | //config: default y | 72 | //config: default y |
73 | //config: depends on TAR | 73 | //config: depends on TAR |
74 | //config: help | 74 | //config: help |
75 | //config: If you enable this option you'll be able to specify | 75 | //config: If you enable this option you'll be able to specify |
76 | //config: a list of files to include or exclude from an archive. | 76 | //config: a list of files to include or exclude from an archive. |
77 | //config: | 77 | //config: |
78 | //config:config FEATURE_TAR_OLDGNU_COMPATIBILITY | 78 | //config:config FEATURE_TAR_OLDGNU_COMPATIBILITY |
79 | //config: bool "Support old tar header format" | 79 | //config: bool "Support old tar header format" |
80 | //config: default y | 80 | //config: default y |
81 | //config: depends on TAR || DPKG | 81 | //config: depends on TAR || DPKG |
82 | //config: help | 82 | //config: help |
83 | //config: This option is required to unpack archives created in | 83 | //config: This option is required to unpack archives created in |
84 | //config: the old GNU format; help to kill this old format by | 84 | //config: the old GNU format; help to kill this old format by |
85 | //config: repacking your ancient archives with the new format. | 85 | //config: repacking your ancient archives with the new format. |
86 | //config: | 86 | //config: |
87 | //config:config FEATURE_TAR_OLDSUN_COMPATIBILITY | 87 | //config:config FEATURE_TAR_OLDSUN_COMPATIBILITY |
88 | //config: bool "Enable untarring of tarballs with checksums produced by buggy Sun tar" | 88 | //config: bool "Enable untarring of tarballs with checksums produced by buggy Sun tar" |
89 | //config: default y | 89 | //config: default y |
90 | //config: depends on TAR || DPKG | 90 | //config: depends on TAR || DPKG |
91 | //config: help | 91 | //config: help |
92 | //config: This option is required to unpack archives created by some old | 92 | //config: This option is required to unpack archives created by some old |
93 | //config: version of Sun's tar (it was calculating checksum using signed | 93 | //config: version of Sun's tar (it was calculating checksum using signed |
94 | //config: arithmetic). It is said to be fixed in newer Sun tar, but "old" | 94 | //config: arithmetic). It is said to be fixed in newer Sun tar, but "old" |
95 | //config: tarballs still exist. | 95 | //config: tarballs still exist. |
96 | //config: | 96 | //config: |
97 | //config:config FEATURE_TAR_GNU_EXTENSIONS | 97 | //config:config FEATURE_TAR_GNU_EXTENSIONS |
98 | //config: bool "Support GNU tar extensions (long filenames)" | 98 | //config: bool "Support GNU tar extensions (long filenames)" |
@@ -104,18 +104,18 @@ | |||
104 | //config: default y | 104 | //config: default y |
105 | //config: depends on TAR && FEATURE_TAR_LONG_OPTIONS | 105 | //config: depends on TAR && FEATURE_TAR_LONG_OPTIONS |
106 | //config: help | 106 | //config: help |
107 | //config: If you enable this option you'll be able to instruct tar to send | 107 | //config: If you enable this option you'll be able to instruct tar to send |
108 | //config: the contents of each extracted file to the standard input of an | 108 | //config: the contents of each extracted file to the standard input of an |
109 | //config: external program. | 109 | //config: external program. |
110 | //config: | 110 | //config: |
111 | //config:config FEATURE_TAR_UNAME_GNAME | 111 | //config:config FEATURE_TAR_UNAME_GNAME |
112 | //config: bool "Enable use of user and group names" | 112 | //config: bool "Enable use of user and group names" |
113 | //config: default y | 113 | //config: default y |
114 | //config: depends on TAR | 114 | //config: depends on TAR |
115 | //config: help | 115 | //config: help |
116 | //config: Enable use of user and group names in tar. This affects contents | 116 | //config: Enable use of user and group names in tar. This affects contents |
117 | //config: listings (-t) and preserving permissions when unpacking (-p). | 117 | //config: listings (-t) and preserving permissions when unpacking (-p). |
118 | //config: +200 bytes. | 118 | //config: +200 bytes. |
119 | //config: | 119 | //config: |
120 | //config:config FEATURE_TAR_NOPRESERVE_TIME | 120 | //config:config FEATURE_TAR_NOPRESERVE_TIME |
121 | //config: bool "Enable -m (do not preserve time) GNU option" | 121 | //config: bool "Enable -m (do not preserve time) GNU option" |
@@ -127,8 +127,8 @@ | |||
127 | //config: default n | 127 | //config: default n |
128 | //config: depends on TAR && SELINUX | 128 | //config: depends on TAR && SELINUX |
129 | //config: help | 129 | //config: help |
130 | //config: With this option busybox supports restoring SELinux labels | 130 | //config: With this option busybox supports restoring SELinux labels |
131 | //config: when extracting files from tar archives. | 131 | //config: when extracting files from tar archives. |
132 | 132 | ||
133 | //applet:IF_TAR(APPLET(tar, BB_DIR_BIN, BB_SUID_DROP)) | 133 | //applet:IF_TAR(APPLET(tar, BB_DIR_BIN, BB_SUID_DROP)) |
134 | //kbuild:lib-$(CONFIG_TAR) += tar.o | 134 | //kbuild:lib-$(CONFIG_TAR) += tar.o |
diff --git a/archival/unzip.c b/archival/unzip.c index b618c3617..bb39d954e 100644 --- a/archival/unzip.c +++ b/archival/unzip.c | |||
@@ -20,20 +20,20 @@ | |||
20 | //config: bool "unzip (24 kb)" | 20 | //config: bool "unzip (24 kb)" |
21 | //config: default y | 21 | //config: default y |
22 | //config: help | 22 | //config: help |
23 | //config: unzip will list or extract files from a ZIP archive, | 23 | //config: unzip will list or extract files from a ZIP archive, |
24 | //config: commonly found on DOS/WIN systems. The default behavior | 24 | //config: commonly found on DOS/WIN systems. The default behavior |
25 | //config: (with no options) is to extract the archive into the | 25 | //config: (with no options) is to extract the archive into the |
26 | //config: current directory. | 26 | //config: current directory. |
27 | //config: | 27 | //config: |
28 | //config:config FEATURE_UNZIP_CDF | 28 | //config:config FEATURE_UNZIP_CDF |
29 | //config: bool "Read and use Central Directory data" | 29 | //config: bool "Read and use Central Directory data" |
30 | //config: default y | 30 | //config: default y |
31 | //config: depends on UNZIP | 31 | //config: depends on UNZIP |
32 | //config: help | 32 | //config: help |
33 | //config: If you know that you only need to deal with simple | 33 | //config: If you know that you only need to deal with simple |
34 | //config: ZIP files without deleted/updated files, SFX archives etc, | 34 | //config: ZIP files without deleted/updated files, SFX archives etc, |
35 | //config: you can reduce code size by unselecting this option. | 35 | //config: you can reduce code size by unselecting this option. |
36 | //config: To support less trivial ZIPs, say Y. | 36 | //config: To support less trivial ZIPs, say Y. |
37 | //config: | 37 | //config: |
38 | //config:config FEATURE_UNZIP_BZIP2 | 38 | //config:config FEATURE_UNZIP_BZIP2 |
39 | //config: bool "Support compression method 12 (bzip2)" | 39 | //config: bool "Support compression method 12 (bzip2)" |