2 * (C) Copyright 2004, Psyent Corporation <www.psyent.com>
3 * Scott McNutt <smcnutt@psyent.com>
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 OUTPUT_FORMAT("elf32-littlenios2")
44 /* INIT DATA sections - "Small" data (see the gcc -G option)
45 * is always gp-relative. Here we make all init data sections
46 * adjacent to simplify the startup code -- and provide
47 * the global pointer for gp-relative access.
58 _gp = .; /* Global pointer addr */
72 /* UNINIT DATA - Small uninitialized data is first so it's
73 * adjacent to sdata and can be referenced via gp. The normal
74 * bss follows. We keep it adjacent to simplify init code.
97 /* CMD TABLE - uboot command sections
100 __uboot_cmd_start = .;
106 __u_boot_cmd_end = .;
108 /* DEBUG -- symbol table, string table, etc. etc.
110 .stab 0 : { *(.stab) }
111 .stabstr 0 : { *(.stabstr) }
112 .stab.excl 0 : { *(.stab.excl) }
113 .stab.exclstr 0 : { *(.stab.exclstr) }
114 .stab.index 0 : { *(.stab.index) }
115 .stab.indexstr 0 : { *(.stab.indexstr) }
116 .comment 0 : { *(.comment) }
117 .debug 0 : { *(.debug) }
118 .line 0 : { *(.line) }
119 .debug_srcinfo 0 : { *(.debug_srcinfo) }
120 .debug_sfnames 0 : { *(.debug_sfnames) }
121 .debug_aranges 0 : { *(.debug_aranges) }
122 .debug_pubnames 0 : { *(.debug_pubnames) }
123 .debug_info 0 : { *(.debug_info) }
124 .debug_abbrev 0 : { *(.debug_abbrev) }
125 .debug_line 0 : { *(.debug_line) }
126 .debug_frame 0 : { *(.debug_frame) }
127 .debug_str 0 : { *(.debug_str) }
128 .debug_loc 0 : { *(.debug_loc) }
129 .debug_macinfo 0 : { *(.debug_macinfo) }
130 .debug_weaknames 0 : { *(.debug_weaknames) }
131 .debug_funcnames 0 : { *(.debug_funcnames) }
132 .debug_typenames 0 : { *(.debug_typenames) }
133 .debug_varnames 0 : { *(.debug_varnames) }