diff options
| author | Simon Glass <[email protected]> | 2024-07-20 11:49:32 +0100 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2024-07-29 08:42:18 -0600 |
| commit | 68516827c84524d47be09b95fd635ded040c8a54 (patch) | |
| tree | 8925e84b7d9cf35d999484c9ecfac82e00d5c088 /tools | |
| parent | 12ddbc156494e411c78376793af94ec20c0de86b (diff) | |
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 <[email protected]>
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/binman/binman.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/binman/binman.rst b/tools/binman/binman.rst index 872e9746c8c..0cafc36bdcb 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 { |
