aboutsummaryrefslogtreecommitdiffstats
path: root/arch/alpha/kernel/vmlinux.lds.S
diff options
context:
space:
mode:
Diffstat (limited to 'arch/alpha/kernel/vmlinux.lds.S')
-rw-r--r--arch/alpha/kernel/vmlinux.lds.S7
1 files changed, 2 insertions, 5 deletions
diff --git a/arch/alpha/kernel/vmlinux.lds.S b/arch/alpha/kernel/vmlinux.lds.S
index 6dc03c35caa0..82803df17977 100644
--- a/arch/alpha/kernel/vmlinux.lds.S
+++ b/arch/alpha/kernel/vmlinux.lds.S
@@ -1,5 +1,6 @@
1#include <asm-generic/vmlinux.lds.h> 1#include <asm-generic/vmlinux.lds.h>
2#include <asm/page.h> 2#include <asm/page.h>
3#include <asm/thread_info.h>
3 4
4OUTPUT_FORMAT("elf64-alpha") 5OUTPUT_FORMAT("elf64-alpha")
5OUTPUT_ARCH(alpha) 6OUTPUT_ARCH(alpha)
@@ -92,11 +93,6 @@ SECTIONS
92 __init_end = .; 93 __init_end = .;
93 /* Freed after init ends here */ 94 /* Freed after init ends here */
94 95
95 /* Note 2 page alignment above. */
96 .data.init_thread : {
97 *(.data.init_thread)
98 }
99
100 . = ALIGN(PAGE_SIZE); 96 . = ALIGN(PAGE_SIZE);
101 .data.page_aligned : { 97 .data.page_aligned : {
102 *(.data.page_aligned) 98 *(.data.page_aligned)
@@ -110,6 +106,7 @@ SECTIONS
110 _data = .; 106 _data = .;
111 /* Data */ 107 /* Data */
112 .data : { 108 .data : {
109 INIT_TASK_DATA(THREAD_SIZE)
113 DATA_DATA 110 DATA_DATA
114 CONSTRUCTORS 111 CONSTRUCTORS
115 } 112 }