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