2008-12-06 23:28:57 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002
|
2011-08-04 16:45:45 +00:00
|
|
|
* Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
|
2008-12-06 23:28:57 +00:00
|
|
|
*
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2011-04-13 09:43:25 +00:00
|
|
|
#include <config.h>
|
2008-12-06 23:28:57 +00:00
|
|
|
OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
|
|
|
|
OUTPUT_ARCH(i386)
|
|
|
|
ENTRY(_start)
|
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
2010-10-18 21:43:37 +00:00
|
|
|
. = CONFIG_SYS_TEXT_BASE; /* Location of bootcode in flash */
|
2010-10-07 09:03:31 +00:00
|
|
|
__text_start = .;
|
2010-10-07 09:03:32 +00:00
|
|
|
.text : { *(.text*); }
|
2008-12-06 23:28:57 +00:00
|
|
|
|
|
|
|
. = ALIGN(4);
|
2009-11-24 09:04:21 +00:00
|
|
|
|
2012-10-12 10:27:03 +00:00
|
|
|
. = ALIGN(4);
|
|
|
|
.u_boot_list : {
|
|
|
|
#include <u-boot.lst>
|
|
|
|
}
|
|
|
|
|
2009-11-24 09:04:21 +00:00
|
|
|
. = ALIGN(4);
|
2010-10-07 09:03:32 +00:00
|
|
|
.rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
|
2009-11-24 09:04:21 +00:00
|
|
|
|
|
|
|
. = ALIGN(4);
|
2010-10-07 09:03:32 +00:00
|
|
|
.data : { *(.data*) }
|
2008-12-06 23:28:57 +00:00
|
|
|
|
2009-11-24 09:04:21 +00:00
|
|
|
. = ALIGN(4);
|
2010-10-07 09:03:32 +00:00
|
|
|
.dynsym : { *(.dynsym*) }
|
2009-11-24 09:04:21 +00:00
|
|
|
|
|
|
|
. = ALIGN(4);
|
2010-10-07 09:03:32 +00:00
|
|
|
.hash : { *(.hash*) }
|
2008-12-06 23:28:57 +00:00
|
|
|
|
|
|
|
. = ALIGN(4);
|
2010-10-07 09:03:32 +00:00
|
|
|
.got : { *(.got*) }
|
2008-12-06 23:28:57 +00:00
|
|
|
|
|
|
|
. = ALIGN(4);
|
2010-10-07 09:03:32 +00:00
|
|
|
__data_end = .;
|
2009-11-24 09:04:21 +00:00
|
|
|
|
|
|
|
. = ALIGN(4);
|
2010-10-07 09:03:32 +00:00
|
|
|
__bss_start = ABSOLUTE(.);
|
|
|
|
.bss (NOLOAD) : { *(.bss) }
|
2010-10-07 09:03:33 +00:00
|
|
|
. = ALIGN(4);
|
|
|
|
__bss_end = ABSOLUTE(.);
|
2009-11-24 09:04:21 +00:00
|
|
|
|
|
|
|
. = ALIGN(4);
|
2010-10-07 09:03:31 +00:00
|
|
|
__rel_dyn_start = .;
|
2009-11-24 09:04:21 +00:00
|
|
|
.rel.dyn : { *(.rel.dyn) }
|
2010-10-07 09:03:31 +00:00
|
|
|
__rel_dyn_end = .;
|
2008-12-06 23:28:57 +00:00
|
|
|
|
2010-10-07 09:03:32 +00:00
|
|
|
/DISCARD/ : { *(.dynstr*) }
|
|
|
|
/DISCARD/ : { *(.dynamic*) }
|
|
|
|
/DISCARD/ : { *(.plt*) }
|
|
|
|
/DISCARD/ : { *(.interp*) }
|
|
|
|
/DISCARD/ : { *(.gnu*) }
|
2008-12-06 23:28:57 +00:00
|
|
|
|
|
|
|
/* 16bit realmode trampoline code */
|
2011-02-12 04:11:24 +00:00
|
|
|
.realmode REALMODE_BASE : AT ( LOADADDR(.rel.dyn) + SIZEOF(.rel.dyn) ) { KEEP(*(.realmode)) }
|
2008-12-06 23:28:57 +00:00
|
|
|
|
2010-10-07 09:03:31 +00:00
|
|
|
__realmode_start = LOADADDR(.realmode);
|
|
|
|
__realmode_size = SIZEOF(.realmode);
|
2008-12-06 23:28:57 +00:00
|
|
|
|
|
|
|
/* 16bit BIOS emulation code (just enough to boot Linux) */
|
2010-10-07 09:03:20 +00:00
|
|
|
.bios 0 : AT ( LOADADDR(.realmode) + SIZEOF(.realmode) ) { KEEP(*(.bios)) }
|
2008-12-06 23:28:57 +00:00
|
|
|
|
2010-10-07 09:03:31 +00:00
|
|
|
__bios_start = LOADADDR(.bios);
|
|
|
|
__bios_size = SIZEOF(.bios);
|
2008-12-06 23:28:57 +00:00
|
|
|
|
2011-02-12 04:11:24 +00:00
|
|
|
/*
|
|
|
|
* The following expressions place the 16-bit Real-Mode code and
|
|
|
|
* Reset Vector at the end of the Flash ROM
|
2008-12-06 23:28:57 +00:00
|
|
|
*/
|
2011-02-12 04:11:24 +00:00
|
|
|
. = START_16;
|
2011-04-13 09:43:25 +00:00
|
|
|
.start16 : AT (CONFIG_SYS_TEXT_BASE + (CONFIG_SYS_MONITOR_LEN - RESET_SEG_SIZE + START_16)) { KEEP(*(.start16)); }
|
2008-12-06 23:28:57 +00:00
|
|
|
|
2011-02-12 04:11:24 +00:00
|
|
|
. = RESET_VEC_LOC;
|
2011-04-13 09:43:25 +00:00
|
|
|
.resetvec : AT (CONFIG_SYS_TEXT_BASE + (CONFIG_SYS_MONITOR_LEN - RESET_SEG_SIZE + RESET_VEC_LOC)) { KEEP(*(.resetvec)); }
|
2008-12-06 23:28:57 +00:00
|
|
|
}
|