2 OUTPUT_FORMAT("${OUTPUT_FORMAT}","${OUTPUT_FORMAT}","${OUTPUT_FORMAT}")
7 text (rx) : ORIGIN = 0, LENGTH = $TEXT_LENGTH
8 data (rw!x) : ORIGIN = $DATA_ORIGIN, LENGTH = $DATA_LENGTH
9 eeprom (rw!x) : ORIGIN = 0x810000, LENGTH = 64K
10 fuse (rw!x) : ORIGIN = 0x820000, LENGTH = 1K
11 lock (rw!x) : ORIGIN = 0x830000, LENGTH = 1K
12 signature (rw!x) : ORIGIN = 0x840000, LENGTH = 1K
17 /* Read-only sections, merged into text segment: */
18 ${TEXT_DYNAMIC+${DYNAMIC}}
19 .hash ${RELOCATING-0} : { *(.hash) }
20 .dynsym ${RELOCATING-0} : { *(.dynsym) }
21 .dynstr ${RELOCATING-0} : { *(.dynstr) }
22 .gnu.version ${RELOCATING-0} : { *(.gnu.version) }
23 .gnu.version_d ${RELOCATING-0} : { *(.gnu.version_d) }
24 .gnu.version_r ${RELOCATING-0} : { *(.gnu.version_r) }
26 .rel.init ${RELOCATING-0} : { *(.rel.init) }
27 .rela.init ${RELOCATING-0} : { *(.rela.init) }
28 .rel.text ${RELOCATING-0} :
31 ${RELOCATING+*(.rel.text.*)}
32 ${RELOCATING+*(.rel.gnu.linkonce.t*)}
34 .rela.text ${RELOCATING-0} :
37 ${RELOCATING+*(.rela.text.*)}
38 ${RELOCATING+*(.rela.gnu.linkonce.t*)}
40 .rel.fini ${RELOCATING-0} : { *(.rel.fini) }
41 .rela.fini ${RELOCATING-0} : { *(.rela.fini) }
42 .rel.rodata ${RELOCATING-0} :
45 ${RELOCATING+*(.rel.rodata.*)}
46 ${RELOCATING+*(.rel.gnu.linkonce.r*)}
48 .rela.rodata ${RELOCATING-0} :
51 ${RELOCATING+*(.rela.rodata.*)}
52 ${RELOCATING+*(.rela.gnu.linkonce.r*)}
54 .rel.data ${RELOCATING-0} :
57 ${RELOCATING+*(.rel.data.*)}
58 ${RELOCATING+*(.rel.gnu.linkonce.d*)}
60 .rela.data ${RELOCATING-0} :
63 ${RELOCATING+*(.rela.data.*)}
64 ${RELOCATING+*(.rela.gnu.linkonce.d*)}
66 .rel.ctors ${RELOCATING-0} : { *(.rel.ctors) }
67 .rela.ctors ${RELOCATING-0} : { *(.rela.ctors) }
68 .rel.dtors ${RELOCATING-0} : { *(.rel.dtors) }
69 .rela.dtors ${RELOCATING-0} : { *(.rela.dtors) }
70 .rel.got ${RELOCATING-0} : { *(.rel.got) }
71 .rela.got ${RELOCATING-0} : { *(.rela.got) }
72 .rel.bss ${RELOCATING-0} : { *(.rel.bss) }
73 .rela.bss ${RELOCATING-0} : { *(.rela.bss) }
74 .rel.plt ${RELOCATING-0} : { *(.rel.plt) }
75 .rela.plt ${RELOCATING-0} : { *(.rela.plt) }
77 /* Internal text space or external memory. */
78 .text ${RELOCATING-0} :
83 /* For data that needs to reside in the lower 64k of progmem. */
86 ${RELOCATING+. = ALIGN(2);}
88 ${CONSTRUCTING+ __trampolines_start = . ; }
89 /* The jump trampolines for the 16-bit limited relocs will reside here. */
92 ${CONSTRUCTING+ __trampolines_end = . ; }
94 /* For future tablejump instruction arrays for 3 byte pc devices.
95 We don't relax jump/call instructions within these sections. */
99 /* For code that needs to reside in the lower 128k progmem. */
103 ${CONSTRUCTING+ __ctors_start = . ; }
104 ${CONSTRUCTING+ *(.ctors) }
105 ${CONSTRUCTING+ __ctors_end = . ; }
106 ${CONSTRUCTING+ __dtors_start = . ; }
107 ${CONSTRUCTING+ *(.dtors) }
108 ${CONSTRUCTING+ __dtors_end = . ; }
109 KEEP(SORT(*)(.ctors))
110 KEEP(SORT(*)(.dtors))
112 /* From this point on, we don't bother about wether the insns are
113 below or above the 16 bits boundary. */
114 *(.init0) /* Start here after reset. */
118 *(.init2) /* Clear __zero_reg__, set up stack pointer. */
122 *(.init4) /* Initialize data and BSS. */
126 *(.init6) /* C++ constructors. */
132 *(.init9) /* Call main(). */
135 ${RELOCATING+. = ALIGN(2);}
137 ${RELOCATING+. = ALIGN(2);}
138 *(.fini9) /* _exit() starts here. */
144 *(.fini6) /* C++ destructors. */
156 *(.fini0) /* Infinite loop after program termination. */
158 ${RELOCATING+ _etext = . ; }
159 } ${RELOCATING+ > text}
161 .data ${RELOCATING-0} : ${RELOCATING+AT (ADDR (.text) + SIZEOF (.text))}
163 ${RELOCATING+ PROVIDE (__data_start = .) ; }
166 *(.rodata) /* We need to include .rodata here if gcc is used */
167 *(.rodata*) /* with -fdata-sections. */
169 ${RELOCATING+. = ALIGN(2);}
170 ${RELOCATING+ _edata = . ; }
171 ${RELOCATING+ PROVIDE (__data_end = .) ; }
172 } ${RELOCATING+ > data}
174 .bss ${RELOCATING-0} :${RELOCATING+ AT (ADDR (.bss))}
176 ${RELOCATING+ PROVIDE (__bss_start = .) ; }
180 ${RELOCATING+ PROVIDE (__bss_end = .) ; }
181 } ${RELOCATING+ > data}
183 ${RELOCATING+ __data_load_start = LOADADDR(.data); }
184 ${RELOCATING+ __data_load_end = __data_load_start + SIZEOF(.data); }
186 /* Global data not cleared after reset. */
187 .noinit ${RELOCATING-0}:
189 ${RELOCATING+ PROVIDE (__noinit_start = .) ; }
191 ${RELOCATING+ PROVIDE (__noinit_end = .) ; }
192 ${RELOCATING+ _end = . ; }
193 ${RELOCATING+ PROVIDE (__heap_start = .) ; }
194 } ${RELOCATING+ > data}
196 .eeprom ${RELOCATING-0}:
199 ${RELOCATING+ __eeprom_end = . ; }
200 } ${RELOCATING+ > eeprom}
202 .fuse ${RELOCATING-0}:
208 } ${RELOCATING+ > fuse}
210 .lock ${RELOCATING-0}:
213 } ${RELOCATING+ > lock}
215 .signature ${RELOCATING-0}:
218 } ${RELOCATING+ > signature}
220 /* Stabs debugging sections. */
221 .stab 0 : { *(.stab) }
222 .stabstr 0 : { *(.stabstr) }
223 .stab.excl 0 : { *(.stab.excl) }
224 .stab.exclstr 0 : { *(.stab.exclstr) }
225 .stab.index 0 : { *(.stab.index) }
226 .stab.indexstr 0 : { *(.stab.indexstr) }
227 .comment 0 : { *(.comment) }
229 /* DWARF debug sections.
230 Symbols in the DWARF debugging sections are relative to the beginning
231 of the section so we begin them at 0. */
234 .debug 0 : { *(.debug) }
235 .line 0 : { *(.line) }
237 /* GNU DWARF 1 extensions */
238 .debug_srcinfo 0 : { *(.debug_srcinfo) }
239 .debug_sfnames 0 : { *(.debug_sfnames) }
241 /* DWARF 1.1 and DWARF 2 */
242 .debug_aranges 0 : { *(.debug_aranges) }
243 .debug_pubnames 0 : { *(.debug_pubnames) }
246 .debug_info 0 : { *(.debug_info) *(.gnu.linkonce.wi.*) }
247 .debug_abbrev 0 : { *(.debug_abbrev) }
248 .debug_line 0 : { *(.debug_line) }
249 .debug_frame 0 : { *(.debug_frame) }
250 .debug_str 0 : { *(.debug_str) }
251 .debug_loc 0 : { *(.debug_loc) }
252 .debug_macinfo 0 : { *(.debug_macinfo) }