Installing file system using openSUSE 11.0 host

From Gumstix User Wiki
Revision as of 05:23, 5 October 2009 by Adil (Talk | contribs) (Created page with 'Follow the instruction from [http://www.gumstix.net/Setup-and-Programming/view/Getting-started/Replacing-the-file-system-image/111.html here]. Instruction for connecting via ser…')

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Follow the instruction from here.

Instruction for connecting via serial is here


Some recommendations

Terminal programs

It's recommended to use kermit itself. Minicom is acceptable, but, it also uses kermit for loading files. So, kermit is better. Don't make experiments.

Variables

Some u-boot needs to specify the variables in such form $(filesize) and some as ${filesize}. For being sure what form your u-boot needs write the following command after loading the file.

echo $(filesize)
echo ${filesize}

The correct variant will print the size of file in hexadecimal.

Addresses

Be attentive when writing the addresses. Check it twice, triple. You can damage another data when loading into incorrect memory block.

Protecting the memory block

!!!!!!!!!!!!!!!!!!!!!!!Please read the u-boot manual for understanding protect command of u-boot. Don't play with it, you can make your device unbootable.