Skip to content

Commit 7831da1

Browse files
authored
Merge pull request #3617 from Patater/efm32gg-linkerscript-fix
EFM32GG: Fix GCC_ARM linker script
2 parents a8f4b45 + 95e5fec commit 7831da1

File tree

1 file changed

+1
-1
lines changed
  • targets/TARGET_Silicon_Labs/TARGET_EFM32/TARGET_EFM32GG/device/TARGET_1024K/TOOLCHAIN_GCC_ARM

1 file changed

+1
-1
lines changed

targets/TARGET_Silicon_Labs/TARGET_EFM32/TARGET_EFM32GG/device/TARGET_1024K/TOOLCHAIN_GCC_ARM/efm32gg.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ SECTIONS
152152
/* Note: The uVisor expects this section at a fixed location, as specified
153153
by the porting process configuration parameter: SRAM_OFFSET. */
154154
__UVISOR_SRAM_OFFSET = 0x0;
155-
__UVISOR_SRAM_START = ORIGIN(m_data) + __UVISOR_SRAM_OFFSET;
155+
__UVISOR_SRAM_START = ORIGIN(RAM) + __UVISOR_SRAM_OFFSET;
156156
.uvisor.bss __UVISOR_SRAM_START (NOLOAD):
157157
{
158158
. = ALIGN(32);

0 commit comments

Comments
 (0)