Hi,
I'm trying to start a RTEMS application on the Microzed Board with u-boot. The .bin file is located on the SD card. I try it the following way:
1. fatload mmc 0 0x100000 ticker.bin
2. go 100000
Than it freezes with:
## Starting application at 0x00100000 ...
When I try to bootm the image of ticker.bin with:
1. fatload mmc 0 100000 ticker.img
2. bootm 100000
it freezes with:
## Booting kernel from Legacy Image at 00100000 ...
Image Name: RTEMS Application
Image Type: ARM RTEMS Kernel Image (uncompressed)
Data Size: 1039080 Bytes = 1014.7 KiB
Load Address: 30000100
Entry Point: 30000100
Verifying Checksum ... OK
Loading Kernel Image ... OK
OK
## Transferring control to RTEMS (at address 30000100) ...
I use the U-Boot 2013.01-dirty version of u-boot. RTEMS is a bare metal application
Regards