Hello
I have a board with an OMAP-L138 Processor on it.
I need to run SYS/BIOS on the processor, but I have errors linking the .cmd file with it.
Errors:
=> Where do these "range overlaps" come from??
These are the contents of my .cmd file:
-stack 0x00000800
-heap 0x00000800
MEMORY
{
dsp_l2_ram: ORIGIN = 0x11800000 LENGTH = 0x00040000
shared_ram: ORIGIN = 0x80000000 LENGTH = 0x00020000
external_ram: ORIGIN = 0xC0000000 LENGTH = 0x08000000
arm_local_ram: ORIGIN = 0xFFFF0000 LENGTH = 0x00002000
}
SECTIONS
{
.far > shared_ram
.text > arm_local_ram
.stack > arm_local_ram
.bss > arm_local_ram
.data > arm_local_ram
.const > arm_local_ram
.switch > arm_local_ram
.sysmem > arm_local_ram
.cinit > arm_local_ram
.cio > arm_local_ram
}
What's wrong with this .cmd file? How can I fix it?
