Hi,
I am new to sysbios, and RTSC configuration so my apologies if some of my questions are little basic
I am developing a simple bootloader for ARM on DM8148 evm board.
My custom bootloader initializes nand, DDR3 and other components. once this bootloader comes up, it shall load the kernel image (a simple application in my case) from nand to DDR3. After that it shall jump to the _c_int location of the kernel image.
So my problem starts here...
If I build a simple application without any RTSC or sysbios components, my bootloader can load the image from nand to DDR3 and execute it.
but if I build a RTSC image (application code remaining exactly same as above), my bootloader jumps to _c_int00 location of the image. But nothing gets executed.
does RTSC image builds differently from a normal image (an application built by choosing empty project)?