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
.text : {
*(.text)
*(.text*)
} > OVERLAY_RAM
.rodata : {
*(.rodata)
*(.rodata.str1.1)
*(.rodata.str1.4)
*(.rodata*)
} > OVERLAY_RAM
.data : {
*(.data)
*(.data*)
} > OVERLAY_RAM
.bss : {
*(.bss)
*(.bss*)
*(COMMON)
. = ALIGN(0x4);
_plugin_end_addr = .;