From 0b5294c1114a8c3f9e8de5f5fe11dc21c79182d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Rivi=C3=A8re?= Date: Mon, 12 Nov 2012 13:41:21 +0000 Subject: [PATCH] Removed redundant sections VMA. --- BaS_GNU/bas.lk.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BaS_GNU/bas.lk.in b/BaS_GNU/bas.lk.in index bd443a0..2ad9bb5 100644 --- a/BaS_GNU/bas.lk.in +++ b/BaS_GNU/bas.lk.in @@ -75,7 +75,7 @@ SECTIONS { __SYS_SRAM = 0xFF010000; __SYS_SRAM_SIZE = 0x00008000; - .text ___BOOT_FLASH : + .text : { objs/startcf.o(.text) /* this one is the entry point so it must be the first */ objs/sysinit.o(.text) @@ -86,7 +86,7 @@ SECTIONS { #endif } > flash - .bas __BAS_IN_RAM : + .bas : /* The BaS is stored in the flash, just after the init part. * Then it will be copied to its final location in the RAM. * This data must be aligned for optimal copy loop speed.