summaryrefslogtreecommitdiffstats
path: root/arch/alpha/vmlinux.lds
diff options
context:
space:
mode:
Diffstat (limited to 'arch/alpha/vmlinux.lds')
-rw-r--r--arch/alpha/vmlinux.lds6
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/alpha/vmlinux.lds b/arch/alpha/vmlinux.lds
index 2a5f00989..0fb2276ea 100644
--- a/arch/alpha/vmlinux.lds
+++ b/arch/alpha/vmlinux.lds
@@ -5,6 +5,7 @@ SECTIONS
. = 0xfffffc0000310000;
_text = .;
.text : { *(.text) }
+ .text2 : { *(.text2) }
_etext = .;
/* Exception table */
@@ -25,9 +26,12 @@ SECTIONS
__init_begin = .;
.text.init : { *(.text.init) }
.data.init : { *(.data.init) }
- . = ALIGN(8192);
+ . = ALIGN(2*8192); /* Align double page for init_task_union */
__init_end = .;
+ /* The initial task and kernel stack */
+ init_task : { *(init_task) }
+
/* Global data */
_data = .;
.rodata : { *(.rodata) }