2012-07-03 20:02:53 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Samsung Electronics
|
|
|
|
*
|
|
|
|
* Based on arch/arm/cpu/armv7/omap-common/u-boot-spl.lds
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2012-07-03 20:02:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE, \
|
2013-04-12 05:14:33 +00:00
|
|
|
LENGTH = CONFIG_SPL_MAX_FOOTPRINT }
|
2012-07-03 20:02:53 +00:00
|
|
|
|
|
|
|
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-04-11 09:36:03 +00:00
|
|
|
arch/arm/cpu/armv7/start.o (.text*)
|
2012-07-03 20:02:53 +00:00
|
|
|
*(.text*)
|
|
|
|
} >.sram
|
|
|
|
. = ALIGN(4);
|
|
|
|
|
|
|
|
.rodata : { *(SORT_BY_ALIGNMENT(.rodata*)) } >.sram
|
|
|
|
. = ALIGN(4);
|
|
|
|
|
|
|
|
.data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram
|
|
|
|
. = ALIGN(4);
|
|
|
|
|
2012-10-12 10:27:03 +00:00
|
|
|
.u_boot_list : {
|
2013-02-25 00:59:00 +00:00
|
|
|
KEEP(*(SORT(.u_boot_list*)));
|
2012-10-12 10:27:03 +00:00
|
|
|
} >.sram
|
|
|
|
. = ALIGN(4);
|
|
|
|
|
2017-02-08 12:43:46 +00:00
|
|
|
.machine_param : { *(.machine_param) } >.sram
|
2012-07-03 20:02:53 +00:00
|
|
|
. = ALIGN(4);
|
|
|
|
|
|
|
|
__image_copy_end = .;
|
2014-02-22 16:53:42 +00:00
|
|
|
|
|
|
|
.end :
|
|
|
|
{
|
|
|
|
*(.__end)
|
|
|
|
} >.sram
|
2012-07-03 20:02:53 +00:00
|
|
|
|
|
|
|
.bss :
|
|
|
|
{
|
|
|
|
. = ALIGN(4);
|
|
|
|
__bss_start = .;
|
|
|
|
*(.bss*)
|
|
|
|
. = ALIGN(4);
|
2013-03-14 06:54:53 +00:00
|
|
|
__bss_end = .;
|
2012-07-03 20:02:53 +00:00
|
|
|
} >.sram
|
|
|
|
}
|