Hey Yuri, thank you very much.
Now i'm able to load the bootloader. But my uImage isn't loading. I wanted to run my image from the µSD-Card following the instructions from the document.
/* Assume the kernel image start from the address 0x100000 byte (the block start address is
0x800). The kernel image size is less than 0x300000 byte. The rootfs is located into
/dev/mmcblk0p1 partition. Enter the following commands in the U-Boot prompt:*/
MX53-SMD U-Boot > setenv loadaddr 0x70800000
MX53-SMD U-Boot > setenv bootargs_base 'setenv bootargs
console=ttymxc0,115200'
MX53-SMD U-Boot > setenv bootargs_mmc 'setenv bootargs ${bootargs}
root=/dev/mmcblk0p1 rootwait rw video=mxcdi1fb:RGB666,XGA di1_primary
ldb=di1 ip=dhcp'
MX53-SMD U-Boot > setenv bootcmd_mmc 'run bootargs_base
bootargs_mmc;mmc read 0 ${loadaddr} 0x800 0x1800;bootm'
MX53-SMD U-Boot > setenv bootcmd 'run bootcmd_mmc'
MX53-SMD U-Boot > saveenv
MX53-SMD U-Boot > run bootcmd
So, after running the bootcommand this error occurs:
MMC read: dev # 1, block # 2048 count 6144 partition # 0 ...
6144 blocks read: OK
Wrong Image Format for bootm command
ERROR: Can't get kernel image!
I changed the device from 0 to 1 in [mmc read 0].
I think that the right partition is 1, not 0. So I want to change that, but don't have any idea where.
And why the writer is sure that the partiton is located in /dev/mmcblk0p1