diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2015-10-09 07:56:12 +0200 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2015-10-28 11:38:17 +0100 |
commit | 3971cdc202f638f252e39316d42492ace04cc1b1 (patch) | |
tree | 74838b53918c8705eda28460a24591ae77cbbf45 /arch/arc/kernel/vmlinux.lds.S | |
parent | ARC: smp: Move default boot kick/wait code out of MCIP into common code (diff) | |
download | linux-3971cdc202f638f252e39316d42492ace04cc1b1.tar.xz linux-3971cdc202f638f252e39316d42492ace04cc1b1.zip |
ARC: boot: Support Halt-on-reset and Run-on-reset SMP booting modes
For Run-on-reset, non masters need to spin wait. For Halt-on-reset they
can jump to entry point directly.
Also while at it, made reset vector handler as "the" entry point for
kernel including host debugger based boot (which uses the ELF header
entry point)
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/kernel/vmlinux.lds.S')
-rw-r--r-- | arch/arc/kernel/vmlinux.lds.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arc/kernel/vmlinux.lds.S b/arch/arc/kernel/vmlinux.lds.S index dd35bde39f69..894e696bddaa 100644 --- a/arch/arc/kernel/vmlinux.lds.S +++ b/arch/arc/kernel/vmlinux.lds.S @@ -12,7 +12,7 @@ #include <asm/thread_info.h> OUTPUT_ARCH(arc) -ENTRY(_stext) +ENTRY(res_service) #ifdef CONFIG_CPU_BIG_ENDIAN jiffies = jiffies_64 + 4; |