]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
binman: Correct an error in the FIT-template example
authorSimon Glass <sjg@chromium.org>
Sat, 20 Jul 2024 10:49:32 +0000 (11:49 +0100)
committerSimon Glass <sjg@chromium.org>
Mon, 29 Jul 2024 14:42:18 +0000 (08:42 -0600)
The example contains references to an non-existent node. Fix it.

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/binman/binman.rst

index 872e9746c8cf4f978091294effb5a2d9af1f65ab..0cafc36bdcba4f211e5d9c6c6a7eb892248a2c09 100644 (file)
@@ -1211,7 +1211,7 @@ Templates provide a simple way to handle this::
 
         spi-image {
             filename = "image-spi.bin";
-            insert-template = <&fit>;
+            insert-template = <&common_part>;
 
             /* things specific to SPI follow */
             footer {
@@ -1224,7 +1224,7 @@ Templates provide a simple way to handle this::
 
         mmc-image {
             filename = "image-mmc.bin";
-            insert-template = <&fit>;
+            insert-template = <&common_part>;
 
             /* things specific to MMC follow */
             footer {