3 * Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
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-i386", "elf32-i386", "elf32-i386")
31 . = CONFIG_SYS_TEXT_BASE; /* Location of bootcode in flash */
33 .text : { *(.text*); }
36 __u_boot_cmd_start = .;
37 .u_boot_cmd : { *(.u_boot_cmd) }
42 .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
48 .dynsym : { *(.dynsym*) }
60 __bss_start = ABSOLUTE(.);
61 .bss (NOLOAD) : { *(.bss) }
63 __bss_end = ABSOLUTE(.);
67 .rel.dyn : { *(.rel.dyn) }
70 /DISCARD/ : { *(.dynstr*) }
71 /DISCARD/ : { *(.dynamic*) }
72 /DISCARD/ : { *(.plt*) }
73 /DISCARD/ : { *(.interp*) }
74 /DISCARD/ : { *(.gnu*) }
76 /* 16bit realmode trampoline code */
77 .realmode REALMODE_BASE : AT ( LOADADDR(.rel.dyn) + SIZEOF(.rel.dyn) ) { KEEP(*(.realmode)) }
79 __realmode_start = LOADADDR(.realmode);
80 __realmode_size = SIZEOF(.realmode);
82 /* 16bit BIOS emulation code (just enough to boot Linux) */
83 .bios 0 : AT ( LOADADDR(.realmode) + SIZEOF(.realmode) ) { KEEP(*(.bios)) }
85 __bios_start = LOADADDR(.bios);
86 __bios_size = SIZEOF(.bios);
89 * The following expressions place the 16-bit Real-Mode code and
90 * Reset Vector at the end of the Flash ROM
93 .start16 : AT (CONFIG_SYS_TEXT_BASE + (CONFIG_SYS_MONITOR_LEN - RESET_SEG_SIZE + START_16)) { KEEP(*(.start16)); }
96 .resetvec : AT (CONFIG_SYS_TEXT_BASE + (CONFIG_SYS_MONITOR_LEN - RESET_SEG_SIZE + RESET_VEC_LOC)) { KEEP(*(.resetvec)); }