xref: /freebsd/sys/conf/ldscript.arm (revision 2668e76d6e764c5c361156ffa3d39eb02ce8e5d9)
1OUTPUT_ARCH(arm)
2ENTRY(_start)
3
4SEARCH_DIR(/usr/lib);
5SECTIONS
6{
7  /* Read-only sections, merged into text segment: */
8  . = text_start; /* This is set using --defsym= on the command line. */
9  .text      :
10  {
11    *(.text)
12    *(.stub)
13    /* .gnu.warning sections are handled specially by elf32.em.  */
14    *(.gnu.warning)
15    *(.gnu.linkonce.t*)
16  } =0x9090
17  _etext = .;
18  PROVIDE (etext = .);
19  .fini      : { *(.fini)    } =0x9090
20  .rodata    : { *(.rodata) *(.gnu.linkonce.r*) }
21  .rodata1   : { *(.rodata1) }
22   .interp     : { *(.interp) 	}
23  .hash          : { *(.hash)		}
24  .dynsym        : { *(.dynsym)		}
25  .dynstr        : { *(.dynstr)		}
26  .gnu.version   : { *(.gnu.version)	}
27  .gnu.version_d   : { *(.gnu.version_d)	}
28  .gnu.version_r   : { *(.gnu.version_r)	}
29  .note.gnu.build-id : {
30    PROVIDE (__build_id_start = .);
31    *(.note.gnu.build-id)
32    PROVIDE (__build_id_end = .);
33  }
34  .rel.text      :
35    { *(.rel.text) *(.rel.gnu.linkonce.t*) }
36  .rela.text     :
37    { *(.rela.text) *(.rela.gnu.linkonce.t*) }
38  .rel.data      :
39    { *(.rel.data) *(.rel.gnu.linkonce.d*) }
40  .rela.data     :
41    { *(.rela.data) *(.rela.gnu.linkonce.d*) }
42  .rel.rodata    :
43    { *(.rel.rodata) *(.rel.gnu.linkonce.r*) }
44  .rela.rodata   :
45    { *(.rela.rodata) *(.rela.gnu.linkonce.r*) }
46  .rel.got       : { *(.rel.got)		}
47  .rela.got      : { *(.rela.got)		}
48  .rel.ctors     : { *(.rel.ctors)	}
49  .rela.ctors    : { *(.rela.ctors)	}
50  .rel.dtors     : { *(.rel.dtors)	}
51  .rela.dtors    : { *(.rela.dtors)	}
52  .rel.init      : { *(.rel.init)	}
53  .rela.init     : { *(.rela.init)	}
54  .rel.fini      : { *(.rel.fini)	}
55  .rela.fini     : { *(.rela.fini)	}
56  .rel.bss       : { *(.rel.bss)		}
57  .rela.bss      : { *(.rela.bss)		}
58  .rel.plt       : { *(.rel.plt)		}
59  .rela.plt      : { *(.rela.plt)		}
60  .init          : { *(.init)	} =0x9090
61  .plt      : { *(.plt)	}
62
63  . = ALIGN(4);
64  _extab_start = .;
65  PROVIDE(extab_start = .);
66  .ARM.extab : { *(.ARM.extab) }
67  _extab.end = .;
68  PROVIDE(extab_end = .);
69
70  _exidx_start = .;
71  PROVIDE(exidx_start = .);
72  .ARM.exidx : { *(.ARM.exidx) }
73  _exidx_end = .;
74  PROVIDE(exidx_end = .);
75
76  /* Adjust the address for the data segment.  We want to adjust up to
77     the same address within the page on the next page up.  */
78  . = ALIGN(0x1000) + (. & (0x1000 - 1)) ;
79  .data    :
80  {
81    *(.data)
82    *(.gnu.linkonce.d*)
83  }
84  .data1   : { *(.data1) }
85  . = ALIGN(32 / 8);
86  _start_ctors = .;
87  PROVIDE (start_ctors = .);
88  .ctors         :
89  {
90    *(.ctors)
91  }
92  _stop_ctors = .;
93  PROVIDE (stop_ctors = .);
94  .dtors         :
95  {
96    *(.dtors)
97  }
98  .got           : { *(.got.plt) *(.got) }
99  .dynamic       : { *(.dynamic) }
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) }
104  _edata  =  .;
105  PROVIDE (edata = .);
106  __bss_start = .;
107  .sbss      : { *(.sbss) *(.scommon) }
108  .bss       :
109  {
110   *(.dynbss)
111   *(.bss)
112   *(COMMON)
113   . = ALIGN(32 / 8);
114   _ebss = .;
115   /* A section for the initial page table, it doesn't need to be in the
116      kernel file, however unlike normal .bss entries should not be zeroed
117      out as we use it before the .bss section is cleared. */
118   *(.init_pagetable)
119  }
120  . = ALIGN(32 / 8);
121  _end = . ;
122  PROVIDE (end = .);
123
124  /* Debug */
125  INCLUDE debuginfo.ldscript
126
127  .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
128  /DISCARD/ : { *(.note.GNU-stack) }
129}
130