Stefan Roese | d873133 | 2009-05-11 13:46:14 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2009 |
| 3 | * Stefan Roese, DENX Software Engineering, sr@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(powerpc) |
| 25 | SECTIONS |
| 26 | { |
| 27 | /* Read-only sections, merged into text segment: */ |
| 28 | . = + SIZEOF_HEADERS; |
Stefan Roese | d873133 | 2009-05-11 13:46:14 +0200 | [diff] [blame] | 29 | .text : |
| 30 | { |
Wolfgang Denk | ee8028b | 2010-11-21 20:55:42 +0100 | [diff] [blame] | 31 | arch/powerpc/cpu/ppc4xx/start.o (.text*) |
| 32 | board/amcc/sequoia/init.o (.text*) |
Stefan Roese | d873133 | 2009-05-11 13:46:14 +0200 | [diff] [blame] | 33 | |
Wolfgang Denk | ee8028b | 2010-11-21 20:55:42 +0100 | [diff] [blame] | 34 | *(.text*) |
Stefan Roese | d873133 | 2009-05-11 13:46:14 +0200 | [diff] [blame] | 35 | } |
| 36 | _etext = .; |
| 37 | PROVIDE (etext = .); |
| 38 | .rodata : |
| 39 | { |
| 40 | *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) |
| 41 | } |
Stefan Roese | d873133 | 2009-05-11 13:46:14 +0200 | [diff] [blame] | 42 | |
| 43 | /* Read-write section, merged into data segment: */ |
| 44 | . = (. + 0x00FF) & 0xFFFFFF00; |
| 45 | _erotext = .; |
| 46 | PROVIDE (erotext = .); |
| 47 | .reloc : |
| 48 | { |
Wolfgang Denk | ee8028b | 2010-11-21 20:55:42 +0100 | [diff] [blame] | 49 | KEEP(*(.got)) |
Stefan Roese | d873133 | 2009-05-11 13:46:14 +0200 | [diff] [blame] | 50 | _GOT2_TABLE_ = .; |
Wolfgang Denk | ee8028b | 2010-11-21 20:55:42 +0100 | [diff] [blame] | 51 | KEEP(*(.got2)) |
Stefan Roese | d873133 | 2009-05-11 13:46:14 +0200 | [diff] [blame] | 52 | _FIXUP_TABLE_ = .; |
Wolfgang Denk | ee8028b | 2010-11-21 20:55:42 +0100 | [diff] [blame] | 53 | KEEP(*(.fixup)) |
Stefan Roese | d873133 | 2009-05-11 13:46:14 +0200 | [diff] [blame] | 54 | } |
| 55 | __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2; |
| 56 | __fixup_entries = (. - _FIXUP_TABLE_)>>2; |
| 57 | |
| 58 | .data : |
| 59 | { |
Wolfgang Denk | ee8028b | 2010-11-21 20:55:42 +0100 | [diff] [blame] | 60 | *(.data*) |
| 61 | *(.sdata*) |
Stefan Roese | d873133 | 2009-05-11 13:46:14 +0200 | [diff] [blame] | 62 | } |
| 63 | _edata = .; |
| 64 | PROVIDE (edata = .); |
| 65 | |
| 66 | . = .; |
| 67 | __u_boot_cmd_start = .; |
| 68 | .u_boot_cmd : { *(.u_boot_cmd) } |
| 69 | __u_boot_cmd_end = .; |
| 70 | |
| 71 | |
| 72 | . = .; |
| 73 | __start___ex_table = .; |
| 74 | __ex_table : { *(__ex_table) } |
| 75 | __stop___ex_table = .; |
| 76 | |
| 77 | . = ALIGN(256); |
| 78 | __init_begin = .; |
| 79 | .text.init : { *(.text.init) } |
| 80 | .data.init : { *(.data.init) } |
| 81 | . = ALIGN(256); |
| 82 | __init_end = .; |
| 83 | |
| 84 | __bss_start = .; |
| 85 | .bss (NOLOAD) : |
| 86 | { |
Wolfgang Denk | ee8028b | 2010-11-21 20:55:42 +0100 | [diff] [blame] | 87 | *(.bss*) |
| 88 | *(.sbss*) |
Stefan Roese | d873133 | 2009-05-11 13:46:14 +0200 | [diff] [blame] | 89 | *(COMMON) |
| 90 | . = ALIGN(4); |
| 91 | } |
| 92 | |
Po-Yu Chuang | 44c6e65 | 2011-03-01 22:59:59 +0000 | [diff] [blame] | 93 | __bss_end__ = . ; |
Stefan Roese | d873133 | 2009-05-11 13:46:14 +0200 | [diff] [blame] | 94 | PROVIDE (end = .); |
| 95 | } |