From: Abel Vesa Date: Tue, 12 Mar 2019 08:34:31 +0000 (+0000) Subject: common: spl_fit: Default to IH_OS_U_BOOT if FIT_IMAGE_TINY enabled X-Git-Tag: v2019.04~22^2~10 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=cf8dcc5d02c3;p=oweals%2Fu-boot.git common: spl_fit: Default to IH_OS_U_BOOT if FIT_IMAGE_TINY enabled If FIT_IMAGE_TINY is enabled, spl_fit_image_get_os returns -ENOTSUPP. In this case, we should default to IH_OS_U_BOOT not to IH_OS_INVALID. Signed-off-by: Abel Vesa Tested-by: Fabio Estevam --- diff --git a/common/spl/spl_fit.c b/common/spl/spl_fit.c index db436268cb..c9bfe0cc8a 100644 --- a/common/spl/spl_fit.c +++ b/common/spl/spl_fit.c @@ -491,6 +491,10 @@ int spl_load_simple_fit(struct spl_image_info *spl_image, if (!spl_fit_image_get_os(fit, node, &os_type)) debug("Loadable is %s\n", genimg_get_os_name(os_type)); +#if CONFIG_IS_ENABLED(FIT_IMAGE_TINY) + else + os_type = IH_OS_U_BOOT; +#endif if (os_type == IH_OS_U_BOOT) { spl_fit_append_fdt(&image_info, info, sector,