diff options
author | Ron Yorston <rmy@pobox.com> | 2021-03-24 11:55:30 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2021-03-24 12:43:15 +0000 |
commit | 355a7a6c1e9626b7afe8758a6095f3cf275c52e1 (patch) | |
tree | 6dab679c15b049cab97212e0b43077132eec1fbe /archival | |
parent | 71ecc8033e6989996057b32577e71148fd544596 (diff) | |
parent | 889425812b5cda8b3394d73253cbde7355fb1115 (diff) | |
download | busybox-w32-w32_1_26_2.tar.gz busybox-w32-w32_1_26_2.tar.bz2 busybox-w32-w32_1_26_2.zip |
Merge tag '1_26_2' into w32_1_26_2w32_1_26_2
Diffstat (limited to 'archival')
-rw-r--r-- | archival/bbunzip.c | 11 | ||||
-rw-r--r-- | archival/dpkg.c | 2 | ||||
-rw-r--r-- | archival/dpkg_deb.c | 2 | ||||
-rw-r--r-- | archival/libarchive/Kbuild.src | 9 |
4 files changed, 20 insertions, 4 deletions
diff --git a/archival/bbunzip.c b/archival/bbunzip.c index e1eec6d4b..343aec9bd 100644 --- a/archival/bbunzip.c +++ b/archival/bbunzip.c | |||
@@ -9,6 +9,12 @@ | |||
9 | 9 | ||
10 | /* lzop_main() uses bbunpack(), need this: */ | 10 | /* lzop_main() uses bbunpack(), need this: */ |
11 | //kbuild:lib-$(CONFIG_LZOP) += bbunzip.o | 11 | //kbuild:lib-$(CONFIG_LZOP) += bbunzip.o |
12 | //kbuild:lib-$(CONFIG_LZOPCAT) += bbunzip.o | ||
13 | //kbuild:lib-$(CONFIG_UNLZOP) += bbunzip.o | ||
14 | /* bzip2_main() too: */ | ||
15 | //kbuild:lib-$(CONFIG_BZIP2) += bbunzip.o | ||
16 | /* gzip_main() too: */ | ||
17 | //kbuild:lib-$(CONFIG_GZIP) += bbunzip.o | ||
12 | 18 | ||
13 | /* Note: must be kept in sync with archival/lzop.c */ | 19 | /* Note: must be kept in sync with archival/lzop.c */ |
14 | enum { | 20 | enum { |
@@ -192,7 +198,10 @@ int FAST_FUNC bbunpack(char **argv, | |||
192 | return exitcode; | 198 | return exitcode; |
193 | } | 199 | } |
194 | 200 | ||
195 | #if ENABLE_UNCOMPRESS || ENABLE_BUNZIP2 || ENABLE_UNLZMA || ENABLE_UNXZ | 201 | #if ENABLE_UNCOMPRESS \ |
202 | || ENABLE_BUNZIP2 || ENABLE_BZCAT \ | ||
203 | || ENABLE_UNLZMA || ENABLE_LZCAT || ENABLE_LZMA \ | ||
204 | || ENABLE_UNXZ || ENABLE_XZCAT || ENABLE_XZ | ||
196 | static | 205 | static |
197 | char* FAST_FUNC make_new_name_generic(char *filename, const char *expected_ext) | 206 | char* FAST_FUNC make_new_name_generic(char *filename, const char *expected_ext) |
198 | { | 207 | { |
diff --git a/archival/dpkg.c b/archival/dpkg.c index df7a0db64..f133299e3 100644 --- a/archival/dpkg.c +++ b/archival/dpkg.c | |||
@@ -28,7 +28,7 @@ | |||
28 | 28 | ||
29 | //config:config DPKG | 29 | //config:config DPKG |
30 | //config: bool "dpkg" | 30 | //config: bool "dpkg" |
31 | //config: default n | 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 |
diff --git a/archival/dpkg_deb.c b/archival/dpkg_deb.c index 86850469d..ebbc7f035 100644 --- a/archival/dpkg_deb.c +++ b/archival/dpkg_deb.c | |||
@@ -7,7 +7,7 @@ | |||
7 | 7 | ||
8 | //config:config DPKG_DEB | 8 | //config:config DPKG_DEB |
9 | //config: bool "dpkg_deb" | 9 | //config: bool "dpkg_deb" |
10 | //config: default n | 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. |
diff --git a/archival/libarchive/Kbuild.src b/archival/libarchive/Kbuild.src index b159a786a..ad5c5c42d 100644 --- a/archival/libarchive/Kbuild.src +++ b/archival/libarchive/Kbuild.src | |||
@@ -48,16 +48,23 @@ lib-$(CONFIG_CPIO) += get_header_cpio.o | |||
48 | lib-$(CONFIG_TAR) += get_header_tar.o unsafe_prefix.o | 48 | lib-$(CONFIG_TAR) += get_header_tar.o unsafe_prefix.o |
49 | lib-$(CONFIG_FEATURE_TAR_TO_COMMAND) += data_extract_to_command.o | 49 | lib-$(CONFIG_FEATURE_TAR_TO_COMMAND) += data_extract_to_command.o |
50 | lib-$(CONFIG_LZOP) += lzo1x_1.o lzo1x_1o.o lzo1x_d.o | 50 | lib-$(CONFIG_LZOP) += lzo1x_1.o lzo1x_1o.o lzo1x_d.o |
51 | lib-$(CONFIG_UNLZOP) += lzo1x_1.o lzo1x_1o.o lzo1x_d.o | ||
52 | lib-$(CONFIG_LZOPCAT) += lzo1x_1.o lzo1x_1o.o lzo1x_d.o | ||
51 | lib-$(CONFIG_LZOP_COMPR_HIGH) += lzo1x_9x.o | 53 | lib-$(CONFIG_LZOP_COMPR_HIGH) += lzo1x_9x.o |
52 | lib-$(CONFIG_BUNZIP2) += open_transformer.o decompress_bunzip2.o | 54 | lib-$(CONFIG_BUNZIP2) += open_transformer.o decompress_bunzip2.o |
55 | lib-$(CONFIG_BZCAT) += open_transformer.o decompress_bunzip2.o | ||
53 | lib-$(CONFIG_UNLZMA) += open_transformer.o decompress_unlzma.o | 56 | lib-$(CONFIG_UNLZMA) += open_transformer.o decompress_unlzma.o |
57 | lib-$(CONFIG_LZCAT) += open_transformer.o decompress_unlzma.o | ||
58 | lib-$(CONFIG_LZMA) += open_transformer.o decompress_unlzma.o | ||
54 | lib-$(CONFIG_UNXZ) += open_transformer.o decompress_unxz.o | 59 | lib-$(CONFIG_UNXZ) += open_transformer.o decompress_unxz.o |
60 | lib-$(CONFIG_XZCAT) += open_transformer.o decompress_unxz.o | ||
61 | lib-$(CONFIG_XZ) += open_transformer.o decompress_unxz.o | ||
55 | lib-$(CONFIG_GUNZIP) += open_transformer.o decompress_gunzip.o | 62 | lib-$(CONFIG_GUNZIP) += open_transformer.o decompress_gunzip.o |
63 | lib-$(CONFIG_ZCAT) += open_transformer.o decompress_gunzip.o | ||
56 | lib-$(CONFIG_UNCOMPRESS) += open_transformer.o decompress_uncompress.o | 64 | lib-$(CONFIG_UNCOMPRESS) += open_transformer.o decompress_uncompress.o |
57 | lib-$(CONFIG_UNZIP) += open_transformer.o decompress_gunzip.o unsafe_prefix.o | 65 | lib-$(CONFIG_UNZIP) += open_transformer.o decompress_gunzip.o unsafe_prefix.o |
58 | lib-$(CONFIG_RPM2CPIO) += open_transformer.o decompress_gunzip.o get_header_cpio.o | 66 | lib-$(CONFIG_RPM2CPIO) += open_transformer.o decompress_gunzip.o get_header_cpio.o |
59 | lib-$(CONFIG_RPM) += open_transformer.o decompress_gunzip.o get_header_cpio.o | 67 | lib-$(CONFIG_RPM) += open_transformer.o decompress_gunzip.o get_header_cpio.o |
60 | |||
61 | lib-$(CONFIG_GZIP) += open_transformer.o | 68 | lib-$(CONFIG_GZIP) += open_transformer.o |
62 | lib-$(CONFIG_BZIP2) += open_transformer.o | 69 | lib-$(CONFIG_BZIP2) += open_transformer.o |
63 | lib-$(CONFIG_LZOP) += open_transformer.o | 70 | lib-$(CONFIG_LZOP) += open_transformer.o |