diff mbox series

[U-Boot] doc: fitImage: Fix conf number incrementation

Message ID 20190717155716.10058-1-mickael.tansorier@smile.fr
State Accepted
Commit 15958c74a91eae88f470776788a114f82ef3e922
Delegated to: Tom Rini
Headers show
Series [U-Boot] doc: fitImage: Fix conf number incrementation | expand

Commit Message

Mickaël Tansorier July 17, 2019, 3:57 p.m. UTC
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>
---
 doc/uImage.FIT/signature.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Tom Rini July 24, 2019, 8:07 p.m. UTC | #1
On Wed, Jul 17, 2019 at 05:57:16PM +0200, Mickaël Tansorier wrote:

> 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>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/doc/uImage.FIT/signature.txt b/doc/uImage.FIT/signature.txt
index 78b59e7203..27bcbef5d6 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";
 		};