projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fefb534
)
spl: Set SPL_FIT_FOUND for full FIT also
author
Simon Glass
<sjg@chromium.org>
Wed, 7 Aug 2024 22:47:32 +0000
(16:47 -0600)
committer
Tom 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
patch
|
blob
|
history
diff --git
a/common/spl/spl_fit.c
b/common/spl/spl_fit.c
index 2a097f4464c6a9e93168c03f70962840aded8d01..527a5691ac6a3e84e6386e2cfe158c9507d8965f 100644
(file)
--- a/
common/spl/spl_fit.c
+++ b/
common/spl/spl_fit.c
@@
-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;
}