blob: cd6aed68609a2be77054449b25200b1ece44b951 [file] [log] [blame]
TsiChungLiew1aee1112008-01-15 14:02:49 -06001/*
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+
TsiChungLiew1aee1112008-01-15 14:02:49 -06006 */
7
8OUTPUT_ARCH(m68k)
Jason Jin6c0bf272011-08-22 17:24:45 +08009
TsiChungLiew1aee1112008-01-15 14:02:49 -060010SECTIONS
11{
12 /* Read-only sections, merged into text segment: */
Jason Jin6c0bf272011-08-22 17:24:45 +080013 .text :
TsiChungLiew1aee1112008-01-15 14:02:49 -060014 {
Jason Jin6c0bf272011-08-22 17:24:45 +080015 arch/m68k/cpu/mcf547x_8x/start.o (.text*)
TsiChungLiew1aee1112008-01-15 14:02:49 -060016
Jason Jin6c0bf272011-08-22 17:24:45 +080017 *(.text*)
TsiChungLiew1aee1112008-01-15 14:02:49 -060018 }
19 _etext = .;
20 PROVIDE (etext = .);
21 .rodata :
22 {
Trent Piephof62fb992009-02-18 15:22:05 -080023 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
TsiChungLiew1aee1112008-01-15 14:02:49 -060024 }
TsiChungLiew1aee1112008-01-15 14:02:49 -060025
26 /* Read-write section, merged into data segment: */
27 . = (. + 0x00FF) & 0xFFFFFF00;
28 _erotext = .;
29 PROVIDE (erotext = .);
30
31 .reloc :
32 {
33 __got_start = .;
Jason Jin6c0bf272011-08-22 17:24:45 +080034 KEEP(*(.got))
TsiChungLiew1aee1112008-01-15 14:02:49 -060035 __got_end = .;
36 _GOT2_TABLE_ = .;
Jason Jin6c0bf272011-08-22 17:24:45 +080037 KEEP(*(.got2))
TsiChungLiew1aee1112008-01-15 14:02:49 -060038 _FIXUP_TABLE_ = .;
Jason Jin6c0bf272011-08-22 17:24:45 +080039 KEEP(*(.fixup))
TsiChungLiew1aee1112008-01-15 14:02:49 -060040 }
41 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
42 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
43
44 .data :
45 {
Jason Jin6c0bf272011-08-22 17:24:45 +080046 *(.data*)
47 *(.sdata*)
TsiChungLiew1aee1112008-01-15 14:02:49 -060048 }
49 _edata = .;
50 PROVIDE (edata = .);
51
52 . = .;
TsiChungLiew1aee1112008-01-15 14:02:49 -060053
Marek Vasut55675142012-10-12 10:27:03 +000054 . = ALIGN(4);
55 .u_boot_list : {
Albert ARIBAUDef123c52013-02-25 00:59:00 +000056 KEEP(*(SORT(.u_boot_list*)));
Marek Vasut55675142012-10-12 10:27:03 +000057 }
58
TsiChungLiew1aee1112008-01-15 14:02:49 -060059 . = .;
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 = .;
Jason Jin6c0bf272011-08-22 17:24:45 +080072 .bss (NOLOAD) :
TsiChungLiew1aee1112008-01-15 14:02:49 -060073 {
74 _sbss = .;
Jason Jin6c0bf272011-08-22 17:24:45 +080075 *(.bss*)
76 *(.sbss*)
TsiChungLiew1aee1112008-01-15 14:02:49 -060077 *(COMMON)
78 . = ALIGN(4);
79 _ebss = .;
80 }
Simon Glass3929fb02013-03-14 06:54:53 +000081 __bss_end = . ;
TsiChungLiew1aee1112008-01-15 14:02:49 -060082 PROVIDE (end = .);
83}