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