ldscript.arm revision 329183
1/* $FreeBSD: stable/11/stand/arm/uboot/ldscript.arm 329183 2018-02-12 20:51:28Z kevans $ */
2
3OUTPUT_ARCH(arm)
4ENTRY(_start)
5SECTIONS
6{
7  /* Read-only sections, merged into text segment: */
8  . = UBLDR_LOADADDR + SIZEOF_HEADERS;
9  . = ALIGN(8);
10  .text      :
11  {
12    *(.text)
13    /* .gnu.warning sections are handled specially by elf32.em.  */
14    *(.gnu.warning)
15    *(.gnu.linkonce.t*)
16  } =0
17  _etext = .;
18  PROVIDE (etext = .);
19  .interp     : { *(.interp) 	}
20  .hash          : { *(.hash)		}
21  .dynsym        : { *(.dynsym)		}
22  .dynstr        : { *(.dynstr)		}
23  .gnu.version   : { *(.gnu.version)	}
24  .gnu.version_d   : { *(.gnu.version_d)	}
25  .gnu.version_r   : { *(.gnu.version_r)	}
26  .rela.text     :
27    { *(.rela.text) *(.rela.gnu.linkonce.t*) }
28  .rela.data     :
29    { *(.rela.data) *(.rela.gnu.linkonce.d*) }
30  .rela.rodata   :
31    { *(.rela.rodata) *(.rela.gnu.linkonce.r*) }
32  .rela.got      : { *(.rela.got)		}
33  .rela.got1     : { *(.rela.got1)		}
34  .rela.got2     : { *(.rela.got2)		}
35  .dynamic        : { *(.dynamic) }
36                PROVIDE (_GOT_START_ = .);
37  .got            : { *(.got) }
38  .got.plt        : { *(.got.plt) }
39                PROVIDE (_GOT_END_ = .);
40  .rela.ctors    : { *(.rela.ctors)	}
41  .rela.dtors    : { *(.rela.dtors)	}
42  .rela.init     : { *(.rela.init)	}
43  .rela.fini     : { *(.rela.fini)	}
44  .rela.bss      : { *(.rela.bss)		}
45  .rela.plt      : { *(.rela.plt)		}
46  .rela.sdata    : { *(.rela.sdata)		}
47  .rela.sbss     : { *(.rela.sbss)		}
48  .rela.sdata2   : { *(.rela.sdata2)		}
49  .rela.sbss2    : { *(.rela.sbss2)		}
50  .init      : { *(.init)    } =0
51  .fini      : { *(.fini)    } =0
52  .rodata    : { *(.rodata) *(.gnu.linkonce.r*) }
53  .rodata1   : { *(.rodata1) }
54  .sdata2    : { *(.sdata2)  }
55  .sbss2     : { *(.sbss2)   }
56  /* Adjust the address for the data segment to the doubleword boundary. */
57  . = ALIGN(8);
58  .data    :
59  {
60    *(.data)
61    *(.gnu.linkonce.d*)
62    CONSTRUCTORS
63  }
64  .data1   : { *(.data1) }
65  .got1           : { *(.got1) }
66  /* Put .ctors and .dtors next to the .got2 section, so that the pointers
67     get relocated with -mrelocatable. Also put in the .fixup pointers.
68     The current compiler no longer needs this, but keep it around for 2.7.2  */
69                PROVIDE (_GOT2_START_ = .);
70  .got2           :  { *(.got2) }
71                PROVIDE (__CTOR_LIST__ = .);
72  .ctors          : { *(.ctors) }
73                PROVIDE (__CTOR_END__ = .);
74                PROVIDE (__DTOR_LIST__ = .);
75  .dtors          : { *(.dtors) }
76                PROVIDE (__DTOR_END__ = .);
77                PROVIDE (_FIXUP_START_ = .);
78  .fixup          : { *(.fixup) }
79                PROVIDE (_FIXUP_END_ = .);
80                PROVIDE (_GOT2_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}
135