From 99319f4e28ccec023d050ab35f98940a98ed6f85 Mon Sep 17 00:00:00 2001 From: Joakim Gebart Date: Wed, 7 Jan 2015 19:10:58 +0100 Subject: [PATCH] [SQUASH ME] lpc2387: Add missing *(data.*) to linker script. --- cpu/lpc2387/linkerscript.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/lpc2387/linkerscript.x b/cpu/lpc2387/linkerscript.x index 1ebfaf47d6..a87a800f8f 100644 --- a/cpu/lpc2387/linkerscript.x +++ b/cpu/lpc2387/linkerscript.x @@ -163,7 +163,7 @@ SECTIONS { . = ALIGN(4); /* ensure data is aligned so relocation can use 4-byte operations */ _data = .; /* create a global symbol marking the start of the .data section */ - *(.data) /* all .data sections */ + *(.data .data.*) /* all .data sections */ *(.gnu.linkonce.d*) . = ALIGN(4); /* preinit data */