From: Felix Radensky Date: Tue, 30 Mar 2010 12:02:13 +0000 (+0300) Subject: doc: Fix ramdisk examples in doc/uImage.FIT/multi.its X-Git-Tag: v2010.03~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d5a64237d58ded31c2eed455c7a346e1c85f5565;p=kernel%2Fu-boot.git 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 --- 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@1 { algo = "sha1"; }; @@ -73,6 +75,8 @@ arch = "ppc"; os = "linux"; compression = "gzip"; + load = <00000000>; + entry = <00000000>; hash@1 { algo = "crc32"; };