* [PATCH 0/2] Squashfs: add XZ compression support
@ 2010-12-09 6:05 Phillip Lougher
0 siblings, 0 replies; only message in thread
From: Phillip Lougher @ 2010-12-09 6:05 UTC (permalink / raw)
To: Linux Kernel Development, linux-fsdevel, Linux Embedded Maillist
Cc: Lasse Collin
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
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2010-12-09 6:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-09 6:05 [PATCH 0/2] Squashfs: add XZ compression support Phillip Lougher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox