upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
865 B
77 lines
865 B
#include <config.h>
|
|
OUTPUT_ARCH(or1k)
|
|
__DYNAMIC = 0;
|
|
|
|
MEMORY
|
|
{
|
|
vectors : ORIGIN = 0, LENGTH = 0x2000
|
|
ram : ORIGIN = CONFIG_SYS_MONITOR_BASE,
|
|
LENGTH = CONFIG_SYS_MONITOR_LEN
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.vectors :
|
|
{
|
|
*(.vectors)
|
|
} > vectors
|
|
|
|
__start = .;
|
|
.text : AT (__start) {
|
|
_stext = .;
|
|
*(.text)
|
|
_etext = .;
|
|
*(.lit)
|
|
*(.shdata)
|
|
_endtext = .;
|
|
} > ram
|
|
|
|
|
|
. = ALIGN(4);
|
|
.u_boot_list : {
|
|
KEEP(*(SORT(.u_boot_list*)));
|
|
} > ram
|
|
|
|
.rodata : {
|
|
*(.rodata);
|
|
*(.rodata.*)
|
|
} > ram
|
|
|
|
.shbss :
|
|
{
|
|
*(.shbss)
|
|
} > ram
|
|
|
|
.talias :
|
|
{
|
|
} > ram
|
|
|
|
.data : {
|
|
sdata = .;
|
|
_sdata = .;
|
|
*(.data)
|
|
edata = .;
|
|
_edata = .;
|
|
} > ram
|
|
|
|
.bss :
|
|
{
|
|
_bss_start = .;
|
|
*(.bss)
|
|
*(COMMON)
|
|
_bss_end = .;
|
|
} > ram
|
|
__end = .;
|
|
|
|
/* No stack specification - done manually */
|
|
|
|
.stab 0 (NOLOAD) :
|
|
{
|
|
[ .stab ]
|
|
}
|
|
|
|
.stabstr 0 (NOLOAD) :
|
|
{
|
|
[ .stabstr ]
|
|
}
|
|
}
|
|
|