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) }
55 #ifdef CONFIG_BLK_DEV_INITRD
57 __initramfs_start = .;
58 .init.ramfs : { *(.init.ramfs) }
63 .con_initcall.init : {
64 __con_initcall_start = .;
66 __con_initcall_end = .;
74 .data.percpu : { *(.data.percpu) }
79 /* Freed after init ends here */
81 /* Note 2 page alignment above. */
82 .data.init_thread : { *(.data.init_thread) }
85 .data.page_aligned : { *(.data.page_aligned) }
88 .data.cacheline_aligned : { *(.data.cacheline_aligned) }
97 .sdata : { *(.sdata) }
99 _edata = .; /* End of data section */
102 .sbss : { *(.sbss) *(.scommon) }
103 .bss : { *(.bss) *(COMMON) }
108 /* Sections to be discarded */
109 /DISCARD/ : { *(.exit.text) *(.exit.data) *(.exitcall.exit) }
111 .mdebug 0 : { *(.mdebug) }
112 .note 0 : { *(.note) }
113 .comment 0 : { *(.comment) }
115 /* Stabs debugging sections */
116 .stab 0 : { *(.stab) }
117 .stabstr 0 : { *(.stabstr) }
118 .stab.excl 0 : { *(.stab.excl) }
119 .stab.exclstr 0 : { *(.stab.exclstr) }
120 .stab.index 0 : { *(.stab.index) }
121 .stab.indexstr 0 : { *(.stab.indexstr) }
123 .debug 0 : { *(.debug) }
124 .line 0 : { *(.line) }
125 /* GNU DWARF 1 extensions */
126 .debug_srcinfo 0 : { *(.debug_srcinfo) }
127 .debug_sfnames 0 : { *(.debug_sfnames) }
128 /* DWARF 1.1 and DWARF 2 */
129 .debug_aranges 0 : { *(.debug_aranges) }
130 .debug_pubnames 0 : { *(.debug_pubnames) }
132 .debug_info 0 : { *(.debug_info) }
133 .debug_abbrev 0 : { *(.debug_abbrev) }
134 .debug_line 0 : { *(.debug_line) }
135 .debug_frame 0 : { *(.debug_frame) }
136 .debug_str 0 : { *(.debug_str) }
137 .debug_loc 0 : { *(.debug_loc) }
138 .debug_macinfo 0 : { *(.debug_macinfo) }
139 /* SGI/MIPS DWARF 2 extensions */
140 .debug_weaknames 0 : { *(.debug_weaknames) }
141 .debug_funcnames 0 : { *(.debug_funcnames) }
142 .debug_typenames 0 : { *(.debug_typenames) }
143 .debug_varnames 0 : { *(.debug_varnames) }