Fix red overlay plugins on archos. Linker scripts weren't prepared for those plugins using plugin library components.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13359 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2007-05-08 12:28:34 +00:00
parent 77a458a464
commit 34e6b6b2ae
2 changed files with 8 additions and 12 deletions

View file

@ -24,21 +24,19 @@ SECTIONS
} > OVERLAY_RAM } > OVERLAY_RAM
.text : { .text : {
*(.text) *(.text*)
} > OVERLAY_RAM } > OVERLAY_RAM
.rodata : { .rodata : {
*(.rodata) *(.rodata*)
*(.rodata.str1.1)
*(.rodata.str1.4)
} > OVERLAY_RAM } > OVERLAY_RAM
.data : { .data : {
*(.data) *(.data*)
} > OVERLAY_RAM } > OVERLAY_RAM
.bss : { .bss : {
*(.bss) *(.bss*)
*(COMMON) *(COMMON)
. = ALIGN(0x4); . = ALIGN(0x4);
_plugin_end_addr = .; _plugin_end_addr = .;

View file

@ -24,21 +24,19 @@ SECTIONS
} > OVERLAY_RAM } > OVERLAY_RAM
.text : { .text : {
*(.text) *(.text*)
} > OVERLAY_RAM } > OVERLAY_RAM
.rodata : { .rodata : {
*(.rodata) *(.rodata*)
*(.rodata.str1.1)
*(.rodata.str1.4)
} > OVERLAY_RAM } > OVERLAY_RAM
.data : { .data : {
*(.data) *(.data*)
} > OVERLAY_RAM } > OVERLAY_RAM
.bss : { .bss : {
*(.bss) *(.bss*)
*(COMMON) *(COMMON)
. = ALIGN(0x4); . = ALIGN(0x4);
_plugin_end_addr = .; _plugin_end_addr = .;