diff options
author | Abel Vesa <abel.vesa@nxp.com> | 2019-03-12 08:34:31 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-03-22 12:15:05 -0400 |
commit | cf8dcc5d02c32173b74bf1b7600dd2b990a90b13 (patch) | |
tree | 863ca109e40c3d7861182e8f8ed571f0a474abb7 /common | |
parent | ef331e3685fed584708055ad81804c6e4a1f64e2 (diff) | |
download | u-boot-cf8dcc5d02c32173b74bf1b7600dd2b990a90b13.tar.gz u-boot-cf8dcc5d02c32173b74bf1b7600dd2b990a90b13.tar.bz2 u-boot-cf8dcc5d02c32173b74bf1b7600dd2b990a90b13.zip |
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 <abel.vesa@nxp.com>
Tested-by: Fabio Estevam <festevam@gmail.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/spl/spl_fit.c | 4 |
1 files changed, 4 insertions, 0 deletions
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, |