mirror of https://github.com/ARMmbed/mbed-os.git
EFM32GG: Fix GCC_ARM linker script
A copy paste error snuck into the uVisor related updates to the EFM32GG
linker script. Fix the error by replacing "m_data" with "RAM".
Fixes: 89641bc7e0
"uVisor: Update K64F and EFM32GG linker scripts"
pull/3660/head
parent
fed1187b3a
commit
faf9b06fa5
|
@ -152,7 +152,7 @@ SECTIONS
|
||||||
/* Note: The uVisor expects this section at a fixed location, as specified
|
/* Note: The uVisor expects this section at a fixed location, as specified
|
||||||
by the porting process configuration parameter: SRAM_OFFSET. */
|
by the porting process configuration parameter: SRAM_OFFSET. */
|
||||||
__UVISOR_SRAM_OFFSET = 0x0;
|
__UVISOR_SRAM_OFFSET = 0x0;
|
||||||
__UVISOR_SRAM_START = ORIGIN(m_data) + __UVISOR_SRAM_OFFSET;
|
__UVISOR_SRAM_START = ORIGIN(RAM) + __UVISOR_SRAM_OFFSET;
|
||||||
.uvisor.bss __UVISOR_SRAM_START (NOLOAD):
|
.uvisor.bss __UVISOR_SRAM_START (NOLOAD):
|
||||||
{
|
{
|
||||||
. = ALIGN(32);
|
. = ALIGN(32);
|
||||||
|
|
Loading…
Reference in New Issue