1 2OUTPUT_FORMAT("elf32-powerpc-freebsd", "elf32-powerpc-freebsd", 3 "elf32-powerpc-freebsd") 4OUTPUT_ARCH(powerpc) 5ENTRY(__start) 6SEARCH_DIR(/usr/lib); 7PROVIDE (__stack = 0); 8PHDRS 9{ 10 kernel PT_LOAD; 11 dynamic PT_DYNAMIC; 12} 13SECTIONS 14{ 15 /* Read-only sections, merged into text segment: */ 16 17 . = kernbase + SIZEOF_HEADERS; 18 PROVIDE (begin = . - SIZEOF_HEADERS); 19 20 .text : 21 { 22 *(.glink) 23 *(.text) 24 *(.stub) 25 /* .gnu.warning sections are handled specially by elf32.em. */ 26 *(.gnu.warning) 27 *(.gnu.linkonce.t*) 28 } :kernel =0 29 _etext = .; 30 PROVIDE (etext = .); 31 32 .interp : { *(.interp) } 33 .hash : { *(.hash) } 34 .dynsym : { *(.dynsym) } 35 .dynstr : { *(.dynstr) } 36 .gnu.version : { *(.gnu.version) } 37 .gnu.version_d : { *(.gnu.version_d) } 38 .gnu.version_r : { *(.gnu.version_r) } 39 .rela.text : 40 { *(.rela.text) *(.rela.gnu.linkonce.t*) } 41 .rela.data : 42 { *(.rela.data) *(.rela.gnu.linkonce.d*) } 43 .rela.rodata : 44 { *(.rela.rodata) *(.rela.gnu.linkonce.r*) } 45 .rela.got : { *(.rela.got) } 46 .rela.got1 : { *(.rela.got1) } 47 .rela.got2 : { *(.rela.got2) } 48 .rela.ctors : { *(.rela.ctors) } 49 .rela.dtors : { *(.rela.dtors) } 50 .rela.init : { *(.rela.init) } 51 .rela.fini : { *(.rela.fini) } 52 .rela.bss : { *(.rela.bss) } 53 .rela.plt : { *(.rela.plt) } 54 .rela.sdata : { *(.rela.sdata) } 55 .rela.sbss : { *(.rela.sbss) } 56 .rela.sdata2 : { *(.rela.sdata2) } 57 .rela.sbss2 : { *(.rela.sbss2) } 58 59 .init : { *(.init) } =0 60 .fini : { *(.fini) } =0 61 .rodata : { *(.rodata) *(.gnu.linkonce.r*) } 62 .rodata1 : { *(.rodata1) } 63 .note.gnu.build-id : { 64 PROVIDE (__build_id_start = .); 65 *(.note.gnu.build-id) 66 PROVIDE (__build_id_end = .); 67 } 68 .sdata2 : { *(.sdata2) } 69 .sbss2 : { *(.sbss2) } 70 /* Adjust the address for the data segment to the next page up. */ 71 . = ((. + 0x1000) & ~(0x1000 - 1)); 72 .data : 73 { 74 *(.data) 75 *(.gnu.linkonce.d*) 76 } 77 .data1 : { *(.data1) } 78 .got1 : { *(.got1) } 79 . = ALIGN(4096); 80 .got : { *(.got) } 81 .got.plt : { *(.got.plt) } 82 .init_array : 83 { 84 PROVIDE_HIDDEN (__init_array_start = .); 85 KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*))) 86 KEEP (*(.init_array)) 87 PROVIDE_HIDDEN (__init_array_end = .); 88 } 89 .fini_array : 90 { 91 PROVIDE_HIDDEN (__fini_array_start = .); 92 KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*))) 93 KEEP (*(.fini_array)) 94 PROVIDE_HIDDEN (__fini_array_end = .); 95 } 96 .dynamic : { *(.dynamic) } :kernel :dynamic 97 /* Put .ctors and .dtors next to the .got2 section, so that the pointers 98 get relocated with -mrelocatable. Also put in the .fixup pointers. 99 The current compiler no longer needs this, but keep it around for 2.7.2 */ 100 PROVIDE (_GOT2_START_ = .); 101 .got2 : { *(.got2) } 102 PROVIDE (__CTOR_LIST__ = .); 103 .ctors : { *(.ctors) } 104 PROVIDE (__CTOR_END__ = .); 105 PROVIDE (__DTOR_LIST__ = .); 106 .dtors : { *(.dtors) } 107 PROVIDE (__DTOR_END__ = .); 108 PROVIDE (_FIXUP_START_ = .); 109 .fixup : { *(.fixup) } 110 PROVIDE (_FIXUP_END_ = .); 111 PROVIDE (_GOT2_END_ = .); 112 /* We want the small data sections together, so single-instruction offsets 113 can access them all, and initialized data all before uninitialized, so 114 we can shorten the on-disk segment size. */ 115 .sdata : { *(.sdata) } :kernel 116 _edata = .; 117 PROVIDE (edata = .); 118 .sbss : 119 { 120 PROVIDE (__sbss_start = .); 121 *(.sbss) 122 *(.scommon) 123 *(.dynsbss) 124 PROVIDE (__sbss_end = .); 125 } 126 .plt : { *(.plt) } 127 .bss : 128 { 129 PROVIDE (__bss_start = .); 130 *(.dynbss) 131 *(.bss) 132 *(COMMON) 133 } 134 _end = . ; 135 PROVIDE (end = .); 136 /* Stabs debugging sections. */ 137 .stab 0 : { *(.stab) } 138 .stabstr 0 : { *(.stabstr) } 139 /* DWARF debug sections. 140 Symbols in the DWARF debugging sections are relative to the beginning 141 of the section so we begin them at 0. */ 142 /* DWARF 1 */ 143 .debug 0 : { *(.debug) } 144 .line 0 : { *(.line) } 145 /* GNU DWARF 1 extensions */ 146 .debug_srcinfo 0 : { *(.debug_srcinfo) } 147 .debug_sfnames 0 : { *(.debug_sfnames) } 148 /* DWARF 1.1 and DWARF 2 */ 149 .debug_aranges 0 : { *(.debug_aranges) } 150 .debug_pubnames 0 : { *(.debug_pubnames) } 151 /* DWARF 2 */ 152 .debug_info 0 : { *(.debug_info) } 153 .debug_abbrev 0 : { *(.debug_abbrev) } 154 .debug_line 0 : { *(.debug_line) } 155 .debug_frame 0 : { *(.debug_frame) } 156 .debug_str 0 : { *(.debug_str) } 157 .debug_loc 0 : { *(.debug_loc) } 158 .debug_macinfo 0 : { *(.debug_macinfo) } 159 /* SGI/MIPS DWARF 2 extensions */ 160 .debug_weaknames 0 : { *(.debug_weaknames) } 161 .debug_funcnames 0 : { *(.debug_funcnames) } 162 .debug_typenames 0 : { *(.debug_typenames) } 163 .debug_varnames 0 : { *(.debug_varnames) } 164 /* These must appear regardless of . */ 165} 166 167