diff --git a/cpu/x86/quarkX1000.ld b/cpu/x86/quarkX1000.ld index b4a3afa44..f9ff105c2 100644 --- a/cpu/x86/quarkX1000.ld +++ b/cpu/x86/quarkX1000.ld @@ -42,7 +42,7 @@ SECTIONS { .text ALIGN (4K) : { *(.multiboot) - *(.text) + *(.text*) } .rodata ALIGN (4K) : @@ -52,12 +52,12 @@ SECTIONS { .data ALIGN (4K) : { - *(.data) + *(.data*) } .bss ALIGN (4K) : { *(COMMON) - *(.bss) + *(.bss*) } }