Vishal Bhoj | 9a67d91 | 2016-06-09 10:02:07 +0100 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2014 Linaro Ltd. | ||||
3 | */ | ||||
4 | |||||
5 | OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") | ||||
6 | OUTPUT_ARCH(arm) | ||||
7 | ENTRY(_start) | ||||
8 | SECTIONS | ||||
9 | { | ||||
10 | . = 0xf9800800; | ||||
11 | LLOADER_START = .; | ||||
12 | |||||
13 | .text : | ||||
14 | { | ||||
15 | *(.text) | ||||
16 | *(.rodata) | ||||
17 | } | ||||
18 | |||||
19 | .data ALIGN(4): | ||||
20 | { | ||||
21 | *(.data) | ||||
22 | } | ||||
23 | |||||
24 | . = ALIGN(4); | ||||
25 | |||||
26 | .bss ALIGN(4): | ||||
27 | { | ||||
28 | *(.bss) | ||||
29 | } | ||||
30 | |||||
31 | LLOADER_BL1_BIN = 0xf9801000; | ||||
32 | } |