Re: [OE-core] [PATCH 1/2] image.bbclass: Correct chaining compression support

2017-09-19 Thread Tom Rini
On Tue, Sep 19, 2017 at 11:23:33AM +0200, Martin Hundebøll wrote: > Hi Tom, > > On 2017-07-22 00:06, Tom Rini wrote: > >diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass > >index de535ce6fcff..bd6a5b7b810a 100644 > >--- a/meta/classes/image.bbclass > >+++

Re: [OE-core] [PATCH 1/2] image.bbclass: Correct chaining compression support

2017-09-19 Thread Martin Hundebøll
Hi Tom, On 2017-07-22 00:06, Tom Rini wrote: diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index de535ce6fcff..bd6a5b7b810a 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -453,7 +453,7 @@ python () { rm_tmp_images = set()

Re: [OE-core] [PATCH 1/2] image.bbclass: Correct chaining compression support

2017-07-26 Thread Tom Rini
On Wed, Jul 26, 2017 at 10:16:39AM +0300, Ed Bartosh wrote: > On Fri, Jul 21, 2017 at 06:06:33PM -0400, Tom Rini wrote: > > When chaining of compression/conversion types was added, we had a new > > way to handle doing things like "ext4.bz2.sha256sum" or > > "ext2.gz.u-boot". However, because the

Re: [OE-core] [PATCH 1/2] image.bbclass: Correct chaining compression support

2017-07-26 Thread Ed Bartosh
On Fri, Jul 21, 2017 at 06:06:33PM -0400, Tom Rini wrote: > When chaining of compression/conversion types was added, we had a new > way to handle doing things like "ext4.bz2.sha256sum" or > "ext2.gz.u-boot". However, because the U-Boot image class isn't > included normally, it wasn't properly

Re: [OE-core] [PATCH 1/2] image.bbclass: Correct chaining compression support

2017-07-25 Thread Patrick Ohly
On Mon, 2017-07-24 at 07:19 -0400, Tom Rini wrote: > On Mon, Jul 24, 2017 at 10:35:37AM +0200, Patrick Ohly wrote: > > On Fri, 2017-07-21 at 18:06 -0400, Tom Rini wrote: > > > The fix for this inadvertently broke chaining > > > compression/conversion.  First, correct the u-boot conversion > > >

Re: [OE-core] [PATCH 1/2] image.bbclass: Correct chaining compression support

2017-07-24 Thread Tom Rini
On Mon, Jul 24, 2017 at 10:35:37AM +0200, Patrick Ohly wrote: > On Fri, 2017-07-21 at 18:06 -0400, Tom Rini wrote: > > The fix for this inadvertently broke chaining > > compression/conversion.  First, correct the u-boot conversion code. > > > > Fixes: 46bc438374de ("image.bbclass: do exact > >

Re: [OE-core] [PATCH 1/2] image.bbclass: Correct chaining compression support

2017-07-24 Thread Patrick Ohly
On Fri, 2017-07-21 at 18:06 -0400, Tom Rini wrote: > The fix for this inadvertently broke chaining > compression/conversion.  First, correct the u-boot conversion code. > > Fixes: 46bc438374de ("image.bbclass: do exact > match for rootfs type") > Cc: Zhenhua Luo > Cc:

[OE-core] [PATCH 1/2] image.bbclass: Correct chaining compression support

2017-07-21 Thread Tom Rini
When chaining of compression/conversion types was added, we had a new way to handle doing things like "ext4.bz2.sha256sum" or "ext2.gz.u-boot". However, because the U-Boot image class isn't included normally, it wasn't properly converted at the time. After the support was added the "clean"