i use AM1707 EVM,when i load u-boot, kernel into spi flash,then boot by SPI Flash mode,but the ramdisk in MMC/SD never booting.
when i load the kernel and ramdisk into SDRAM ,boot success.
how can i boot the ramdisk in mmc/sd with spi_flash mode?
please help me,thanks!
this is my type steps:
u-boot>sf probe 0
u-boot>tftp 0xc0700000 uImage
u-boot>sf erase 0x1E0000 0x220000
u-boot>sf write 0xc0700000 0x1E0000 0x220000
u-boot>setenv bootargs 'mem=32M console=ttyS2,115200n8 root=/dev/ram0 rw initrd=0xc1180000,4M ip=192.168.0.125'
u-boot>setenv bootcmd 'sf probe 0;sf read 0xc0700000 0x1E0000 0x220000; bootm 0xc0700000'
this is the problem: