From: Simon Glass Date: Sat, 20 Jul 2024 10:49:32 +0000 (+0100) Subject: binman: Correct an error in the FIT-template example X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=68516827c84524d47be09b95fd635ded040c8a54;p=u-boot.git binman: Correct an error in the FIT-template example The example contains references to an non-existent node. Fix it. Signed-off-by: Simon Glass --- diff --git a/tools/binman/binman.rst b/tools/binman/binman.rst index 872e9746c8..0cafc36bdc 100644 --- a/tools/binman/binman.rst +++ b/tools/binman/binman.rst @@ -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 {