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 : {
|
2013-02-25 00:59:00 +00:00
|
|
|
KEEP(*(SORT(.u_boot_list*)));
|
2012-10-12 10:27:03 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
.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 = .;
|
2013-03-05 14:39:54 +00:00
|
|
|
__init_end = .;
|
2009-11-24 09:04:21 +00:00
|
|
|
|
|
|
|
. = ALIGN(4);
|
2013-02-28 19:26:14 +00:00
|
|
|
.dynsym : { *(.dynsym*) }
|
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 = .;
|
2013-02-28 19:26:13 +00:00
|
|
|
. = ALIGN(4);
|
|
|
|
_end = .;
|
2008-12-06 23:28:57 +00:00
|
|
|
|
2013-02-28 19:26:14 +00:00
|
|
|
.bss __rel_dyn_start (OVERLAY) : {
|
|
|
|
__bss_start = .;
|
|
|
|
*(.bss)
|
|
|
|
*(COM*)
|
|
|
|
. = ALIGN(4);
|
|
|
|
__bss_end = .;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2013-02-14 04:18:54 +00:00
|
|
|
#ifdef CONFIG_X86_RESET_VECTOR
|
2012-11-27 21:08:06 +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)); }
|
2012-11-27 21:08:06 +00:00
|
|
|
#endif
|
2008-12-06 23:28:57 +00:00
|
|
|
}
|