diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-13 03:36:03 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-13 03:36:03 +0000 |
commit | 77f1ec1b9bf100e6c10aa0856c7156e321511785 (patch) | |
tree | f20e5a9062ecad82a43bde81e3041a19c4292733 /archival/Config.in | |
parent | 11c23d7b990eae27357e5a41a97d62b9a214f7db (diff) | |
download | busybox-w32-77f1ec1b9bf100e6c10aa0856c7156e321511785.tar.gz busybox-w32-77f1ec1b9bf100e6c10aa0856c7156e321511785.tar.bz2 busybox-w32-77f1ec1b9bf100e6c10aa0856c7156e321511785.zip |
bzip2: port bzip2 1.0.4 to busybox. note: bzip2 code resides
in separate directory (archival/bz/*)
and is covered by BSD-style license.
code size: 13k
Diffstat (limited to 'archival/Config.in')
-rw-r--r-- | archival/Config.in | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/archival/Config.in b/archival/Config.in index 49070da06..8d31ec771 100644 --- a/archival/Config.in +++ b/archival/Config.in | |||
@@ -48,12 +48,22 @@ config BUNZIP2 | |||
48 | conventional LZ77/LZ78-based compressors, and approaches the | 48 | conventional LZ77/LZ78-based compressors, and approaches the |
49 | performance of the PPM family of statistical compressors. | 49 | performance of the PPM family of statistical compressors. |
50 | 50 | ||
51 | The BusyBox bunzip2 applet is limited to de-compression only. | ||
52 | On an x86 system, this applet adds about 11K. | ||
53 | |||
54 | Unless you have a specific application which requires bunzip2, you | 51 | Unless you have a specific application which requires bunzip2, you |
55 | should probably say N here. | 52 | should probably say N here. |
56 | 53 | ||
54 | config BZIP2 | ||
55 | bool "bzip2" | ||
56 | default n | ||
57 | help | ||
58 | bzip2 is a compression utility using the Burrows-Wheeler block | ||
59 | sorting text compression algorithm, and Huffman coding. Compression | ||
60 | is generally considerably better than that achieved by more | ||
61 | conventional LZ77/LZ78-based compressors, and approaches the | ||
62 | performance of the PPM family of statistical compressors. | ||
63 | |||
64 | Unless you have a specific application which requires bzip2, you | ||
65 | should probably say N here. | ||
66 | |||
57 | config CPIO | 67 | config CPIO |
58 | bool "cpio" | 68 | bool "cpio" |
59 | default n | 69 | default n |