image-fdt: save name of FIT configuration in '/chosen' node
authorDaniel Golle <daniel@makrotopia.org>
Tue, 12 Apr 2022 20:00:43 +0000 (21:00 +0100)
committerTom Rini <trini@konsulko.com>
Tue, 19 Apr 2022 18:51:11 +0000 (14:51 -0400)
It can be useful for the OS (Linux) to know which configuration has
been chosen by U-Boot when launching a FIT image.
Store the name of the FIT configuration node used in a new string
property called 'u-boot,bootconf' in the '/chosen' node in device tree.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
boot/image-fdt.c

index 692a9ad..fdb6992 100644 (file)
@@ -601,6 +601,12 @@ int image_setup_libfdt(bootm_headers_t *images, void *blob,
                goto err;
        }
 
+       /* Store name of configuration node as u-boot,bootconf in /chosen node */
+       if (images->fit_uname_cfg)
+               fdt_find_and_setprop(blob, "/chosen", "u-boot,bootconf",
+                                       images->fit_uname_cfg,
+                                       strlen(images->fit_uname_cfg) + 1, 1);
+
        /* Update ethernet nodes */
        fdt_fixup_ethernet(blob);
 #if CONFIG_IS_ENABLED(CMD_PSTORE)