Re: [U-Boot] [PATCH] Repair image-fit: switch ENOLINK to ENOENT

2016-09-19 Thread Marek Vasut
On 09/19/2016 10:29 AM, Paul Burton wrote: > Hi Marek, Hi, > On 18/09/16 14:27, Marek Vasut wrote: >> This patch broke booting of any fitImage-wrapped kernel images due >> to replacement of ENOLINK with ENOENT without checking where the >> ENOLINK return value is being tested for. Adjust the test

Re: [U-Boot] [PATCH] Repair image-fit: switch ENOLINK to ENOENT

2016-09-19 Thread Paul Burton
Hi Marek, On 18/09/16 14:27, Marek Vasut wrote: > This patch broke booting of any fitImage-wrapped kernel images due > to replacement of ENOLINK with ENOENT without checking where the > ENOLINK return value is being tested for. Adjust the tests as well > to repair the breakage. It's not obvious f

Re: [U-Boot] [PATCH] Repair image-fit: switch ENOLINK to ENOENT

2016-09-18 Thread Tom Rini
On Sun, Sep 18, 2016 at 03:27:31PM +0200, Marek Vasut wrote: > This patch broke booting of any fitImage-wrapped kernel images due > to replacement of ENOLINK with ENOENT without checking where the > ENOLINK return value is being tested for. Adjust the tests as well > to repair the breakage. > > S