2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2013-11-15 03:12:38 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2010
|
|
|
|
* Texas Instruments, <www.ti.com>
|
|
|
|
* Aneesh V <aneesh@ti.com>
|
|
|
|
*
|
|
|
|
* (C) 2013 Atmel Corporation
|
|
|
|
* Bo Shen <voice.shen@atmel.com>
|
|
|
|
*/
|
|
|
|
|
2019-01-22 22:09:26 +00:00
|
|
|
MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE, \
|
|
|
|
LENGTH = IMAGE_MAX_SIZE }
|
2013-11-15 03:12:38 +00:00
|
|
|
MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
|
|
|
|
LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
|
|
|
|
|
|
|
|
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
|
|
|
|
OUTPUT_ARCH(arm)
|
|
|
|
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
.text :
|
|
|
|
{
|
|
|
|
__start = .;
|
2014-08-21 13:43:11 +00:00
|
|
|
*(.vectors)
|
2013-11-15 03:12:38 +00:00
|
|
|
arch/arm/cpu/armv7/start.o (.text*)
|
|
|
|
*(.text*)
|
|
|
|
} >.sram
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
.rodata : { *(SORT_BY_ALIGNMENT(.rodata*)) } >.sram
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
.data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram
|
|
|
|
|
2016-03-15 21:56:29 +00:00
|
|
|
. = ALIGN(4);
|
|
|
|
.u_boot_list : { KEEP(*(SORT(.u_boot_list*))) } > .sram
|
|
|
|
|
2013-11-15 03:12:38 +00:00
|
|
|
. = ALIGN(4);
|
|
|
|
__image_copy_end = .;
|
2014-02-22 16:53:42 +00:00
|
|
|
|
|
|
|
.end :
|
|
|
|
{
|
|
|
|
*(.__end)
|
|
|
|
} >.sram
|
2013-11-15 03:12:38 +00:00
|
|
|
|
2017-03-24 03:34:06 +00:00
|
|
|
_image_binary_end = .;
|
|
|
|
|
2013-11-15 03:12:38 +00:00
|
|
|
.bss :
|
|
|
|
{
|
|
|
|
. = ALIGN(4);
|
|
|
|
__bss_start = .;
|
|
|
|
*(.bss*)
|
|
|
|
. = ALIGN(4);
|
|
|
|
__bss_end = .;
|
|
|
|
} >.sdram
|
|
|
|
}
|