mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-10 13:45:10 -05:00
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:
parent
77a458a464
commit
34e6b6b2ae
2 changed files with 8 additions and 12 deletions
|
|
@ -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 = .;
|
||||||
|
|
|
||||||
|
|
@ -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 = .;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue