mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-11 13:56:30 +00:00
1a4596601f
Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Fixup common/cmd_io.c] Signed-off-by: Tom Rini <trini@ti.com>
50 lines
683 B
Text
50 lines
683 B
Text
/*
|
|
* (C) Copyright 2007
|
|
* Stefan Roese, DENX Software Engineering, sr@denx.de.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
OUTPUT_ARCH(powerpc:common)
|
|
SECTIONS
|
|
{
|
|
.resetvec 0x00800FFC :
|
|
{
|
|
KEEP(*(.resetvec))
|
|
} = 0xffff
|
|
|
|
.text :
|
|
{
|
|
start.o (.text)
|
|
init.o (.text)
|
|
nand_boot.o (.text)
|
|
sdram.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 = . ;
|
|
}
|