1 /* The following TEXT start address leaves space for the monitor
6 OUTPUT_FORMAT("elf32-bigmips", "elf32-bigmips", "elf32-littlemips")
12 * Allocate the stack to be at the top of memory, since the stack
15 PROVIDE (__stack = 0);
16 /* PROVIDE (__global = 0); */
19 * Initalize some symbols to be zero so we can reference them in the
20 * crt0 without core dumping. These functions are all optional, but
21 * we do this so we can have our crt0 always use them if they exist.
22 * This is so BSPs work better when using the crt0 installed with gcc.
23 * We have to initalize them twice, so we multiple object file
24 * formats, as some prepend an underscore.
26 PROVIDE (hardware_exit_hook = 0);
27 PROVIDE (hardware_hazard_hook = 0);
28 PROVIDE (hardware_init_hook = 0);
29 PROVIDE (software_init_hook = 0);
50 PROVIDE (__runtime_reloc_start = .);
52 PROVIDE (__runtime_reloc_stop = .);
57 .eh_frame_hdr : { *(.eh_frame_hdr) }
60 /* The .eh_frame section from the crtend file contains the
61 end of eh_frame marker and it must be last. */
62 KEEP (*(EXCLUDE_FILE (*crtend.o) .eh_frame))
65 .gcc_except_table : { *(.gcc_except_table) }
66 .jcr : { KEEP (*(.jcr)) }
69 /* gcc uses crtbegin.o to find the start of
70 the constructors, so we make sure it is
71 first. Because this is a wildcard, it
72 doesn't matter if the user does not
73 actually link against crtbegin.o; the
74 linker won't look for a file to match a
75 wildcard. The wildcard also means that it
76 doesn't matter which directory crtbegin.o
79 KEEP (*crtbegin.o(.ctors))
81 /* We don't want to include the .ctor section from
82 from the crtend.o file until after the sorted ctors.
83 The .ctor section from the crtend file contains the
84 end of ctors marker and it must be last */
86 KEEP (*(EXCLUDE_FILE (*crtend.o) .ctors))
87 KEEP (*(SORT(.ctors.*)))
93 KEEP (*crtbegin.o(.dtors))
94 KEEP (*(EXCLUDE_FILE (*crtend.o) .dtors))
95 KEEP (*(SORT(.dtors.*)))
134 *(.gnu.linkonce.sb.*)
149 /* DWARF debug sections.
150 Symbols in the DWARF debugging sections are relative to
151 the beginning of the section so we begin them at 0. */
154 .debug 0 : { *(.debug) }
155 .line 0 : { *(.line) }
157 /* GNU DWARF 1 extensions */
158 .debug_srcinfo 0 : { *(.debug_srcinfo) }
159 .debug_sfnames 0 : { *(.debug_sfnames) }
161 /* DWARF 1.1 and DWARF 2 */
162 .debug_aranges 0 : { *(.debug_aranges) }
163 .debug_pubnames 0 : { *(.debug_pubnames) }
166 .debug_info 0 : { *(.debug_info) }
167 .debug_abbrev 0 : { *(.debug_abbrev) }
168 .debug_line 0 : { *(.debug_line) }
169 .debug_frame 0 : { *(.debug_frame) }
170 .debug_str 0 : { *(.debug_str) }
171 .debug_loc 0 : { *(.debug_loc) }
172 .debug_macinfo 0 : { *(.debug_macinfo) }
173 .debug_ranges 0 : { *(.debug_ranges) }
175 /* SGI/MIPS DWARF 2 extensions */
176 .debug_weaknames 0 : { *(.debug_weaknames) }
177 .debug_funcnames 0 : { *(.debug_funcnames) }
178 .debug_typenames 0 : { *(.debug_typenames) }
179 .debug_varnames 0 : { *(.debug_varnames) }