blob: 158828c150b947fa4b7deabc95ab2d397bdbcb17 [file] [log] [blame]
stroese4536e9b2004-12-16 18:24:06 +00001/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24OUTPUT_ARCH(m68k)
stany MARCEL4df9e532011-10-14 04:38:01 +000025
stroese4536e9b2004-12-16 18:24:06 +000026SECTIONS
27{
stroese4536e9b2004-12-16 18:24:06 +000028 .text :
29 {
stany MARCEL4df9e532011-10-14 04:38:01 +000030 arch/m68k/cpu/mcf52x2/start.o (.text*)
stroese4536e9b2004-12-16 18:24:06 +000031
stany MARCEL4df9e532011-10-14 04:38:01 +000032 *(.text*)
stroese4536e9b2004-12-16 18:24:06 +000033 }
34 _etext = .;
35 PROVIDE (etext = .);
36 .rodata :
37 {
Trent Piepho4438e5e2009-02-18 15:22:05 -080038 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
stroese4536e9b2004-12-16 18:24:06 +000039 }
stroese4536e9b2004-12-16 18:24:06 +000040
41 /* Read-write section, merged into data segment: */
42 . = (. + 0x00FF) & 0xFFFFFF00;
43 _erotext = .;
44 PROVIDE (erotext = .);
45
46 .reloc :
47 {
48 __got_start = .;
stany MARCEL4df9e532011-10-14 04:38:01 +000049 KEEP(*(.got))
stroese4536e9b2004-12-16 18:24:06 +000050 __got_end = .;
51 _GOT2_TABLE_ = .;
stany MARCEL4df9e532011-10-14 04:38:01 +000052 KEEP(*(.got2))
stroese4536e9b2004-12-16 18:24:06 +000053 _FIXUP_TABLE_ = .;
stany MARCEL4df9e532011-10-14 04:38:01 +000054 KEEP(*(.fixup))
stroese4536e9b2004-12-16 18:24:06 +000055 }
56 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
57 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
58
59 .data :
60 {
stany MARCEL4df9e532011-10-14 04:38:01 +000061 *(.data*)
62 *(.sdata*)
stroese4536e9b2004-12-16 18:24:06 +000063 }
64 _edata = .;
65 PROVIDE (edata = .);
66
Wolfgang Denk5dd2c652005-08-31 12:28:00 +020067 . = .;
stroese4536e9b2004-12-16 18:24:06 +000068 __u_boot_cmd_start = .;
69 .u_boot_cmd : { *(.u_boot_cmd) }
70 __u_boot_cmd_end = .;
71
Marek Vasut607092a2012-10-12 10:27:03 +000072 . = ALIGN(4);
73 .u_boot_list : {
74 #include <u-boot.lst>
75 }
76
Wolfgang Denk5dd2c652005-08-31 12:28:00 +020077 . = .;
stroese4536e9b2004-12-16 18:24:06 +000078 __start___ex_table = .;
79 __ex_table : { *(__ex_table) }
80 __stop___ex_table = .;
81
82 . = ALIGN(256);
83 __init_begin = .;
84 .text.init : { *(.text.init) }
85 .data.init : { *(.data.init) }
86 . = ALIGN(256);
87 __init_end = .;
88
89 __bss_start = .;
stany MARCEL4df9e532011-10-14 04:38:01 +000090 .bss (NOLOAD) :
stroese4536e9b2004-12-16 18:24:06 +000091 {
92 _sbss = .;
stany MARCEL4df9e532011-10-14 04:38:01 +000093 *(.bss*)
94 *(.sbss*)
stroese4536e9b2004-12-16 18:24:06 +000095 *(COMMON)
96 . = ALIGN(4);
97 _ebss = .;
98 }
Po-Yu Chuangcedbf4b2011-03-01 22:59:59 +000099 __bss_end__ = . ;
stroese4536e9b2004-12-16 18:24:06 +0000100 PROVIDE (end = .);
101}