Re: [PATCH RFC 1/3] Decompressors: Add XZ decompressor module

2010-11-25 Thread Lasse Collin
On 2010-11-25 Andrew Morton wrote: > On Wed, 24 Nov 2010 22:51:52 +0200 > Lasse Collin wrote: > > This patch: Add the main decompression code (xz_dec), testing > > module (xz_dec_test), wrapper script (xz_wrap.sh) for the xz > > command line tool, and documentation. The xz_dec module is > > enough

Re: [PATCH RFC 1/3] Decompressors: Add XZ decompressor module

2010-11-24 Thread H. Peter Anvin
On 11/24/2010 02:50 PM, H. Peter Anvin wrote: > > Logically it should be an additional CONFIG option like we currently > have for the other compression formats. > And so it is (it's in the latter patches). -hpa -- To unsubscribe from this list: send the line "unsubscribe linux-embedded"

Re: [PATCH RFC 1/3] Decompressors: Add XZ decompressor module

2010-11-24 Thread H. Peter Anvin
On 11/24/2010 02:25 PM, Andrew Morton wrote: >> >> This patch: Add the main decompression code (xz_dec), testing >> module (xz_dec_test), wrapper script (xz_wrap.sh) for the xz >> command line tool, and documentation. The xz_dec module is >> enough to have a usable XZ decompressor e.g. for Squashfs

Re: [PATCH RFC 1/3] Decompressors: Add XZ decompressor module

2010-11-24 Thread Andrew Morton
On Wed, 24 Nov 2010 22:51:52 +0200 Lasse Collin wrote: > From: Lasse Collin > > In userspace, the .lzma format has become mostly a legacy > file format that got superseded by the .xz format. Similarly, > LZMA Utils was superseded by XZ Utils. > > These patches add support for XZ decompression