summaryrefslogtreecommitdiffstats
path: root/package/squashfs/squashfs-4.2-no-gzip-fix.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <peter@korsgaard.com>2014-06-01 09:58:54 +0200
committerPeter Korsgaard <peter@korsgaard.com>2014-06-01 09:58:54 +0200
commit27a5414804f7b8ab41101aad219ebef02d364bde (patch)
treec9535dfed260314855b3ba1fe2c75652fdf60a1a /package/squashfs/squashfs-4.2-no-gzip-fix.patch
parentf6162290fb6800fecffb86eed42069aa0f813f87 (diff)
parentfc90fa9417d8b99b5d1c77aaa9e4c9ac4c8c7c58 (diff)
downloadbuildroot-27a5414804f7b8ab41101aad219ebef02d364bde.tar.gz
buildroot-27a5414804f7b8ab41101aad219ebef02d364bde.zip
Merge branch 'next'
Conflicts: package/gdb/Config.in.host 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.patch26
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;
OpenPOWER on IntegriCloud