blob: 8a871cff49c7496a0f9fff3d8e4741c221d921c9 [file] [log] [blame]
wdenkc0218802003-03-27 12:09:35 +00001/*
2 * (C) Copyright 2003
3 * Wolfgang Denk 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/*
25OUTPUT_FORMAT("elf32-bigmips", "elf32-bigmips", "elf32-bigmips")
26*/
Xiangfu Liu40930312010-08-09 23:13:43 +080027OUTPUT_FORMAT("elf32-tradbigmips", "elf32-tradbigmips", "elf32-tradlittlemips")
wdenkc0218802003-03-27 12:09:35 +000028OUTPUT_ARCH(mips)
29ENTRY(_start)
30SECTIONS
31{
wdenk8bde7f72003-06-27 21:31:46 +000032 . = 0x00000000;
wdenkc0218802003-03-27 12:09:35 +000033
wdenk8bde7f72003-06-27 21:31:46 +000034 . = ALIGN(4);
wdenkc0218802003-03-27 12:09:35 +000035 .text :
36 {
Daniel Schwierzeck660da092011-04-15 17:16:44 +020037 *(.text*)
wdenkc0218802003-03-27 12:09:35 +000038 }
39
wdenk8bde7f72003-06-27 21:31:46 +000040 . = ALIGN(4);
Trent Piephof62fb992009-02-18 15:22:05 -080041 .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
wdenkc0218802003-03-27 12:09:35 +000042
wdenk8bde7f72003-06-27 21:31:46 +000043 . = ALIGN(4);
Daniel Schwierzeck660da092011-04-15 17:16:44 +020044 .data : { *(.data*) }
wdenkc0218802003-03-27 12:09:35 +000045
Shinya Kuribayashieb700632007-10-21 10:55:37 +090046 . = .;
47 _gp = ALIGN(16) + 0x7ff0;
wdenkc0218802003-03-27 12:09:35 +000048
Shinya Kuribayashicbf23232007-10-21 10:55:36 +090049 .got : {
50 __got_start = .;
51 *(.got)
52 __got_end = .;
53 }
wdenkc0218802003-03-27 12:09:35 +000054
Daniel Schwierzeck660da092011-04-15 17:16:44 +020055 .sdata : { *(.sdata*) }
wdenkc0218802003-03-27 12:09:35 +000056
Marek Vasut55675142012-10-12 10:27:03 +000057 . = ALIGN(4);
58 .u_boot_list : {
59 #include <u-boot.lst>
60 }
61
wdenkc0218802003-03-27 12:09:35 +000062 uboot_end_data = .;
63 num_got_entries = (__got_end - __got_start) >> 2;
64
wdenk8bde7f72003-06-27 21:31:46 +000065 . = ALIGN(4);
Daniel Schwierzeck660da092011-04-15 17:16:44 +020066 .sbss (NOLOAD) : { *(.sbss*) }
67 .bss (NOLOAD) : { *(.bss*) . = ALIGN(4); }
wdenkc0218802003-03-27 12:09:35 +000068 uboot_end = .;
69}