summaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2012-04-05 08:50:54 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2012-04-05 08:50:54 +0200
commitbb548648c0e8796e94c28c1a851997b8af36c4ed (patch)
tree8b0fbde71c373a48d8f3a7b21023a39b071bbfdc /arch/x86
parent4d66ef54b6faf83b1c20fabbfae2d7619ee229c8 (diff)
downloadbarebox-bb548648c0e8796e94c28c1a851997b8af36c4ed.tar.gz
barebox-bb548648c0e8796e94c28c1a851997b8af36c4ed.tar.xz
x86 linker script: Add missing _text
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/lib/barebox.lds.S1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/lib/barebox.lds.S b/arch/x86/lib/barebox.lds.S
index 9798ed5c61..3315be2554 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*)