2 * Copyright 2007-2009 Freescale Semiconductor, Inc.
4 * See file CREDITS for list of people who contributed to this
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 #ifndef RESET_VECTOR_ADDRESS
24 #define RESET_VECTOR_ADDRESS 0xfffffffc
28 /* Do we need any of these for elf?
38 /* Read-only sections, merged into text segment: */
40 .interp : { *(.interp) }
42 .dynsym : { *(.dynsym) }
43 .dynstr : { *(.dynstr) }
44 .rel.text : { *(.rel.text) }
45 .rela.text : { *(.rela.text) }
46 .rel.data : { *(.rel.data) }
47 .rela.data : { *(.rela.data) }
48 .rel.rodata : { *(.rel.rodata) }
49 .rela.rodata : { *(.rela.rodata) }
50 .rel.got : { *(.rel.got) }
51 .rela.got : { *(.rela.got) }
52 .rel.ctors : { *(.rel.ctors) }
53 .rela.ctors : { *(.rela.ctors) }
54 .rel.dtors : { *(.rel.dtors) }
55 .rela.dtors : { *(.rela.dtors) }
56 .rel.bss : { *(.rel.bss) }
57 .rela.bss : { *(.rela.bss) }
58 .rel.plt : { *(.rel.plt) }
59 .rela.plt : { *(.rela.plt) }
73 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
75 .fini : { *(.fini) } =0
76 .ctors : { *(.ctors) }
77 .dtors : { *(.dtors) }
79 /* Read-write section, merged into data segment: */
80 . = (. + 0x00FF) & 0xFFFFFF00;
82 PROVIDE (erotext = .);
91 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >> 2;
92 __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
107 __u_boot_cmd_start = .;
108 .u_boot_cmd : { *(.u_boot_cmd) }
109 __u_boot_cmd_end = .;
112 __start___ex_table = .;
113 __ex_table : { *(__ex_table) }
114 __stop___ex_table = .;
118 .text.init : { *(.text.init) }
119 .data.init : { *(.data.init) }
123 .bootpg RESET_VECTOR_ADDRESS - 0xffc :
125 cpu/mpc85xx/start.o (.bootpg)
128 .resetvec RESET_VECTOR_ADDRESS :
133 . = RESET_VECTOR_ADDRESS + 0x4;