Re: [U-Boot] [PATCH v3 1/2] fit: Support compression for non-kernel components (e.g. FDT)

2019-05-15 Thread Julius Werner
Like Simon (Goldschmidt) said, the current documentation for the "compression" property in image nodes already matches this, so I don't think I need to add anything there. I'll update the other patch to add documentation for compatible strings in config nodes, and then upload an .its example for

Re: [U-Boot] [PATCH v3 1/2] fit: Support compression for non-kernel components (e.g. FDT)

2019-05-14 Thread Simon Glass
Hi Simon, On Tue, 14 May 2019 at 05:16, Simon Goldschmidt wrote: > > On Tue, May 14, 2019 at 12:55 PM Simon Glass wrote: > > > > Hi Julius, > > > > On Mon, 13 May 2019 at 19:13, Julius Werner wrote: > > > > > > > Is there a change log for this patch?I think we discussed having a test. > > > >

Re: [U-Boot] [PATCH v3 1/2] fit: Support compression for non-kernel components (e.g. FDT)

2019-05-14 Thread Simon Goldschmidt
On Tue, May 14, 2019 at 12:55 PM Simon Glass wrote: > > Hi Julius, > > On Mon, 13 May 2019 at 19:13, Julius Werner wrote: > > > > > Is there a change log for this patch?I think we discussed having a test. > > > > Sorry, forgot that. Is it okay if I just put it here or do you need me > > to

Re: [U-Boot] [PATCH v3 1/2] fit: Support compression for non-kernel components (e.g. FDT)

2019-05-14 Thread Simon Glass
Hi Julius, On Mon, 13 May 2019 at 19:13, Julius Werner wrote: > > > Is there a change log for this patch?I think we discussed having a test. > > Sorry, forgot that. Is it okay if I just put it here or do you need me > to resend a v4? I think it should be a v4 so it looks right in patchwork.

Re: [U-Boot] [PATCH v3 1/2] fit: Support compression for non-kernel components (e.g. FDT)

2019-05-13 Thread Julius Werner
> Is there a change log for this patch?I think we discussed having a test. Sorry, forgot that. Is it okay if I just put it here or do you need me to resend a v4? --- Changes for v2: - made decompression work for all non-kernel images, not just FDTs Changes for v3: - fixed up debug output

Re: [U-Boot] [PATCH v3 1/2] fit: Support compression for non-kernel components (e.g. FDT)

2019-05-13 Thread Simon Glass
Hi Julius, > This patch adds support for compressing non-kernel image nodes in a FIT > image (kernel nodes could already be compressed previously). This can > reduce the size of FIT images and therefore improve boot times > (especially when an image bundles many different kernel FDTs). The >

[U-Boot] [PATCH v3 1/2] fit: Support compression for non-kernel components (e.g. FDT)

2019-05-03 Thread Julius Werner
This patch adds support for compressing non-kernel image nodes in a FIT image (kernel nodes could already be compressed previously). This can reduce the size of FIT images and therefore improve boot times (especially when an image bundles many different kernel FDTs). The images will automatically