From: Mickaël Tansorier Date: Wed, 17 Jul 2019 15:57:16 +0000 (+0200) Subject: doc: fitImage: Fix conf number incrementation X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=15958c74a91eae88f470776788a114f82ef3e922;p=u-boot.git 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 --- 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"; };