]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
mkimage: do not write incorrect error message
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Tue, 24 Oct 2023 07:19:16 +0000 (09:19 +0200)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Mon, 20 Nov 2023 18:06:22 +0000 (19:06 +0100)
When running 'mkimage -l' is called for a valid StarFive file an error
message "Error: invalid marker bytes" is written by the Renesas SPKG
driver.

mkimage -l may be invoked without specifying an image type. In this case
mkimage iterates over all image type drivers to find the one that matches.
None of the non-matching drivers should write an error message.

Fix the Renesas SPKG driver.

Fixes: afdfcb11f97c ("tools: spkgimage: add Renesas SPKG format")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
tools/renesas_spkgimage.c

index 5cd81dd5bfa8525c0ffe35425c75c85cf52d23cf..ce3b2b28ae79694deb5ecead63a7ebf5025c3a15 100644 (file)
@@ -147,7 +147,8 @@ static int spkgimage_verify_header(unsigned char *ptr, int size,
 
        /* Check the marker bytes */
        if (memcmp(header->marker, marker, 4)) {
-               fprintf(stderr, "Error: invalid marker bytes\n");
+               if (param->type == IH_TYPE_RENESAS_SPKG)
+                       fprintf(stderr, "Error: invalid marker bytes\n");
                return -EINVAL;
        }