blob: 18510a8e7e3985ece9bb71f34116350d05324a17 [file] [log] [blame]
wdenkc7de8292002-11-19 11:04:11 +00001/*
2 * (C) Copyright 2001
3 * Josh Huber <huber@mclx.com>, Mission Critical Linux, Inc.
4 *
5 * (C) Copyright 2002
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27/*
28 * u-boot.lds - linker script for U-Boot on the AmigaOneG3SE Board.
29 */
30
31OUTPUT_ARCH(powerpc)
wdenkc7de8292002-11-19 11:04:11 +000032/* Do we need any of these for elf?
33 __DYNAMIC = 0; */
34SECTIONS
35{
36 /* Read-only sections, merged into text segment: */
37 . = + SIZEOF_HEADERS;
38 .interp : { *(.interp) }
39 .hash : { *(.hash) }
40 .dynsym : { *(.dynsym) }
41 .dynstr : { *(.dynstr) }
42 .rel.text : { *(.rel.text) }
Wolfgang Denk53677ef2008-05-20 16:00:29 +020043 .rela.text : { *(.rela.text) }
wdenkc7de8292002-11-19 11:04:11 +000044 .rel.data : { *(.rel.data) }
Wolfgang Denk53677ef2008-05-20 16:00:29 +020045 .rela.data : { *(.rela.data) }
46 .rel.rodata : { *(.rel.rodata) }
47 .rela.rodata : { *(.rela.rodata) }
wdenkc7de8292002-11-19 11:04:11 +000048 .rel.got : { *(.rel.got) }
49 .rela.got : { *(.rela.got) }
50 .rel.ctors : { *(.rel.ctors) }
51 .rela.ctors : { *(.rela.ctors) }
52 .rel.dtors : { *(.rel.dtors) }
53 .rela.dtors : { *(.rela.dtors) }
54 .rel.bss : { *(.rel.bss) }
55 .rela.bss : { *(.rela.bss) }
56 .rel.plt : { *(.rel.plt) }
57 .rela.plt : { *(.rela.plt) }
58 .init : { *(.init) }
59 .plt : { *(.plt) }
60 .text :
61 {
62 cpu/74xx_7xx/start.o (.text)
63/* store the environment in a seperate sector in the boot flash */
64/* . = env_offset; */
Jean-Christophe PLAGNIOL-VILLARD0cf4fd32008-09-10 22:48:01 +020065 common/env_embedded.o(.text)
wdenkc7de8292002-11-19 11:04:11 +000066
67 *(.text)
wdenkc7de8292002-11-19 11:04:11 +000068 *(.got1)
69 }
70 _etext = .;
71 PROVIDE (etext = .);
72 .rodata :
73 {
Wolfgang Denk74812662005-12-12 16:06:05 +010074 *(.eh_frame)
Trent Piephof62fb992009-02-18 15:22:05 -080075 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
wdenkc7de8292002-11-19 11:04:11 +000076 }
77 .fini : { *(.fini) } =0
78 .ctors : { *(.ctors) }
79 .dtors : { *(.dtors) }
80
81 /* Read-write section, merged into data segment: */
82 . = (. + 0x00FF) & 0xFFFFFF00;
83 _erotext = .;
84 PROVIDE (erotext = .);
85 .reloc :
86 {
wdenk8bde7f72003-06-27 21:31:46 +000087 *(.got)
wdenkc7de8292002-11-19 11:04:11 +000088 _GOT2_TABLE_ = .;
89 *(.got2)
90 _FIXUP_TABLE_ = .;
91 *(.fixup)
92 }
93 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
94 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
95
96 .data :
97 {
98 *(.data)
99 *(.data1)
100 *(.sdata)
101 *(.sdata2)
102 *(.dynamic)
103 CONSTRUCTORS
104 }
105 _edata = .;
106 PROVIDE (edata = .);
107
Wolfgang Denk807d5d72005-08-31 12:28:00 +0200108 . = .;
wdenk8bde7f72003-06-27 21:31:46 +0000109 __u_boot_cmd_start = .;
110 .u_boot_cmd : { *(.u_boot_cmd) }
111 __u_boot_cmd_end = .;
112
113
Wolfgang Denk807d5d72005-08-31 12:28:00 +0200114 . = .;
wdenkc7de8292002-11-19 11:04:11 +0000115 __start___ex_table = .;
116 __ex_table : { *(__ex_table) }
117 __stop___ex_table = .;
118
119 . = ALIGN(256);
120 __init_begin = .;
121 .text.init : { *(.text.init) }
122 .data.init : { *(.data.init) }
123 . = ALIGN(256);
124 __init_end = .;
125
126 __bss_start = .;
Wolfgang Denk64134f02008-01-12 20:31:39 +0100127 .bss (NOLOAD) :
wdenkc7de8292002-11-19 11:04:11 +0000128 {
129 *(.sbss) *(.scommon)
130 *(.dynbss)
131 *(.bss)
132 *(COMMON)
133 }
134 _end = ALIGN(4) /*.*/ ;
135 PROVIDE (end = ALIGN(4) /*.*/);
136}