]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
spl: Set SPL_FIT_FOUND for full FIT also
authorSimon Glass <sjg@chromium.org>
Wed, 7 Aug 2024 22:47:32 +0000 (16:47 -0600)
committerTom Rini <trini@konsulko.com>
Fri, 9 Aug 2024 22:03:20 +0000 (16:03 -0600)
This flag is set for simple FIT, so set it for full FIT too.

Signed-off-by: Simon Glass <sjg@chromium.org>
common/spl/spl_fit.c

index 2a097f4464c6a9e93168c03f70962840aded8d01..527a5691ac6a3e84e6386e2cfe158c9507d8965f 100644 (file)
@@ -941,6 +941,7 @@ int spl_load_fit_image(struct spl_image_info *spl_image,
                if (ret < 0)
                        return ret;
        }
+       spl_image->flags |= SPL_FIT_FOUND;
 
        return 0;
 }