Re: [U-Boot] [PATCH 1/2] Add support for XZ decompression algorithm.

2010-12-17 Thread Wolfgang Denk
Dear Luigi 'Comio' Mantellini, In message <1291562184-27126-1-git-send-email-luigi.mantell...@idf-hit.com> you wrote: > XZ (aka LZMA2) is the new version of lzma compression format. > The following patch add a cut-down version of XZ Embedded library (v20100702) > that supports only single-call AP

Re: [U-Boot] [PATCH 1/2] Add support for XZ decompression algorithm.

2010-12-06 Thread Wolfgang Denk
Dear Luigi Mantellini, In message you wrote: > > The LZMA and XZ overlap on the internal LZMA code (each one has the > own implementation). We can decide 1) to ignore this patch (and future > rework) to not support XZ 2) have both XZ and LZMA considering them as > different algorithms 3) Deprec

Re: [U-Boot] [PATCH 1/2] Add support for XZ decompression algorithm.

2010-12-06 Thread Luigi Mantellini
Hi All, On Mon, Dec 6, 2010 at 7:06 PM, Mike Frysinger wrote: > On Monday, December 06, 2010 12:58:37 Peter Tyser wrote: >> On Sun, 2010-12-05 at 16:16 +0100, Luigi 'Comio' Mantellini wrote: >> > XZ (aka LZMA2) is the new version of lzma compression format. >> > The following patch add a cut-down

Re: [U-Boot] [PATCH 1/2] Add support for XZ decompression algorithm.

2010-12-06 Thread Mike Frysinger
On Monday, December 06, 2010 12:58:37 Peter Tyser wrote: > On Sun, 2010-12-05 at 16:16 +0100, Luigi 'Comio' Mantellini wrote: > > XZ (aka LZMA2) is the new version of lzma compression format. > > The following patch add a cut-down version of XZ Embedded library > > (v20100702) that supports only si

Re: [U-Boot] [PATCH 1/2] Add support for XZ decompression algorithm.

2010-12-06 Thread Peter Tyser
Hi Luigi, On Sun, 2010-12-05 at 16:16 +0100, Luigi 'Comio' Mantellini wrote: > XZ (aka LZMA2) is the new version of lzma compression format. > The following patch add a cut-down version of XZ Embedded library (v20100702) > that supports only single-call API. > > In order to enable XZ support, the

Re: [U-Boot] [PATCH 1/2] Add support for XZ decompression algorithm.

2010-12-06 Thread Joakim Tjernlund
> > XZ (aka LZMA2) is the new version of lzma compression format. > The following patch add a cut-down version of XZ Embedded library (v20100702) > that supports only single-call API. > > In order to enable XZ support, the CONFIG_XZ must be defined by board > configuration file. > > For any details