[U-Boot] [PATCH] doc: Fix ramdisk examples in doc/uImage.FIT/multi.its

Felix Radensky felix at embedded-sol.com
Tue Mar 30 14:02:13 CEST 2010


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 at embedded-sol.com>
---
 doc/uImage.FIT/multi.its |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/doc/uImage.FIT/multi.its b/doc/uImage.FIT/multi.its
index a120da0..881b749 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 at 1 {
 				algo = "sha1";
 			};
@@ -73,6 +75,8 @@
 			arch = "ppc";
 			os = "linux";
 			compression = "gzip";
+			load = <00000000>;
+			entry = <00000000>;
 			hash at 1 {
 				algo = "crc32";
 			};
-- 
1.5.4.3



More information about the U-Boot mailing list