]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - board/freescale/m5235evb/u-boot.32
Merge with /home/wd/git/u-boot/custodian/u-boot-coldfire
[karo-tx-uboot.git] / board / freescale / m5235evb / u-boot.32
1 /*
2  * (C) Copyright 2000
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
24 OUTPUT_ARCH(m68k)
25 SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib);
26 /* Do we need any of these for elf?
27    __DYNAMIC = 0;    */
28 SECTIONS
29 {
30   /* Read-only sections, merged into text segment: */
31   . = + SIZEOF_HEADERS;
32   .interp : { *(.interp) }
33   .hash          : { *(.hash)           }
34   .dynsym        : { *(.dynsym)         }
35   .dynstr        : { *(.dynstr)         }
36   .rel.text      : { *(.rel.text)               }
37   .rela.text     : { *(.rela.text)      }
38   .rel.data      : { *(.rel.data)               }
39   .rela.data     : { *(.rela.data)      }
40   .rel.rodata    : { *(.rel.rodata)     }
41   .rela.rodata   : { *(.rela.rodata)    }
42   .rel.got       : { *(.rel.got)                }
43   .rela.got      : { *(.rela.got)               }
44   .rel.ctors     : { *(.rel.ctors)      }
45   .rela.ctors    : { *(.rela.ctors)     }
46   .rel.dtors     : { *(.rel.dtors)      }
47   .rela.dtors    : { *(.rela.dtors)     }
48   .rel.bss       : { *(.rel.bss)                }
49   .rela.bss      : { *(.rela.bss)               }
50   .rel.plt       : { *(.rel.plt)                }
51   .rela.plt      : { *(.rela.plt)               }
52   .init          : { *(.init)   }
53   .plt : { *(.plt) }
54   .text      :
55   {
56     /* WARNING - the following is hand-optimized to fit within  */
57     /* the sector layout of our flash chips!    XXX FIXME XXX   */
58
59     cpu/mcf523x/start.o         (.text)
60     cpu/mcf523x/cpu.o           (.text)
61     cpu/mcf523x/cpu_init.o      (.text)
62     cpu/mcf523x/interrupts.o    (.text)
63     cpu/mcf523x/speed.o         (.text)
64     lib_m68k/libm68k.a          (.text)
65     common/dlmalloc.o           (.text)
66     common/cmd_bootm.o          (.text)
67     common/cmd_flash.o          (.text)
68     common/cmd_elf.o            (.text)
69     common/cmd_mem.o            (.text)
70     common/console.o            (.text)
71     common/main.o               (.text)
72     lib_generic/libgeneric.a    (.text)
73
74     . = DEFINED(env_offset) ? env_offset : .;
75     common/environment.o        (.text)
76
77     *(.text)
78     *(.fixup)
79     *(.got1)
80   }
81   _etext = .;
82   PROVIDE (etext = .);
83   .rodata    :
84   {
85     *(.rodata)
86     *(.rodata1)
87   }
88   .fini      : { *(.fini)    } =0
89   .ctors     : { *(.ctors)   }
90   .dtors     : { *(.dtors)   }
91
92   /* Read-write section, merged into data segment: */
93   . = (. + 0x00FF) & 0xFFFFFF00;
94   _erotext = .;
95   PROVIDE (erotext = .);
96
97   .reloc   :
98   {
99     __got_start = .;
100     *(.got)
101     __got_end = .;
102     _GOT2_TABLE_ = .;
103     *(.got2)
104     _FIXUP_TABLE_ = .;
105     *(.fixup)
106   }
107   __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
108   __fixup_entries = (. - _FIXUP_TABLE_)>>2;
109
110   .data    :
111   {
112     *(.data)
113     *(.data1)
114     *(.sdata)
115     *(.sdata2)
116     *(.dynamic)
117     CONSTRUCTORS
118   }
119   _edata  =  .;
120   PROVIDE (edata = .);
121
122   . = .;
123   __u_boot_cmd_start = .;
124   .u_boot_cmd : { *(.u_boot_cmd) }
125   __u_boot_cmd_end = .;
126
127
128   . = .;
129   __start___ex_table = .;
130   __ex_table : { *(__ex_table) }
131   __stop___ex_table = .;
132
133   . = ALIGN(256);
134   __init_begin = .;
135   .text.init : { *(.text.init) }
136   .data.init : { *(.data.init) }
137   . = ALIGN(256);
138   __init_end = .;
139
140   __bss_start = .;
141   .bss       :
142   {
143    _sbss = .;
144    *(.sbss) *(.scommon)
145    *(.dynbss)
146    *(.bss)
147    *(COMMON)
148    . = ALIGN(4);
149    _ebss = .;
150   }
151   _end = . ;
152   PROVIDE (end = .);
153 }