All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 1/2] common: spl_fit: Default to IH_OS_U_BOOT if FIT_IMAGE_TINY enabled
@ 2019-03-12  8:34 Abel Vesa
  2019-03-12  8:34 ` [U-Boot] [PATCH v2 2/2] tools: fit_image: Add the loadable property to configs Abel Vesa
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Abel Vesa @ 2019-03-12  8:34 UTC (permalink / raw)
  To: u-boot

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>
---

Changes since v1:
 * added the #if FIT_IMAGE_TINY as suggested by Mark Vasut

 common/spl/spl_fit.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/common/spl/spl_fit.c b/common/spl/spl_fit.c
index db43626..c9bfe0c 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,
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-04-12 13:03 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-12  8:34 [U-Boot] [PATCH v2 1/2] common: spl_fit: Default to IH_OS_U_BOOT if FIT_IMAGE_TINY enabled Abel Vesa
2019-03-12  8:34 ` [U-Boot] [PATCH v2 2/2] tools: fit_image: Add the loadable property to configs Abel Vesa
2019-03-20 13:16   ` Fabio Estevam
2019-03-20 13:38     ` Stefano Babic
2019-03-22 23:17   ` [U-Boot] [U-Boot, v2, " Tom Rini
2019-04-12 13:03   ` [U-Boot] [PATCH v2 " Alex Kiernan
2019-03-20 13:14 ` [U-Boot] [PATCH v2 1/2] common: spl_fit: Default to IH_OS_U_BOOT if FIT_IMAGE_TINY enabled Fabio Estevam
2019-03-22 23:17 ` [U-Boot] [U-Boot, v2, " Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.