Skip to content
Snippets Groups Projects
Commit d5a64237 authored by Felix Radensky's avatar Felix Radensky Committed by Wolfgang Denk
Browse files

doc: Fix ramdisk examples in doc/uImage.FIT/multi.its


The ramdisk sections in doc/uImage.FIT/multi.its lack
load address and entry point properties. Using examples
from this file will result in unbootable image, u-boot
will issue the following error messages:

Can't get ramdisk subimage load address!
Ramdisk image is corrupt or invalid

This patch adds missing properties to ramdisk sections.

Signed-off-by: default avatarFelix Radensky <felix@embedded-sol.com>
parent 2d2018f3
No related branches found
No related tags found
No related merge requests found
...@@ -61,6 +61,8 @@ ...@@ -61,6 +61,8 @@
arch = "ppc"; arch = "ppc";
os = "linux"; os = "linux";
compression = "gzip"; compression = "gzip";
load = <00000000>;
entry = <00000000>;
hash@1 { hash@1 {
algo = "sha1"; algo = "sha1";
}; };
...@@ -73,6 +75,8 @@ ...@@ -73,6 +75,8 @@
arch = "ppc"; arch = "ppc";
os = "linux"; os = "linux";
compression = "gzip"; compression = "gzip";
load = <00000000>;
entry = <00000000>;
hash@1 { hash@1 {
algo = "crc32"; algo = "crc32";
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment