[U-Boot] [RFC] FIT: use default configuration, if given configuration is not found
yegorslists at googlemail.com
yegorslists at googlemail.com
Mon May 4 09:53:26 CEST 2015
From: Yegor Yefremov <yegorslists at googlemail.com>
Signed-off-by: Yegor Yefremov <yegorslists at googlemail.com>
---
common/image-fit.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/common/image-fit.c b/common/image-fit.c
index c61be65..b892d06 100644
--- a/common/image-fit.c
+++ b/common/image-fit.c
@@ -1547,6 +1547,10 @@ int fit_image_load(bootm_headers_t *images, ulong addr,
} else {
cfg_noffset = fit_conf_get_node(fit,
fit_uname_config);
+
+ if (cfg_noffset < 0) {
+ cfg_noffset = fit_conf_get_node(fit, NULL);
+ }
}
if (cfg_noffset < 0) {
puts("Could not find configuration node\n");
--
1.7.7
More information about the U-Boot
mailing list