Fixed a problem with rom to ram. (which can produce error "cannot move location counter backwards")

This commit is contained in:
TitanMKD 2013-02-25 01:35:56 +01:00 committed by Piotr Esden-Tempski
parent 0dec187fee
commit 786e3215a4

View File

@ -96,7 +96,6 @@ SECTIONS
_edata_rom = _data_rom + SIZEOF (.data); _edata_rom = _data_rom + SIZEOF (.data);
.bss : { .bss : {
. = _edata;
_bss = .; _bss = .;
*(.bss*) /* Read-write zero initialized data */ *(.bss*) /* Read-write zero initialized data */
*(COMMON) *(COMMON)
@ -106,7 +105,6 @@ SECTIONS
/* exception unwind data - required due to libgcc.a issuing /0 exceptions */ /* exception unwind data - required due to libgcc.a issuing /0 exceptions */
.ARM.extab : { .ARM.extab : {
. = _ebss;
*(.ARM.extab*) *(.ARM.extab*)
} >ram_local2 } >ram_local2