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
Jaeden Amero 2017-01-19 17:13:40 +00:00 committed by Anna Bridge
parent fed1187b3a
commit faf9b06fa5
1 changed files with 1 additions and 1 deletions

View File

@ -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);