summaryrefslogtreecommitdiffstats
path: root/arch/mips
diff options
context:
space:
mode:
authorAntony Pavlov <antonynpavlov@gmail.com>2017-05-05 14:34:35 +0300
committerSascha Hauer <s.hauer@pengutronix.de>2017-05-08 12:59:48 +0200
commit8aa6600365a384cc7d5fa82277a9b762fbb41e88 (patch)
tree98ac572e559b1d5dc02f0b9736f9b43e692cce8e /arch/mips
parent1714d54139d4607e7916237c21f67e6dd98cacd5 (diff)
downloadbarebox-8aa6600365a384cc7d5fa82277a9b762fbb41e88.tar.gz
barebox-8aa6600365a384cc7d5fa82277a9b762fbb41e88.tar.xz
MIPS: start.S: put entry code into the ".text_entry" section
The ".text_bare_init" section is not intended to be used for storing entry code. 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/boot/start.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/boot/start.S b/arch/mips/boot/start.S
index 0828ee4927..e937e89af1 100644
--- a/arch/mips/boot/start.S
+++ b/arch/mips/boot/start.S
@@ -20,7 +20,7 @@
#include <asm/pbl_macros.h>
.set noreorder
- .section ".text_bare_init"
+ .section ".text_entry"
.align 4
EXPORT(_start)