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/3617/head
parent
04a31f3b39
commit
95e5fec8d0
|
@ -152,7 +152,7 @@ SECTIONS
|
|||
/* Note: The uVisor expects this section at a fixed location, as specified
|
||||
by the porting process configuration parameter: SRAM_OFFSET. */
|
||||
__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):
|
||||
{
|
||||
. = ALIGN(32);
|
||||
|
|
Loading…
Reference in New Issue