]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/conf/ldscript.powerpc
zfs: merge openzfs/zfs@a4bf6baae
[FreeBSD/FreeBSD.git] / sys / conf / ldscript.powerpc
1
2 OUTPUT_FORMAT("elf32-powerpc-freebsd", "elf32-powerpc-freebsd",
3               "elf32-powerpc-freebsd")
4 OUTPUT_ARCH(powerpc)
5 ENTRY(__start)
6 SEARCH_DIR(/usr/lib);
7 PROVIDE (__stack = 0);
8 PHDRS
9 {
10         kernel PT_LOAD;
11         dynamic PT_DYNAMIC;
12 }
13 SECTIONS
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
83
84   .dynamic        : { *(.dynamic) } :kernel :dynamic
85   /* Put .ctors and .dtors next to the .got2 section, so that the pointers
86      get relocated with -mrelocatable. Also put in the .fixup pointers.
87      The current compiler no longer needs this, but keep it around for 2.7.2  */
88                 PROVIDE (_GOT2_START_ = .);
89   .got2           :  { *(.got2) }
90                 PROVIDE (__CTOR_LIST__ = .);
91   .ctors          : { *(.ctors) }
92                 PROVIDE (__CTOR_END__ = .);
93                 PROVIDE (__DTOR_LIST__ = .);
94   .dtors          : { *(.dtors) }
95                 PROVIDE (__DTOR_END__ = .);
96                 PROVIDE (_FIXUP_START_ = .);
97   .fixup          : { *(.fixup) }
98                 PROVIDE (_FIXUP_END_ = .);
99                 PROVIDE (_GOT2_END_ = .);
100   /* We want the small data sections together, so single-instruction offsets
101      can access them all, and initialized data all before uninitialized, so
102      we can shorten the on-disk segment size.  */
103   .sdata     : { *(.sdata) } :kernel
104   _edata  =  .;
105   PROVIDE (edata = .);
106   .sbss      :
107   {
108     PROVIDE (__sbss_start = .);
109     *(.sbss)
110     *(.scommon)
111     *(.dynsbss)
112     PROVIDE (__sbss_end = .);
113   }
114   .plt   : { *(.plt) }
115   .bss       :
116   {
117    PROVIDE (__bss_start = .);
118    *(.dynbss)
119    *(.bss)
120    *(COMMON)
121   }
122   _end = . ;
123   PROVIDE (end = .);
124   /* Stabs debugging sections.  */
125   .stab 0 : { *(.stab) }
126   .stabstr 0 : { *(.stabstr) }
127   /* DWARF debug sections.
128      Symbols in the DWARF debugging sections are relative to the beginning
129      of the section so we begin them at 0.  */
130   /* DWARF 1 */
131   .debug          0 : { *(.debug) }
132   .line           0 : { *(.line) }
133   /* GNU DWARF 1 extensions */
134   .debug_srcinfo  0 : { *(.debug_srcinfo) }
135   .debug_sfnames  0 : { *(.debug_sfnames) }
136   /* DWARF 1.1 and DWARF 2 */
137   .debug_aranges  0 : { *(.debug_aranges) }
138   .debug_pubnames 0 : { *(.debug_pubnames) }
139   /* DWARF 2 */
140   .debug_info     0 : { *(.debug_info) }
141   .debug_abbrev   0 : { *(.debug_abbrev) }
142   .debug_line     0 : { *(.debug_line) }
143   .debug_frame    0 : { *(.debug_frame) }
144   .debug_str      0 : { *(.debug_str) }
145   .debug_loc      0 : { *(.debug_loc) }
146   .debug_macinfo  0 : { *(.debug_macinfo) }
147   /* SGI/MIPS DWARF 2 extensions */
148   .debug_weaknames 0 : { *(.debug_weaknames) }
149   .debug_funcnames 0 : { *(.debug_funcnames) }
150   .debug_typenames 0 : { *(.debug_typenames) }
151   .debug_varnames  0 : { *(.debug_varnames) }
152   /* These must appear regardless of  .  */
153 }
154