TEMP: finished through init_page_tables
[qemu-palcode.git] / palcode.ld
bloba1304b5cfe66fc86355537f8ce7b4a51b4f6ae81
1 OUTPUT_FORMAT("elf64-alpha")
2 ENTRY(__start)
4 SECTIONS
6   . = 0xfffffc0000000000;
7   .text : { *(.text*) }
8   .rodata : { *(.rodata) }
9   .data ALIGN(8192) : { *(.data.hwrpb) *(.data*) }
10   .got : { *(.got.plt) *(.got) }
11   .sdata : { *(.sdata*) }
12   .sbss : { *(.sbss) *(.scommon) }
13   .bss : { *(.bss) *(COMMON) }
14   PROVIDE (_end = .);
16   /* DWARF debug sections.
17      Symbols in the DWARF debugging sections are relative to the beginning
18      of the section so we begin them at 0.  */
19   /* DWARF 1 */
20   .debug          0 : { *(.debug) }
21   .line           0 : { *(.line) }
22   /* GNU DWARF 1 extensions */
23   .debug_srcinfo  0 : { *(.debug_srcinfo) }
24   .debug_sfnames  0 : { *(.debug_sfnames) }
25   /* DWARF 1.1 and DWARF 2 */
26   .debug_aranges  0 : { *(.debug_aranges) }
27   .debug_pubnames 0 : { *(.debug_pubnames) }
28   /* DWARF 2 */
29   .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
30   .debug_abbrev   0 : { *(.debug_abbrev) }
31   .debug_line     0 : { *(.debug_line) }
32   .debug_frame    0 : { *(.debug_frame) }
33   .debug_str      0 : { *(.debug_str) }
34   .debug_loc      0 : { *(.debug_loc) }
35   .debug_macinfo  0 : { *(.debug_macinfo) }
36   /* SGI/MIPS DWARF 2 extensions */
37   .debug_weaknames 0 : { *(.debug_weaknames) }
38   .debug_funcnames 0 : { *(.debug_funcnames) }
39   .debug_typenames 0 : { *(.debug_typenames) }
40   .debug_varnames  0 : { *(.debug_varnames) }
41   /* DWARF 3 */
42   .debug_pubtypes 0 : { *(.debug_pubtypes) }
43   .debug_ranges   0 : { *(.debug_ranges) }
44   .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
46   /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) }
47   /DISCARD/ : { *(.eh_frame) }