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.
50 lines
688 B
50 lines
688 B
/*
|
|
* (C) Copyright 2008
|
|
* Stefan Roese, DENX Software Engineering, sr@denx.de.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
OUTPUT_ARCH(powerpc:common)
|
|
SECTIONS
|
|
{
|
|
.resetvec 0xE3003FFC :
|
|
{
|
|
KEEP(*(.resetvec))
|
|
} = 0xffff
|
|
|
|
.text :
|
|
{
|
|
start.o (.text)
|
|
init.o (.text)
|
|
nand_boot.o (.text)
|
|
ddr2_fixed.o (.text)
|
|
ndfc.o (.text)
|
|
|
|
*(.text)
|
|
*(.fixup)
|
|
}
|
|
_etext = .;
|
|
|
|
.data :
|
|
{
|
|
*(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
|
|
*(.data*)
|
|
*(.sdata*)
|
|
__got2_start = .;
|
|
*(.got2)
|
|
__got2_end = .;
|
|
}
|
|
|
|
_edata = .;
|
|
|
|
__bss_start = .;
|
|
.bss (NOLOAD) :
|
|
{
|
|
*(.sbss)
|
|
*(.bss)
|
|
. = ALIGN(4);
|
|
}
|
|
|
|
__bss_end = . ;
|
|
}
|
|
|