]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/boot/mips/uboot/ldscript.mips
Re-sync loader.mk and ficl.mk to where they should be
[FreeBSD/FreeBSD.git] / sys / boot / mips / uboot / ldscript.mips
1 /* $FreeBSD$ */
2
3 OUTPUT_ARCH(mips)
4 ENTRY(_start)
5 SECTIONS
6 {
7   /* Read-only sections, merged into text segment: */
8   /*. = UBLDR_LOADADDR + SIZEOF_HEADERS;*/
9   . = UBLDR_LOADADDR;
10   .text      :
11   {
12     start.o(.text*)
13     *(EXCLUDE_FILE (start.o) .text*)
14     /* .gnu.warning sections are handled specially by elf32.em.  */
15     *(.gnu.warning)
16     *(.gnu.linkonce.t*)
17   } =0
18   _etext = .;
19   PROVIDE (etext = .);
20   .interp     : { *(.interp)    }
21   .hash          : { *(.hash)           }
22   .dynsym        : { *(.dynsym)         }
23   .dynstr        : { *(.dynstr)         }
24   .gnu.version   : { *(.gnu.version)    }
25   .gnu.version_d   : { *(.gnu.version_d)        }
26   .gnu.version_r   : { *(.gnu.version_r)        }
27   .rela.text     :
28     { *(.rela.text) *(.rela.gnu.linkonce.t*) }
29   .rela.data     :
30     { *(.rela.data) *(.rela.gnu.linkonce.d*) }
31   .rela.rodata   :
32     { *(.rela.rodata) *(.rela.gnu.linkonce.r*) }
33   .rela.got      : { *(.rela.got)               }
34   .rela.got1     : { *(.rela.got1)              }
35   .rela.got2     : { *(.rela.got2)              }
36   .rela.ctors    : { *(.rela.ctors)     }
37   .rela.dtors    : { *(.rela.dtors)     }
38   .rela.init     : { *(.rela.init)      }
39   .rela.fini     : { *(.rela.fini)      }
40   .rela.bss      : { *(.rela.bss)               }
41   .rela.plt      : { *(.rela.plt)               }
42   .rela.sdata    : { *(.rela.sdata)             }
43   .rela.sbss     : { *(.rela.sbss)              }
44   .rela.sdata2   : { *(.rela.sdata2)            }
45   .rela.sbss2    : { *(.rela.sbss2)             }
46   .init      : { *(.init)    } =0
47   .fini      : { *(.fini)    } =0
48   .rodata    : { *(.rodata) *(.gnu.linkonce.r*) }
49   .rodata1   : { *(.rodata1) }
50   .sdata2    : { *(.sdata2)  }
51   .sbss2     : { *(.sbss2)   }
52   /* Adjust the address for the data segment to the next page up. */
53   . = ((. + 0x1000) & ~(0x1000 - 1));
54   .data    :
55   {
56     *(.data)
57     *(.gnu.linkonce.d*)
58   }
59   .data1   : { *(.data1) }
60   .got1           : { *(.got1) }
61   .dynamic        : { *(.dynamic) }
62   /* Put .ctors and .dtors next to the .got2 section, so that the pointers
63      get relocated with -mrelocatable. Also put in the .fixup pointers.
64      The current compiler no longer needs this, but keep it around for 2.7.2  */
65                 PROVIDE (_GOT2_START_ = .);
66   .got2           :  { *(.got2) }
67                 PROVIDE (__CTOR_LIST__ = .);
68   .ctors          : { *(.ctors) }
69                 PROVIDE (__CTOR_END__ = .);
70                 PROVIDE (__DTOR_LIST__ = .);
71   .dtors          : { *(.dtors) }
72                 PROVIDE (__DTOR_END__ = .);
73                 PROVIDE (_FIXUP_START_ = .);
74   .fixup          : { *(.fixup) }
75                 PROVIDE (_FIXUP_END_ = .);
76                 PROVIDE (_GOT2_END_ = .);
77                 PROVIDE (_GOT_START_ = .);
78   .got            : { *(.got) }
79   .got.plt        : { *(.got.plt) }
80                 PROVIDE (_GOT_END_ = .);
81   /* We want the small data sections together, so single-instruction offsets
82      can access them all, and initialized data all before uninitialized, so
83      we can shorten the on-disk segment size.  */
84   .sdata     : { *(.sdata) }
85   _edata  =  .;
86   PROVIDE (edata = .);
87   .sbss      :
88   {
89     PROVIDE (__sbss_start = .);
90     *(.sbss)
91     *(.scommon)
92     *(.dynsbss)
93     PROVIDE (__sbss_end = .);
94   }
95   .plt   : { *(.plt) }
96   .bss       :
97   {
98    PROVIDE (__bss_start = .);
99    *(.dynbss)
100    *(.bss)
101    *(COMMON)
102   }
103   _end = . ;
104   PROVIDE (end = .);
105   /* Stabs debugging sections.  */
106   .stab 0 : { *(.stab) }
107   .stabstr 0 : { *(.stabstr) }
108   /* DWARF debug sections.
109      Symbols in the DWARF debugging sections are relative to the beginning
110      of the section so we begin them at 0.  */
111   /* DWARF 1 */
112   .debug          0 : { *(.debug) }
113   .line           0 : { *(.line) }
114   /* GNU DWARF 1 extensions */
115   .debug_srcinfo  0 : { *(.debug_srcinfo) }
116   .debug_sfnames  0 : { *(.debug_sfnames) }
117   /* DWARF 1.1 and DWARF 2 */
118   .debug_aranges  0 : { *(.debug_aranges) }
119   .debug_pubnames 0 : { *(.debug_pubnames) }
120   /* DWARF 2 */
121   .debug_info     0 : { *(.debug_info) }
122   .debug_abbrev   0 : { *(.debug_abbrev) }
123   .debug_line     0 : { *(.debug_line) }
124   .debug_frame    0 : { *(.debug_frame) }
125   .debug_str      0 : { *(.debug_str) }
126   .debug_loc      0 : { *(.debug_loc) }
127   .debug_macinfo  0 : { *(.debug_macinfo) }
128   /* SGI/MIPS DWARF 2 extensions */
129   .debug_weaknames 0 : { *(.debug_weaknames) }
130   .debug_funcnames 0 : { *(.debug_funcnames) }
131   .debug_typenames 0 : { *(.debug_typenames) }
132   .debug_varnames  0 : { *(.debug_varnames) }
133   /* These must appear regardless of  .  */
134 }