]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
mkimage: Allow 'auto-conf' signing of scripts
authorAlexander Dahl <ada@thorsis.com>
Thu, 20 Jun 2024 14:20:59 +0000 (16:20 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 5 Jul 2024 19:57:01 +0000 (13:57 -0600)
U-Boot configured for verified boot with the "required" option set to
"conf" also checks scripts put in FIT images for a valid signature, and
refuses to source and run such a script if the signature for the
configuration is bad or missing.  Such a script could not be packaged
before, because mkimage failed like this:

    % tools/mkimage -T script -C none -d tmp/my.scr -f auto-conf -k tmp -g dev -o sha256,rsa4096 my.uimg
    Failed to find any images for configuration 'conf-1/signature'
    tools/mkimage Can't add hashes to FIT blob: -1
    Error: Bad parameters for FIT image type

This is especially unfortunate if LEGACY_IMAGE_FORMAT is disabled as
recommended.

Listing the script configuration in a "sign-images" subnode instead,
would have added even more complexity to the already complex auto fit
generation code.

Signed-off-by: Alexander Dahl <ada@thorsis.com>
tools/image-host.c

index 7bfc0cb6b1823b30bae3ce918fb247956633565f..49ce7436bb975a6fdbf65886a5a6cea3c825086a 100644 (file)
@@ -730,7 +730,7 @@ static const char *fit_config_get_image_list(const void *fit, int noffset,
                                             int *lenp, int *allow_missingp)
 {
        static const char default_list[] = FIT_KERNEL_PROP "\0"
-                       FIT_FDT_PROP;
+                       FIT_FDT_PROP "\0" FIT_SCRIPT_PROP;
        const char *prop;
 
        /* If there is an "sign-image" property, use that */