[PATCH 3/5] boot: fit: enable FIT image post-processing in SPL
Francesco Valla
francesco at valla.it
Tue Apr 28 22:24:44 CEST 2026
Since CONFIG_SPL_FIT_IMAGE_POST_PROCESS is a valid configuration, allow
it to be used when using the "full" FIT loading logic in SPL.
Signed-off-by: Francesco Valla <francesco at valla.it>
---
boot/image-fit.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/boot/image-fit.c b/boot/image-fit.c
index f3ddee940dbd..347304956a99 100644
--- a/boot/image-fit.c
+++ b/boot/image-fit.c
@@ -2243,7 +2243,7 @@ int fit_image_load(struct bootm_headers *images, ulong addr,
}
/* perform any post-processing on the image data */
- if (!tools_build() && IS_ENABLED(CONFIG_FIT_IMAGE_POST_PROCESS))
+ if (!tools_build() && CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS))
board_fit_image_post_process(fit, noffset, &buf, &size);
len = (ulong)size;
--
2.54.0
More information about the U-Boot
mailing list