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 decompressor API supporting multi-call decoding, which requires less buffer overhead. - Greater data robustness due to XZ's CRC32 check. - BCJ filters which can produce smaller Squashfs images. The following two patches add Squashfs kernel support. A git tree with these patches including Lasse Collin's patches is available here: http://git.kernel.org/?p=linux/kernel/git/pkl/squashfs-xz.git;a=summary XZ support has (obviously) also been added to the squashfs tools (Mksquashfs & Unsquashfs). These changes are available from the Squashfs CVS repository (http://sourceforge.net/projects/squashfs/develop). To build the Squashfs tools, edit the Makefile to enable XZ support (by default it is disabled). XZ compression can be specified by using the -comp option, e.g. % mksquashfs xxx img.sqsh -comp xz XZ BCJ filters (which can improve the compression of executable code on certain architectures) are supported by using the -Xbcj option, e.g. % mksquashfs xxx img.sqsh -comp xz -Xbcj x86 will compress blocks using XZ with no filter, and then XZ with the x86 filter in turn, and choose the best compression. Multiple filters can be specified which is useful in cases where the source file system has executable code from a mixture of different architectures, and again each filter will be tried for each block and the best compression used, e.g. % mksquashfs xxx img.sqsh -comp xz -Xbcj x86,arm will try both the x86 and arm BCJ filters. Phillip -- To unsubscribe from this list: send the line "unsubscribe linux-embedded" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html