|
u-boot 1.1.0? I'm using this currently to boot my linux system from a serial dataflash
I just can't compile u-boot 1.1.4 (as well as 1.1.2 and 1.1.3) so as to load from serial dataflash. The default is to load from the parallel flash. I need some kind of patch (like the one provided by atmel for u-boot 1.1.0) for 1.1.4 as well. Is there one?
For you Manuel it seems that when you setenv (and u-boot tries to save the enviroment to the parallel or serial dataflash) it cant access the storage space and thus it crashes. Find in u-boot-src-root/include/configs/at91rm9200dk.h the sections regarding the various flash memories and fix any inconsistencies (invalid start addresses is usual, as well as using the serial dataflash rather the parallel)
What you can also do is put some entry of the type
#define CONFIG_SERVERIP 192.168.100.1
in the same header file. This will be loaded as enviroment variable from u-boot at startup, so you will not need to setenv
cya
|