blob: 5679d498f729aae4f8a4af4be2260a7fbb489c75 [file] [log] [blame]
Alison Wang186fc4d2012-10-18 19:25:52 +00001/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Alison Wang186fc4d2012-10-18 19:25:52 +00006 */
7
8OUTPUT_ARCH(m68k)
9
10SECTIONS
11{
12 /* Read-only sections, merged into text segment: */
13 .text :
14 {
15 arch/m68k/cpu/mcf5445x/start.o (.text*)
16
17 *(.text*)
18 }
19 _etext = .;
20 PROVIDE (etext = .);
21 .rodata :
22 {
23 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
24 }
25
26 /* Read-write section, merged into data segment: */
27 . = (. + 0x00FF) & 0xFFFFFF00;
28 _erotext = .;
29 PROVIDE (erotext = .);
30
31 .reloc :
32 {
33 __got_start = .;
34 KEEP(*(.got))
35 __got_end = .;
36 _GOT2_TABLE_ = .;
37 KEEP(*(.got2))
38 _FIXUP_TABLE_ = .;
39 KEEP(*(.fixup))
40 }
41 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
42 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
43
44 .data :
45 {
46 *(.data*)
47 *(.sdata*)
48 }
49 _edata = .;
50 PROVIDE (edata = .);
51
52 . = .;
Jason Jinf9a2d792012-10-25 14:51:42 +080053
54 . = ALIGN(4);
55 .u_boot_list : {
Albert ARIBAUDef123c52013-02-25 00:59:00 +000056 KEEP(*(SORT(.u_boot_list*)));
Jason Jinf9a2d792012-10-25 14:51:42 +080057 }
Alison Wang186fc4d2012-10-18 19:25:52 +000058
59 . = .;
60 __start___ex_table = .;
61 __ex_table : { *(__ex_table) }
62 __stop___ex_table = .;
63
64 . = ALIGN(256);
65 __init_begin = .;
66 .text.init : { *(.text.init) }
67 .data.init : { *(.data.init) }
68 . = ALIGN(256);
69 __init_end = .;
70
71 __bss_start = .;
72 .bss (NOLOAD) :
73 {
74 _sbss = .;
75 *(.bss*)
76 *(.sbss*)
77 *(COMMON)
78 . = ALIGN(4);
79 _ebss = .;
80 }
Simon Glass3929fb02013-03-14 06:54:53 +000081 __bss_end = . ;
Alison Wang186fc4d2012-10-18 19:25:52 +000082 PROVIDE (end = .);
83}