1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02:00

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>
This commit is contained in:
Mickaël Tansorier
2019-07-17 17:57:16 +02:00
committed by Tom Rini
parent e766b2ea0a
commit 15958c74a9

View File

@@ -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";
};