1 #include <linux/config.h>
2 #include <asm-generic/vmlinux.lds.h>
4 OUTPUT_FORMAT("elf64-alpha")
7 PHDRS { kernel PT_LOAD ; }
11 #ifdef CONFIG_ALPHA_LEGACY_START_ADDRESS
12 . = 0xfffffc0000310000;
14 . = 0xfffffc0001010000;
17 _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 = .;
34 /* Will be freed after init */
35 . = ALIGN(8192); /* Init code and data */
42 .init.data : { *(.init.data) }
46 .init.setup : { *(.init.setup) }
63 __initramfs_start = .;
64 .init.ramfs : { *(.init.ramfs) }
68 .con_initcall.init : {
69 __con_initcall_start = .;
71 __con_initcall_end = .;
79 .data.percpu : { *(.data.percpu) }
84 /* Freed after init ends here */
86 /* Note 2 page alignment above. */
87 .data.init_thread : { *(.data.init_thread) }
90 .data.page_aligned : { *(.data.page_aligned) }
93 .data.cacheline_aligned : { *(.data.cacheline_aligned) }
102 .sdata : { *(.sdata) }
104 _edata = .; /* End of data section */
107 .sbss : { *(.sbss) *(.scommon) }
108 .bss : { *(.bss) *(COMMON) }
113 /* Sections to be discarded */
114 /DISCARD/ : { *(.exit.text) *(.exit.data) *(.exitcall.exit) }
116 .mdebug 0 : { *(.mdebug) }
117 .note 0 : { *(.note) }
118 .comment 0 : { *(.comment) }
120 /* Stabs debugging sections */
121 .stab 0 : { *(.stab) }
122 .stabstr 0 : { *(.stabstr) }
123 .stab.excl 0 : { *(.stab.excl) }
124 .stab.exclstr 0 : { *(.stab.exclstr) }
125 .stab.index 0 : { *(.stab.index) }
126 .stab.indexstr 0 : { *(.stab.indexstr) }
128 .debug 0 : { *(.debug) }
129 .line 0 : { *(.line) }
130 /* GNU DWARF 1 extensions */
131 .debug_srcinfo 0 : { *(.debug_srcinfo) }
132 .debug_sfnames 0 : { *(.debug_sfnames) }
133 /* DWARF 1.1 and DWARF 2 */
134 .debug_aranges 0 : { *(.debug_aranges) }
135 .debug_pubnames 0 : { *(.debug_pubnames) }
137 .debug_info 0 : { *(.debug_info) }
138 .debug_abbrev 0 : { *(.debug_abbrev) }
139 .debug_line 0 : { *(.debug_line) }
140 .debug_frame 0 : { *(.debug_frame) }
141 .debug_str 0 : { *(.debug_str) }
142 .debug_loc 0 : { *(.debug_loc) }
143 .debug_macinfo 0 : { *(.debug_macinfo) }
144 /* SGI/MIPS DWARF 2 extensions */
145 .debug_weaknames 0 : { *(.debug_weaknames) }
146 .debug_funcnames 0 : { *(.debug_funcnames) }
147 .debug_typenames 0 : { *(.debug_typenames) }
148 .debug_varnames 0 : { *(.debug_varnames) }