This is most likely for Hendrik but others might know as well.<br><br>I want to boot from SD with only one ext4 partition with boot.scr script.bin and uImage located in /boot/<br><br>This is the content of boot.cmd;<br><br>
setenv setargs console=ttyS0,115200 root=/dev/mmcblk0p1 loglevel=8 panic=10 rootfstype=ext4 elevator=noop rootwait<br>ext2load mmc 0 0x43000000 boot/script.bin<br>ext2load mmc 0 0x48000000 boot/uImage<br>watchdog 0<br>bootm 0x48000000<br>
<br>And I create the boot.scr from this file with the following command;<br><br>mkimage -C none -A arm -T script -d boot.cmd boot.scr<br><br>Like I said above boot.scr, the script.bin and the kernel are located at the first partition (ext4) in /boot/<br>
When I try to boot the Mele A1000, I got the following out put;<br><br>Hit any key to stop autoboot:  0 <br>reading boot.scr<br><br>** Unable to read &quot;boot.scr&quot; from mmc 0:1 **<br>Loading file &quot;boot.scr&quot; from mmc device 0:1 (xxa1)<br>
** File not found boot.scr<br>Loading file &quot;boot/boot.scr&quot; from mmc device 0:1 (xxa1)<br>** File not found boot/boot.scr<br>reading script.bin<br><br>** Unable to read &quot;script.bin&quot; from mmc 0:1 **<br>reading uImage<br>
<br>** Unable to read &quot;uImage&quot; from mmc 0:1 **<br>Wrong Image Format for bootm command<br>ERROR: can&#39;t get kernel image!<br>sun4i#<br><br><br>What is going on? What do I miss? I must say, the ext4 partition is the first but does not start at 2048. Does that generate any problems?<br>
<br>Thanks in advanced,<br><br>Peter<br>