From: Stefan Roese Date: Fri, 31 Mar 2017 06:09:39 +0000 (+0200) Subject: x86: bootm: Fix FIT image booting on x86 X-Git-Tag: v2017.05-rc2~25^2~4 X-Git-Url: https://git.sur5r.net/?p=u-boot;a=commitdiff_plain;h=13c531e52a09b4e6ffa8b5a1457199b0a574cb27 x86: bootm: Fix FIT image booting on x86 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 Cc: Simon Glass Cc: Bin Meng Reviewed-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/arch/x86/lib/bootm.c b/arch/x86/lib/bootm.c index 3c3d9e1e80..75bab90225 100644 --- a/arch/x86/lib/bootm.c +++ b/arch/x86/lib/bootm.c @@ -100,7 +100,7 @@ static int boot_prep_linux(bootm_headers_t *images) } is_zimage = 1; #if defined(CONFIG_FIT) - } else if (images->fit_uname_os && is_zimage) { + } else if (images->fit_uname_os) { ret = fit_image_get_data(images->fit_hdr_os, images->fit_noffset_os, (const void **)&data, &len);