projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e766b2e
)
doc: fitImage: Fix conf number incrementation
author
Mickaël Tansorier
<mickael.tansorier@smile.fr>
Wed, 17 Jul 2019 15:57:16 +0000
(17:57 +0200)
committer
Tom Rini
<trini@konsulko.com>
Wed, 24 Jul 2019 18:15:37 +0000
(14:15 -0400)
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
patch
|
blob
|
history
diff --git
a/doc/uImage.FIT/signature.txt
b/doc/uImage.FIT/signature.txt
index c9b1802686f4a6ff83861d9342d4980a357b47b8..1695bf4cd84f4462baec09f0ef9e085c0631d74a 100644
(file)
--- 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";
};