diff options
Diffstat (limited to 'archival/bbunzip.c')
-rw-r--r-- | archival/bbunzip.c | 50 |
1 files changed, 25 insertions, 25 deletions
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 |