diff options
author | Mickaël Tansorier <mickael.tansorier@smile.fr> | 2019-07-17 17:57:16 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-07-24 14:15:37 -0400 |
commit | 15958c74a91eae88f470776788a114f82ef3e922 (patch) | |
tree | be203deb07db9bff3cf3a31dc182976c6a841664 | |
parent | e766b2ea0aa887366f510074349b766eb5be98d6 (diff) |
doc: fitImage: Fix conf number incrementation
Increment conf id to avoid to have two same conf name
into one configuration description.
Signed-off-by: Mickaël Tansorier <mickael.tansorier@smile.fr>
-rw-r--r-- | doc/uImage.FIT/signature.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/uImage.FIT/signature.txt b/doc/uImage.FIT/signature.txt index c9b1802686..1695bf4cd8 100644 --- a/doc/uImage.FIT/signature.txt +++ b/doc/uImage.FIT/signature.txt @@ -216,7 +216,7 @@ As an example, consider this FIT: kernel = "kernel-1"; fdt = "fdt-1"; }; - conf-1 { + conf-2 { kernel = "kernel-2"; fdt = "fdt-2"; }; @@ -232,7 +232,7 @@ configuration 3 with kernel 1 and fdt 2: kernel = "kernel-1"; fdt = "fdt-1"; }; - conf-1 { + conf-2 { kernel = "kernel-2"; fdt = "fdt-2"; }; |