diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-05-15 18:31:35 -0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-18 23:46:32 +0200 |
commit | dc7e1762d09fb1f55b17c744b4e654405bb9e719 (patch) | |
tree | 8a3449510af4afff675b79bca2724790d9a14d7e /package/squashfs/squashfs-4.2-no-gzip-fix.patch | |
parent | b334c32ec6a70a0ca3c4643c44603adf7bf40025 (diff) | |
download | buildroot-dc7e1762d09fb1f55b17c744b4e654405bb9e719.tar.gz buildroot-dc7e1762d09fb1f55b17c744b4e654405bb9e719.zip |
squashfs: bump to version 4.3
Also add optional lz4 support.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/squashfs/squashfs-4.2-no-gzip-fix.patch')
-rw-r--r-- | package/squashfs/squashfs-4.2-no-gzip-fix.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/package/squashfs/squashfs-4.2-no-gzip-fix.patch b/package/squashfs/squashfs-4.2-no-gzip-fix.patch deleted file mode 100644 index 4cb5f50cb5..0000000000 --- a/package/squashfs/squashfs-4.2-no-gzip-fix.patch +++ /dev/null @@ -1,26 +0,0 @@ -[PATCH] squashfs-tools: unbreak builds without gzip support - -The initialization of gzip_comp_ops if gzip support is disabled is -missing 2 null pointers, causing the id element to be initialized to 0 -rather than ZLIB_COMPRESSION, which breaks all the compressor functions -as they loop until finding the correct element or id = 0. - -Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> ---- - squashfs-tools/compressor.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -Index: squashfs4.2/squashfs-tools/compressor.c -=================================================================== ---- squashfs4.2.orig/squashfs-tools/compressor.c -+++ squashfs4.2/squashfs-tools/compressor.c -@@ -27,7 +27,8 @@ - - #ifndef GZIP_SUPPORT - static struct compressor gzip_comp_ops = { -- NULL, NULL, NULL, NULL, NULL, NULL, ZLIB_COMPRESSION, "gzip", 0 -+ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, ZLIB_COMPRESSION, -+ "gzip", 0 - }; - #else - extern struct compressor gzip_comp_ops; |