Difference between revisions of "Installing file system using openSUSE 11.0 host"

From Gumstix User Wiki
Jump to: navigation, search
(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…')
 
(remove spam)
 
(One intermediate revision by one other user not shown)
(No difference)

Latest revision as of 23:20, 10 November 2010

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.