]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
uboot-sign: Add support for setting firmware property in FIT configuration
authorJamin Lin <jamin_lin@aspeedtech.com>
Wed, 21 May 2025 01:21:21 +0000 (09:21 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 22 May 2025 10:13:15 +0000 (11:13 +0100)
Add the ability to set the "firmware" property in the FIT configuration node
by introducing the UBOOT_FIT_CONF_FIRMWARE variable.

This property defines the primary image to be executed during boot. If it is
set, its value will be written into the FIT configuration under the "firmware"
field. If not set, the bootloader will fall back to using the first entry in
the "loadables" list.

Using this property improves control over the boot sequence, especially in
multi-binary boot scenarios.

Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes-recipe/uboot-sign.bbclass

index dcf94b71790b41423989482eb946bc9a2e0b8d4a..796c040e8b43be726257f6c27bbb26d306a1d211 100644 (file)
@@ -101,6 +101,10 @@ UBOOT_FIT_TEE_IMAGE ?= "tee-raw.bin"
 # User specific settings
 UBOOT_FIT_USER_SETTINGS ?= ""
 
+# Sets the firmware property to select the image to boot first.
+# If not set, the first entry in "loadables" is used instead.
+UBOOT_FIT_CONF_FIRMWARE ?= ""
+
 # Unit name containing a list of users additional binaries to be loaded.
 # It is a comma-separated list of strings.
 UBOOT_FIT_CONF_USER_LOADABLES ?= ''
@@ -361,6 +365,7 @@ EOF
 # we want to sign it so that the SPL can verify it
 uboot_fitimage_assemble() {
        conf_loadables="\"uboot\""
+       conf_firmware=""
        rm -f ${UBOOT_ITS} ${UBOOT_FITIMAGE_BINARY}
 
        # First we create the ITS script
@@ -432,6 +437,10 @@ EOF
                conf_loadables="${conf_loadables}${UBOOT_FIT_CONF_USER_LOADABLES}"
        fi
 
+       if [ -n "${UBOOT_FIT_CONF_FIRMWARE}" ] ; then
+               conf_firmware="firmware = \"${UBOOT_FIT_CONF_FIRMWARE}\";"
+       fi
+
        cat << EOF >> ${UBOOT_ITS}
     };
 
@@ -439,6 +448,7 @@ EOF
         default = "conf";
         conf {
             description = "Boot with signed U-Boot FIT";
+            ${conf_firmware}
             loadables = ${conf_loadables};
             fdt = "fdt";
         };