summaryrefslogtreecommitdiffstats
path: root/arch/mips
diff options
context:
space:
mode:
authorAntony Pavlov <antonynpavlov@gmail.com>2017-05-05 14:34:34 +0300
committerSascha Hauer <s.hauer@pengutronix.de>2017-05-08 12:59:48 +0200
commit1714d54139d4607e7916237c21f67e6dd98cacd5 (patch)
treec9ac2162c0784edf1b8cfec476dcc810d0b901e8 /arch/mips
parenta275dbaab7ebde8bc3f35cfd93528f1ec6e23f5e (diff)
downloadbarebox-1714d54139d4607e7916237c21f67e6dd98cacd5.tar.gz
barebox-1714d54139d4607e7916237c21f67e6dd98cacd5.tar.xz
MIPS: barebox.lds.S: put .text_entry contents after _stext and _text
Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/mips')
-rw-r--r--arch/mips/lib/barebox.lds.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/lib/barebox.lds.S b/arch/mips/lib/barebox.lds.S
index cc214920e3..899f62b968 100644
--- a/arch/mips/lib/barebox.lds.S
+++ b/arch/mips/lib/barebox.lds.S
@@ -27,9 +27,9 @@ SECTIONS
. = ALIGN(4);
.text :
{
- *(.text_entry*)
_stext = .;
_text = .;
+ *(.text_entry*)
__bare_init_start = .;
*(.text_bare_init*)
__bare_init_end = .;