From 34e6b6b2ae3a822d0e9c9228754201a2ebd39ed7 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Tue, 8 May 2007 12:28:34 +0000 Subject: [PATCH] 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 --- apps/plugins/chessbox/archos.lds | 10 ++++------ apps/plugins/rockboy/archos.lds | 10 ++++------ 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/apps/plugins/chessbox/archos.lds b/apps/plugins/chessbox/archos.lds index 32a51e2025..1f2a9c5c1f 100644 --- a/apps/plugins/chessbox/archos.lds +++ b/apps/plugins/chessbox/archos.lds @@ -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 = .; diff --git a/apps/plugins/rockboy/archos.lds b/apps/plugins/rockboy/archos.lds index 2349f51dfa..1946b7a30f 100644 --- a/apps/plugins/rockboy/archos.lds +++ b/apps/plugins/rockboy/archos.lds @@ -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 = .;