blob: 4ba1964f7ef44d0331a3a43622939cddb33894ab [file] [log] [blame]
wdenk4e5ca3e2003-12-08 01:34:36 +00001/*
2 * (C) Copyright 2000-2003
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 MARCEL25ceb272011-10-14 04:38:01 +000025
wdenk4e5ca3e2003-12-08 01:34:36 +000026SECTIONS
27{
wdenk4e5ca3e2003-12-08 01:34:36 +000028 .text :
29 {
stany MARCEL25ceb272011-10-14 04:38:01 +000030 arch/m68k/cpu/mcf52x2/start.o (.text*)
wdenk4e5ca3e2003-12-08 01:34:36 +000031
stany MARCEL25ceb272011-10-14 04:38:01 +000032 *(.text*)
wdenk4e5ca3e2003-12-08 01:34:36 +000033 }
34 _etext = .;
35 PROVIDE (etext = .);
36 .rodata :
37 {
Trent Piephof62fb992009-02-18 15:22:05 -080038 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
wdenk4e5ca3e2003-12-08 01:34:36 +000039 }
wdenk4e5ca3e2003-12-08 01:34:36 +000040
41 /* Read-write section, merged into data segment: */
42 . = (. + 0x00FF) & 0xFFFFFF00;
43 _erotext = .;
44 PROVIDE (erotext = .);
stany MARCEL25ceb272011-10-14 04:38:01 +000045
46 .reloc :
wdenk4e5ca3e2003-12-08 01:34:36 +000047 {
wdenkbf9e3b32004-02-12 00:47:09 +000048 __got_start = .;
stany MARCEL25ceb272011-10-14 04:38:01 +000049 KEEP(*(.got))
wdenkbf9e3b32004-02-12 00:47:09 +000050 __got_end = .;
wdenk4e5ca3e2003-12-08 01:34:36 +000051 _GOT2_TABLE_ = .;
stany MARCEL25ceb272011-10-14 04:38:01 +000052 KEEP(*(.got2))
wdenk4e5ca3e2003-12-08 01:34:36 +000053 _FIXUP_TABLE_ = .;
stany MARCEL25ceb272011-10-14 04:38:01 +000054 KEEP(*(.fixup))
wdenk4e5ca3e2003-12-08 01:34:36 +000055 }
56 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
57 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
58
59 .data :
60 {
stany MARCEL25ceb272011-10-14 04:38:01 +000061 *(.data*)
62 *(.sdata*)
wdenk4e5ca3e2003-12-08 01:34:36 +000063 }
64 _edata = .;
65 PROVIDE (edata = .);
66
Wolfgang Denk807d5d72005-08-31 12:28:00 +020067 . = .;
wdenkbf9e3b32004-02-12 00:47:09 +000068 __u_boot_cmd_start = .;
69 .u_boot_cmd : { *(.u_boot_cmd) }
70 __u_boot_cmd_end = .;
71
Wolfgang Denk807d5d72005-08-31 12:28:00 +020072 . = .;
wdenk4e5ca3e2003-12-08 01:34:36 +000073 __start___ex_table = .;
74 __ex_table : { *(__ex_table) }
75 __stop___ex_table = .;
76
77 . = ALIGN(256);
78 __init_begin = .;
79 .text.init : { *(.text.init) }
80 .data.init : { *(.data.init) }
81 . = ALIGN(256);
82 __init_end = .;
83
84 __bss_start = .;
stany MARCEL25ceb272011-10-14 04:38:01 +000085 .bss (NOLOAD) :
wdenk4e5ca3e2003-12-08 01:34:36 +000086 {
87 _sbss = .;
stany MARCEL25ceb272011-10-14 04:38:01 +000088 *(.bss*)
89 *(.sbss*)
wdenk4e5ca3e2003-12-08 01:34:36 +000090 *(COMMON)
91 . = ALIGN(4);
92 _ebss = .;
93 }
Po-Yu Chuang44c6e652011-03-01 22:59:59 +000094 __bss_end__ = . ;
wdenk4e5ca3e2003-12-08 01:34:36 +000095 PROVIDE (end = .);
96}