diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-11-02 14:52:15 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-11-02 14:52:15 +0000 |
commit | 6456a706de91e6ff3309df7eef4e94acb629ea70 (patch) | |
tree | 289a29131c15b2a4bfb63bf68ec9edabfdf9ed2d /tools/squashfs4/patches/130-lzma_props.patch | |
parent | e1ec0a87e19fc1e27d1b989093a6ee2cf644f55c (diff) |
squashfs4: use our lzma props settings again instead of the defaults (smaller images on arm/mips)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18273 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/squashfs4/patches/130-lzma_props.patch')
-rw-r--r-- | tools/squashfs4/patches/130-lzma_props.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/squashfs4/patches/130-lzma_props.patch b/tools/squashfs4/patches/130-lzma_props.patch new file mode 100644 index 0000000000..3ac6b9b033 --- /dev/null +++ b/tools/squashfs4/patches/130-lzma_props.patch @@ -0,0 +1,11 @@ +--- a/squashfs-tools/lzma_wrapper.c ++++ b/squashfs-tools/lzma_wrapper.c +@@ -32,7 +32,7 @@ int lzma_compress(void **strm, char *des + int res; + + res = LzmaCompress(d + LZMA_HEADER_SIZE, &outlen, s, size, d, +- &props_size, 5, block_size, 3, 0, 2, 32, 1); ++ &props_size, 5, block_size, 1, 2, 2, 32, 1); + + if(res == SZ_ERROR_OUTPUT_EOF) { + /* |