aboutsummaryrefslogtreecommitdiff
path: root/board/rda/rda8850e/u-boot-spl.lds
blob: afe35fd2a8751f16a58df85c147036a797ab9505 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
OUTPUT_ARCH(arm)
ENTRY(_start)
SECTIONS
{
	. = 0x00100100;
	. = ALIGN(4);
	.text :
	{
		__start = .;
		arch/arm/cpu/armv7/start.o (.text)
			*(.text)
	}
	. = ALIGN(4);
	.rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
	. = ALIGN(4);
	.data : {
		*(.data)
	}
	. = ALIGN(4);
	. = .;
	. = ALIGN(4);
	__image_copy_end = .;
	_end = .;
	.bss :
	{
		. = ALIGN(4);
		__bss_start = .;
		*(.bss*)
		. = ALIGN(4);
		__bss_end__ = .;
		ASSERT((ABSOLUTE(__bss_end__) < 0x00110000), \
			"too big data in spl, don't exceed intrenal ram");
	}
}