From 4cc33a9625b2d321cefc77102ee52e36fc6f019d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Wed, 12 Mar 2014 18:11:52 +0100 Subject: Handle .text.startup section in linker script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes the build with GNU binutils 2.19. Reported-by: Mark Cave-Ayland Signed-off-by: Andreas Färber --- src/main.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ld b/src/main.ld index 3218019..453d5fd 100644 --- a/src/main.ld +++ b/src/main.ld @@ -30,7 +30,7 @@ SECTIONS { .start : { *(.start) } > start . = ALIGN(4) ; - .text : { *(.text) } > bios + .text : { *(.text*) } > bios . = ALIGN(4) ; .OpenFirmware : { *(.OpenFirmware) } > bios . = ALIGN(4) ; -- cgit v1.2.1