2 * U-boot - u-boot.lds.S
4 * Copyright (c) 2005-2007 Analog Device Inc.
6 * (C) Copyright 2000-2004
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9 * See file CREDITS for list of people who contributed to this
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31 SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib);
32 /* Do we need any of these for elf?
36 /* Read-only sections, merged into text segment: */
38 .interp : { *(.interp) }
40 .dynsym : { *(.dynsym) }
41 .dynstr : { *(.dynstr) }
42 .rel.text : { *(.rel.text) }
43 .rela.text : { *(.rela.text) }
44 .rel.data : { *(.rel.data) }
45 .rela.data : { *(.rela.data) }
46 .rel.rodata : { *(.rel.rodata) }
47 .rela.rodata : { *(.rela.rodata) }
48 .rel.got : { *(.rel.got) }
49 .rela.got : { *(.rela.got) }
50 .rel.ctors : { *(.rel.ctors) }
51 .rela.ctors : { *(.rela.ctors) }
52 .rel.dtors : { *(.rel.dtors) }
53 .rela.dtors : { *(.rela.dtors) }
54 .rel.bss : { *(.rel.bss) }
55 .rela.bss : { *(.rela.bss) }
56 .rel.plt : { *(.rel.plt) }
57 .rela.plt : { *(.rela.plt) }
63 /* WARNING - the following is hand-optimized to fit within */
64 /* the sector before the environment sector. If it throws */
65 /* an error during compilation remove an object here to get */
66 /* it linked after the configuration sector. */
68 cpu/bf533/start.o (.text)
69 cpu/bf533/start1.o (.text)
70 cpu/bf533/traps.o (.text)
71 cpu/bf533/interrupt.o (.text)
72 cpu/bf533/serial.o (.text)
73 common/dlmalloc.o (.text)
74 /* lib_blackfin/bf533_string.o (.text) */
75 /* lib_generic/vsprintf.o (.text) */
76 lib_generic/crc32.o (.text)
77 /* lib_generic/zlib.o (.text) */
78 /* board/stamp/stamp.o (.text) */
80 . = DEFINED(env_offset) ? env_offset : .;
81 common/environment.o (.text)
95 .fini : { *(.fini) } =0
96 .ctors : { *(.ctors) }
97 .dtors : { *(.dtors) }
99 /* Read-write section, merged into data segment: */
100 . = (. + 0x00FF) & 0xFFFFFF00;
102 PROVIDE (erotext = .);
111 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
112 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
126 ___u_boot_cmd_start = .;
127 .u_boot_cmd : { *(.u_boot_cmd) }
128 ___u_boot_cmd_end = .;
131 __start___ex_table = .;
132 __ex_table : { *(__ex_table) }
133 __stop___ex_table = .;
137 .text.init : { *(.text.init) }
138 .data.init : { *(.data.init) }