mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-22 12:54:37 +00:00
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>
This commit is contained in:
parent
ef331e3685
commit
cf8dcc5d02
1 changed files with 4 additions and 0 deletions
|
@ -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))
|
if (!spl_fit_image_get_os(fit, node, &os_type))
|
||||||
debug("Loadable is %s\n", genimg_get_os_name(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) {
|
if (os_type == IH_OS_U_BOOT) {
|
||||||
spl_fit_append_fdt(&image_info, info, sector,
|
spl_fit_append_fdt(&image_info, info, sector,
|
||||||
|
|
Loading…
Add table
Reference in a new issue