1 #include <asm-generic/vmlinux.lds.h>
3 OUTPUT_FORMAT("elf64-alpha")
6 PHDRS { kernel PT_LOAD; note PT_NOTE; }
10 #ifdef CONFIG_ALPHA_LEGACY_START_ADDRESS
11 . = 0xfffffc0000310000;
13 . = 0xfffffc0001010000;
16 _text = .; /* Text and read-only data */
25 _etext = .; /* End of text section */
28 __start___ex_table = .; /* Exception table */
29 __ex_table : { *(__ex_table) }
30 __stop___ex_table = .;
33 .dummy : { *(.dummy) } :kernel
37 /* Will be freed after init */
38 . = ALIGN(8192); /* Init code and data */
45 .init.data : { *(.init.data) }
49 .init.setup : { *(.init.setup) }
59 #ifdef CONFIG_BLK_DEV_INITRD
61 __initramfs_start = .;
62 .init.ramfs : { *(.init.ramfs) }
67 .con_initcall.init : {
68 __con_initcall_start = .;
70 __con_initcall_end = .;
80 /* Freed after init ends here */
82 /* Note 2 page alignment above. */
83 .data.init_thread : { *(.data.init_thread) }
86 .data.page_aligned : { *(.data.page_aligned) }
89 .data.cacheline_aligned : { *(.data.cacheline_aligned) }
98 .sdata : { *(.sdata) }
100 _edata = .; /* End of data section */
103 .sbss : { *(.sbss) *(.scommon) }
104 .bss : { *(.bss) *(COMMON) }
109 /* Sections to be discarded */
110 /DISCARD/ : { *(.exit.text) *(.exit.data) *(.exitcall.exit) }
112 .mdebug 0 : { *(.mdebug) }
113 .note 0 : { *(.note) }
114 .comment 0 : { *(.comment) }
116 /* Stabs debugging sections */
117 .stab 0 : { *(.stab) }
118 .stabstr 0 : { *(.stabstr) }
119 .stab.excl 0 : { *(.stab.excl) }
120 .stab.exclstr 0 : { *(.stab.exclstr) }
121 .stab.index 0 : { *(.stab.index) }
122 .stab.indexstr 0 : { *(.stab.indexstr) }
124 .debug 0 : { *(.debug) }
125 .line 0 : { *(.line) }
126 /* GNU DWARF 1 extensions */
127 .debug_srcinfo 0 : { *(.debug_srcinfo) }
128 .debug_sfnames 0 : { *(.debug_sfnames) }
129 /* DWARF 1.1 and DWARF 2 */
130 .debug_aranges 0 : { *(.debug_aranges) }
131 .debug_pubnames 0 : { *(.debug_pubnames) }
133 .debug_info 0 : { *(.debug_info) }
134 .debug_abbrev 0 : { *(.debug_abbrev) }
135 .debug_line 0 : { *(.debug_line) }
136 .debug_frame 0 : { *(.debug_frame) }
137 .debug_str 0 : { *(.debug_str) }
138 .debug_loc 0 : { *(.debug_loc) }
139 .debug_macinfo 0 : { *(.debug_macinfo) }
140 /* SGI/MIPS DWARF 2 extensions */
141 .debug_weaknames 0 : { *(.debug_weaknames) }
142 .debug_funcnames 0 : { *(.debug_funcnames) }
143 .debug_typenames 0 : { *(.debug_typenames) }
144 .debug_varnames 0 : { *(.debug_varnames) }