summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorFelix Radensky <felix@embedded-sol.com>2010-03-30 15:02:13 +0300
committerWolfgang Denk <wd@denx.de>2010-03-31 15:13:31 +0200
commitd5a64237d58ded31c2eed455c7a346e1c85f5565 (patch)
tree5746544a854238836865023df5bcbb64a78ee14f /doc
parent2d2018f3db5ed834bc1ee208a2c6212fdf00bca1 (diff)
downloadblackbird-obmc-uboot-d5a64237d58ded31c2eed455c7a346e1c85f5565.tar.gz
blackbird-obmc-uboot-d5a64237d58ded31c2eed455c7a346e1c85f5565.zip
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: Felix Radensky <felix@embedded-sol.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/uImage.FIT/multi.its4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/uImage.FIT/multi.its b/doc/uImage.FIT/multi.its
index a120da038f..881b74952d 100644
--- a/doc/uImage.FIT/multi.its
+++ b/doc/uImage.FIT/multi.its
@@ -61,6 +61,8 @@
arch = "ppc";
os = "linux";
compression = "gzip";
+ load = <00000000>;
+ entry = <00000000>;
hash@1 {
algo = "sha1";
};
@@ -73,6 +75,8 @@
arch = "ppc";
os = "linux";
compression = "gzip";
+ load = <00000000>;
+ entry = <00000000>;
hash@1 {
algo = "crc32";
};
OpenPOWER on IntegriCloud