From bb548648c0e8796e94c28c1a851997b8af36c4ed Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Thu, 5 Apr 2012 08:50:54 +0200 Subject: [PATCH] x86 linker script: Add missing _text Signed-off-by: Sascha Hauer --- arch/x86/lib/barebox.lds.S | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/lib/barebox.lds.S b/arch/x86/lib/barebox.lds.S index 9798ed5c6..3315be255 100644 --- a/arch/x86/lib/barebox.lds.S +++ b/arch/x86/lib/barebox.lds.S @@ -144,6 +144,7 @@ SECTIONS .text : AT ( LOADADDR(.bootstrapping) + SIZEOF(.bootstrapping) ) { /* do not align here! It may fails with the LOADADDR! */ _stext = .; + _text = .; *(.text_entry*) __bare_init_start = .; *(.text_bare_init*)