Re: [U-Boot] [PATCH] x86: bootm: Fix FIT image booting on x86

2017-04-04 Thread Bin Meng
On Wed, Apr 5, 2017 at 10:38 AM, Bin Meng wrote: > On Fri, Mar 31, 2017 at 2:09 PM, Stefan Roese wrote: >> Checking 'is_zimage' at this time will always fail and therefore booting >> a FIT style image will always lead to this error message: >> >> "## Kernel

Re: [U-Boot] [PATCH] x86: bootm: Fix FIT image booting on x86

2017-04-04 Thread Bin Meng
On Fri, Mar 31, 2017 at 2:09 PM, Stefan Roese wrote: > Checking 'is_zimage' at this time will always fail and therefore booting > a FIT style image will always lead to this error message: > > "## Kernel loading failed (missing x86 kernel setup) ..." > > This change now removes this

Re: [U-Boot] [PATCH] x86: bootm: Fix FIT image booting on x86

2017-03-31 Thread Simon Glass
On 31 March 2017 at 00:09, Stefan Roese wrote: > Checking 'is_zimage' at this time will always fail and therefore booting > a FIT style image will always lead to this error message: > > "## Kernel loading failed (missing x86 kernel setup) ..." > > This change now removes this check

[U-Boot] [PATCH] x86: bootm: Fix FIT image booting on x86

2017-03-31 Thread Stefan Roese
Checking 'is_zimage' at this time will always fail and therefore booting a FIT style image will always lead to this error message: "## Kernel loading failed (missing x86 kernel setup) ..." This change now removes this check and booting of FIT images works just fine. Signed-off-by: Stefan Roese