diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2012-03-06 16:26:20 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2012-03-06 16:26:20 +0100 |
commit | 774bce8e8ba1e424c953e8f13aee8f0778c8a911 (patch) | |
tree | fca94c551dd8e4c2a518175e2935bcd55633c933 | |
parent | 59655077c5bf176f01d8d277665ebb92263704ed (diff) | |
download | busybox-w32-774bce8e8ba1e424c953e8f13aee8f0778c8a911.tar.gz busybox-w32-774bce8e8ba1e424c953e8f13aee8f0778c8a911.tar.bz2 busybox-w32-774bce8e8ba1e424c953e8f13aee8f0778c8a911.zip |
archival/libarchive/decompress_unzip.c -> decompress_gunzip.c. no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | archival/libarchive/Kbuild.src | 10 | ||||
-rw-r--r-- | archival/libarchive/decompress_gunzip.c (renamed from archival/libarchive/decompress_unzip.c) | 0 | ||||
-rw-r--r-- | docs/keep_data_small.txt | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/archival/libarchive/Kbuild.src b/archival/libarchive/Kbuild.src index b0bc4e5aa..a0a7cca5f 100644 --- a/archival/libarchive/Kbuild.src +++ b/archival/libarchive/Kbuild.src | |||
@@ -42,16 +42,16 @@ lib-$(CONFIG_UNXZ) += decompress_unxz.o | |||
42 | lib-$(CONFIG_CPIO) += get_header_cpio.o | 42 | lib-$(CONFIG_CPIO) += get_header_cpio.o |
43 | lib-$(CONFIG_DPKG) += $(DPKG_FILES) | 43 | lib-$(CONFIG_DPKG) += $(DPKG_FILES) |
44 | lib-$(CONFIG_DPKG_DEB) += $(DPKG_FILES) | 44 | lib-$(CONFIG_DPKG_DEB) += $(DPKG_FILES) |
45 | lib-$(CONFIG_GUNZIP) += decompress_unzip.o | 45 | lib-$(CONFIG_GUNZIP) += decompress_gunzip.o |
46 | lib-$(CONFIG_RPM2CPIO) += decompress_unzip.o get_header_cpio.o | 46 | lib-$(CONFIG_RPM2CPIO) += decompress_gunzip.o get_header_cpio.o |
47 | lib-$(CONFIG_RPM) += open_transformer.o decompress_unzip.o get_header_cpio.o | 47 | lib-$(CONFIG_RPM) += open_transformer.o decompress_gunzip.o get_header_cpio.o |
48 | lib-$(CONFIG_TAR) += get_header_tar.o | 48 | lib-$(CONFIG_TAR) += get_header_tar.o |
49 | lib-$(CONFIG_UNCOMPRESS) += decompress_uncompress.o | 49 | lib-$(CONFIG_UNCOMPRESS) += decompress_uncompress.o |
50 | lib-$(CONFIG_UNZIP) += decompress_unzip.o | 50 | lib-$(CONFIG_UNZIP) += decompress_gunzip.o |
51 | lib-$(CONFIG_LZOP) += lzo1x_1.o lzo1x_1o.o lzo1x_d.o | 51 | lib-$(CONFIG_LZOP) += lzo1x_1.o lzo1x_1o.o lzo1x_d.o |
52 | lib-$(CONFIG_LZOP_COMPR_HIGH) += lzo1x_9x.o | 52 | lib-$(CONFIG_LZOP_COMPR_HIGH) += lzo1x_9x.o |
53 | lib-$(CONFIG_FEATURE_SEAMLESS_Z) += open_transformer.o decompress_uncompress.o | 53 | lib-$(CONFIG_FEATURE_SEAMLESS_Z) += open_transformer.o decompress_uncompress.o |
54 | lib-$(CONFIG_FEATURE_SEAMLESS_GZ) += open_transformer.o decompress_unzip.o get_header_tar_gz.o | 54 | lib-$(CONFIG_FEATURE_SEAMLESS_GZ) += open_transformer.o decompress_gunzip.o get_header_tar_gz.o |
55 | lib-$(CONFIG_FEATURE_SEAMLESS_BZ2) += open_transformer.o decompress_bunzip2.o get_header_tar_bz2.o | 55 | lib-$(CONFIG_FEATURE_SEAMLESS_BZ2) += open_transformer.o decompress_bunzip2.o get_header_tar_bz2.o |
56 | lib-$(CONFIG_FEATURE_SEAMLESS_LZMA) += open_transformer.o decompress_unlzma.o get_header_tar_lzma.o | 56 | lib-$(CONFIG_FEATURE_SEAMLESS_LZMA) += open_transformer.o decompress_unlzma.o get_header_tar_lzma.o |
57 | lib-$(CONFIG_FEATURE_SEAMLESS_XZ) += open_transformer.o decompress_unxz.o | 57 | lib-$(CONFIG_FEATURE_SEAMLESS_XZ) += open_transformer.o decompress_unxz.o |
diff --git a/archival/libarchive/decompress_unzip.c b/archival/libarchive/decompress_gunzip.c index 50873e3f6..50873e3f6 100644 --- a/archival/libarchive/decompress_unzip.c +++ b/archival/libarchive/decompress_gunzip.c | |||
diff --git a/docs/keep_data_small.txt b/docs/keep_data_small.txt index 21d732674..9e77a9097 100644 --- a/docs/keep_data_small.txt +++ b/docs/keep_data_small.txt | |||
@@ -59,7 +59,7 @@ wait | |||
59 | Example 1 | 59 | Example 1 |
60 | 60 | ||
61 | One example how to reduce global data usage is in | 61 | One example how to reduce global data usage is in |
62 | archival/libarchive/decompress_unzip.c: | 62 | archival/libarchive/decompress_gunzip.c: |
63 | 63 | ||
64 | /* This is somewhat complex-looking arrangement, but it allows | 64 | /* This is somewhat complex-looking arrangement, but it allows |
65 | * to place decompressor state either in bss or in | 65 | * to place decompressor state either in bss or in |