Hi.
I have flashed in the uImage.bin that i got from the prebuilt images from the dvsdk psp and a ramdisk from the community and I am able to boot to Arago main login. When I off it and on it, it gives me the Error: can't get kernel image because of bad data crc. I can salvage by flashing it in again by tftp and start it up again. I would like the image and ramdisk to stay on the memory, is this the right way to do it?
My uimage is (2186996 bytes) and my ramdisk is (3153400 bytes) and I am using the experimental kit. Please help. Thanks.
On CMD: I used flashandbootutils and did the following:
sfh_OMAP-L138.exe -erase
sfh_OMAP-L138.exe -flash ubl\ubl_OMAPL138_SPI_MEM.bin u-boot-da850-omapl138-evm.bin
From TeraTerm VT:
sf probe 0
tftp c0700000 uImage.bin
sf erase 0x800000 0x220000
sf write 0xc0700000 0x80000 0x220000
tftp 0xc1180000 ramdisk.gz
sf erase 0x280000 0x310000
sf write 0xc1180000 0x280000 0x310000
setenv bootargs mem=32M console=ttyS2,115200n8 root=/dev/ram0 rw initrd=0xc1180000,8m ip=off
setenv bootcmd 'sf probe 0;sf read 0xc0700000 0x80000 0x220000;sf read 0xc1180000 0x280000 0x310000;bootm 0xc0700000'
saveenv