aboutsummaryrefslogtreecommitdiffstats
path: root/arch/tile/kernel/vmlinux.lds.S
diff options
context:
space:
mode:
Diffstat (limited to 'arch/tile/kernel/vmlinux.lds.S')
-rw-r--r--arch/tile/kernel/vmlinux.lds.S10
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/tile/kernel/vmlinux.lds.S b/arch/tile/kernel/vmlinux.lds.S
index c7ae53df429e..8b2016307eb0 100644
--- a/arch/tile/kernel/vmlinux.lds.S
+++ b/arch/tile/kernel/vmlinux.lds.S
@@ -5,7 +5,7 @@
5#include <hv/hypervisor.h> 5#include <hv/hypervisor.h>
6 6
7/* Text loads starting from the supervisor interrupt vector address. */ 7/* Text loads starting from the supervisor interrupt vector address. */
8#define TEXT_OFFSET MEM_SV_INTRPT 8#define TEXT_OFFSET MEM_SV_START
9 9
10OUTPUT_ARCH(tile) 10OUTPUT_ARCH(tile)
11ENTRY(_start) 11ENTRY(_start)
@@ -13,7 +13,7 @@ jiffies = jiffies_64;
13 13
14PHDRS 14PHDRS
15{ 15{
16 intrpt1 PT_LOAD ; 16 intrpt PT_LOAD ;
17 text PT_LOAD ; 17 text PT_LOAD ;
18 data PT_LOAD ; 18 data PT_LOAD ;
19} 19}
@@ -24,11 +24,11 @@ SECTIONS
24 #define LOAD_OFFSET TEXT_OFFSET 24 #define LOAD_OFFSET TEXT_OFFSET
25 25
26 /* Interrupt vectors */ 26 /* Interrupt vectors */
27 .intrpt1 (LOAD_OFFSET) : AT ( 0 ) /* put at the start of physical memory */ 27 .intrpt (LOAD_OFFSET) : AT ( 0 ) /* put at the start of physical memory */
28 { 28 {
29 _text = .; 29 _text = .;
30 *(.intrpt1) 30 *(.intrpt)
31 } :intrpt1 =0 31 } :intrpt =0
32 32
33 /* Hypervisor call vectors */ 33 /* Hypervisor call vectors */
34 . = ALIGN(0x10000); 34 . = ALIGN(0x10000);