blob: 0984dfe6ea495bbc076b05ce11c35db20d088019 [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
Albert ARIBAUDd0b5d9d2014-02-22 17:53:42 +010064 .end :
65 {
66 *(.__end)
67 }
68
69 _image_binary_end = .;
Ilya Ledvich54e74452013-11-07 07:57:33 +020070
71 /*
72 * Deprecated: this MMU section is used by pxa at present but
73 * should not be used by new boards/CPUs.
74 */
75 . = ALIGN(4096);
76 .mmutable : {
77 *(.mmutable)
78 }
79
80/*
81 * Compiler-generated __bss_start and __bss_end, see arch/arm/lib/bss.c
82 * __bss_base and __bss_limit are for linker only (overlay ordering)
83 */
84
85 .bss_start __rel_dyn_start (OVERLAY) : {
86 KEEP(*(.__bss_start));
87 __bss_base = .;
88 }
89
90 .bss __bss_base (OVERLAY) : {
91 *(.bss*)
92 . = ALIGN(4);
93 __bss_limit = .;
94 }
95
96 .bss_end __bss_limit (OVERLAY) : {
97 KEEP(*(.__bss_end));
98 }
99
Albert ARIBAUDd0b5d9d2014-02-22 17:53:42 +0100100 .dynsym _image_binary_end : { *(.dynsym) }
Albert ARIBAUD62bbc2f2014-02-22 17:53:41 +0100101 .hash : { *(.hash) }
102 .got.plt : { *(.got.plt) }
103 .dynbss : { *(.dynbss) }
104 .dynstr : { *(.dynstr*) }
105 .dynamic : { *(.dynamic*) }
106 .plt : { *(.plt*) }
107 .interp : { *(.interp*) }
108 .gnu : { *(.gnu*) }
109 .ARM.exidx : { *(.ARM.exidx*) }
Ilya Ledvich54e74452013-11-07 07:57:33 +0200110}