From: JohnZee <jo...@gm...> - 2006-12-27 16:21:49
|
Morning, Some additional information that might help The jffs2 file is 10.6 MB. Does this seem about right for a default config image? If so, it would seem that it could fit directly into the Gumstix Flash and load from there. ( I have not tried this yet) I did locate the mkimage tool in the staging_dir/bin and ran it on the jffs2 image. It got me past the Bad Magic Number issue when I try to boot it. This time however, it errors with an invalid instruction. I used a load address of a2000000 and and entry point of a2000000 and specified no compression as parameters to mkimage. Of course, if my original image is bad, nothing is going to work. Do any gumstix factory images exist yet? Any pointers? Thanks On 12/26/06, JohnZee <jo...@gm...> wrote: > > Morning! > Once again I need some help to proceed. I am trying to boot Astlinux from > a CF card on a Netstix system. I have run: > > make > make jffs2root > > and now have a .jffs2 file. I copied this to a CF card, renamed to uImage, > along with a U-boot script to boot the image. U-boot recognizes the CF card > and runs my script and attempts to load the image but then fails with "Bad > Magic Number." I don't know where this magic number is to be set or how to > proceed from here. > Any help would be appreciated. > Thanks! > John > > I am running U-Boot r1161 from the gumstix factory images > > the u-boot script is > > echo "Booting Astlinux System..." > set workedok Failed > > if fatload ide 0 a2000000 uImage; then > set workedok Success > fi > bootm a2000000 > > > |