blob: d25c19a834d7d86416bdd34b22b7bf9f2afe06ac [file] [log] [blame]
Ilya Ledvich54e74452013-11-07 07:57:33 +02001/*
2 * Copyright (c) 2004-2008 Texas Instruments
3 *
4 * (C) Copyright 2002
5 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
11OUTPUT_ARCH(arm)
12ENTRY(_start)
13SECTIONS
14{
15 . = 0x00000000;
16
17 . = ALIGN(4);
18 .text :
19 {
20 *(.__image_copy_start)
21 CPUDIR/start.o (.text*)
Albert ARIBAUDf15ea6e2013-12-10 14:31:56 +010022 board/compulab/cm_t335/built-in.o (.text*)
Ilya Ledvich54e74452013-11-07 07:57:33 +020023 *(.text*)
24 }
25
26 . = ALIGN(4);
27 .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
28
29 . = ALIGN(4);
30 .data : {
31 *(.data*)
32 }
33
34 . = ALIGN(4);
35
36 . = .;
37
38 . = ALIGN(4);
39 .u_boot_list : {
40 KEEP(*(SORT(.u_boot_list*)));
41 }
42
43 . = ALIGN(4);
44
45 .image_copy_end :
46 {
47 *(.__image_copy_end)
48 }
49
50 .rel_dyn_start :
51 {
52 *(.__rel_dyn_start)
53 }
54
55 .rel.dyn : {
56 *(.rel*)
57 }
58
59 .rel_dyn_end :
60 {
61 *(.__rel_dyn_end)
62 }
63
64 _end = .;
65
66 /*
67 * Deprecated: this MMU section is used by pxa at present but
68 * should not be used by new boards/CPUs.
69 */
70 . = ALIGN(4096);
71 .mmutable : {
72 *(.mmutable)
73 }
74
75/*
76 * Compiler-generated __bss_start and __bss_end, see arch/arm/lib/bss.c
77 * __bss_base and __bss_limit are for linker only (overlay ordering)
78 */
79
80 .bss_start __rel_dyn_start (OVERLAY) : {
81 KEEP(*(.__bss_start));
82 __bss_base = .;
83 }
84
85 .bss __bss_base (OVERLAY) : {
86 *(.bss*)
87 . = ALIGN(4);
88 __bss_limit = .;
89 }
90
91 .bss_end __bss_limit (OVERLAY) : {
92 KEEP(*(.__bss_end));
93 }
94
Albert ARIBAUD62bbc2f2014-02-22 17:53:41 +010095 .dynsym _end : { *(.dynsym) }
96 .hash : { *(.hash) }
97 .got.plt : { *(.got.plt) }
98 .dynbss : { *(.dynbss) }
99 .dynstr : { *(.dynstr*) }
100 .dynamic : { *(.dynamic*) }
101 .plt : { *(.plt*) }
102 .interp : { *(.interp*) }
103 .gnu : { *(.gnu*) }
104 .ARM.exidx : { *(.ARM.exidx*) }
Ilya Ledvich54e74452013-11-07 07:57:33 +0200105}