[PATCH 0/2] Squashfs: add XZ compression support

2010-12-08 Thread Phillip Lougher
Hi, Following the recent posting of patches by Lasse Collin to add XZ (LZMA2) support to the kernel (http://thread.gmane.org/gmane.linux.kernel/1071297), I have added support for this to Squashfs. Advantages of Squashfs XZ over the Squashfs LZMA implementation: - Significantly better

[PATCH 1/2] Squashfs: add XZ compression support

2010-12-08 Thread Phillip Lougher
Add XZ decompressor wrapper code. Signed-off-by: Phillip Lougher phil...@lougher.demon.co.uk --- fs/squashfs/squashfs_fs.h |1 + fs/squashfs/xz_wrapper.c | 153 + 2 files changed, 154 insertions(+), 0 deletions(-) create mode 100644

[PATCH 2/2] Squashfs: Add XZ compression configuration option

2010-12-08 Thread Phillip Lougher
Signed-off-by: Phillip Lougher phil...@lougher.demon.co.uk --- fs/squashfs/Kconfig| 16 fs/squashfs/Makefile |1 + fs/squashfs/decompressor.c | 11 +++ fs/squashfs/squashfs.h |3 +++ 4 files changed, 31 insertions(+), 0 deletions(-) diff

Re: [PATCH 2/2] Squashfs: Add XZ compression configuration option

2010-12-08 Thread Geert Uytterhoeven
On Thu, Dec 9, 2010 at 07:11, Phillip Lougher phil...@lougher.demon.co.uk wrote: --- a/fs/squashfs/Kconfig +++ b/fs/squashfs/Kconfig @@ -53,6 +53,22 @@ config SQUASHFS_LZO          If unsure, say N. +config SQUASHFS_XZ +       bool Include support for XZ compressed file systems +