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
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2008-12-06 23:28:57 +00:00
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
{
|
2016-03-14 01:07:29 +00:00
|
|
|
#ifndef CONFIG_CMDLINE
|
|
|
|
/DISCARD/ : { *(.u_boot_list_2_cmd_*) }
|
|
|
|
#endif
|
|
|
|
|
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 = .;
|
2014-11-15 01:18:24 +00:00
|
|
|
.rel.dyn : {
|
|
|
|
*(.rel*)
|
|
|
|
}
|
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
|
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
|
|
|
*/
|
2014-11-15 01:18:25 +00:00
|
|
|
. = START_16 - RESET_SEG_START;
|
|
|
|
.start16 : AT (START_16) {
|
|
|
|
KEEP(*(.start16));
|
|
|
|
}
|
2008-12-06 23:28:57 +00:00
|
|
|
|
2014-11-15 01:18:25 +00:00
|
|
|
. = RESET_VEC_LOC - RESET_SEG_START;
|
|
|
|
.resetvec : AT (RESET_VEC_LOC) {
|
|
|
|
KEEP(*(.resetvec));
|
|
|
|
}
|
2012-11-27 21:08:06 +00:00
|
|
|
#endif
|
2014-11-15 01:18:25 +00:00
|
|
|
|
2008-12-06 23:28:57 +00:00
|
|
|
}
|