Wolfgang Denk | de550d6 | 2010-11-23 23:48:56 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2001-2007 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Wolfgang Denk | de550d6 | 2010-11-23 23:48:56 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | OUTPUT_ARCH(powerpc) |
| 9 | /* Do we need any of these for elf? |
| 10 | __DYNAMIC = 0; */ |
| 11 | SECTIONS |
| 12 | { |
| 13 | /* Read-only sections, merged into text segment: */ |
| 14 | .text : |
| 15 | { |
| 16 | arch/powerpc/cpu/mpc824x/start.o (.text*) |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 17 | lib/built-in.o (.text*) |
| 18 | net/built-in.o (.text*) |
| 19 | drivers/pci/built-in.o (.text*) |
| 20 | arch/powerpc/cpu/mpc824x/built-in.o (.text*) |
| 21 | board/mvblue/built-in.o (.text*) |
| 22 | arch/powerpc/lib/built-in.o (.text*) |
Wolfgang Denk | de550d6 | 2010-11-23 23:48:56 +0100 | [diff] [blame] | 23 | |
| 24 | . = DEFINED(env_offset) ? env_offset : .; |
| 25 | common/env_embedded.o (.ppcenv*) |
| 26 | |
| 27 | *(.text*) |
| 28 | . = ALIGN(16); |
| 29 | *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) |
| 30 | } |
| 31 | |
| 32 | /* Read-write section, merged into data segment: */ |
| 33 | . = (. + 0x0FFF) & 0xFFFFF000; |
| 34 | _erotext = .; |
| 35 | PROVIDE (erotext = .); |
| 36 | .reloc : |
| 37 | { |
Wolfgang Denk | de550d6 | 2010-11-23 23:48:56 +0100 | [diff] [blame] | 38 | _GOT2_TABLE_ = .; |
| 39 | KEEP(*(.got2)) |
Joakim Tjernlund | 9d8fbd1 | 2011-04-20 14:22:59 +0200 | [diff] [blame] | 40 | KEEP(*(.got)) |
| 41 | PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4); |
Wolfgang Denk | de550d6 | 2010-11-23 23:48:56 +0100 | [diff] [blame] | 42 | _FIXUP_TABLE_ = .; |
| 43 | KEEP(*(.fixup)) |
| 44 | } |
Joakim Tjernlund | 9d8fbd1 | 2011-04-20 14:22:59 +0200 | [diff] [blame] | 45 | __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1; |
Wolfgang Denk | de550d6 | 2010-11-23 23:48:56 +0100 | [diff] [blame] | 46 | __fixup_entries = (. - _FIXUP_TABLE_) >> 2; |
| 47 | |
| 48 | .data : |
| 49 | { |
| 50 | *(.data*) |
| 51 | *(.sdata*) |
| 52 | } |
| 53 | _edata = .; |
| 54 | PROVIDE (edata = .); |
| 55 | |
| 56 | . = .; |
Wolfgang Denk | de550d6 | 2010-11-23 23:48:56 +0100 | [diff] [blame] | 57 | |
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 58 | . = ALIGN(4); |
| 59 | .u_boot_list : { |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 60 | KEEP(*(SORT(.u_boot_list*))); |
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 61 | } |
| 62 | |
Wolfgang Denk | de550d6 | 2010-11-23 23:48:56 +0100 | [diff] [blame] | 63 | |
| 64 | . = .; |
| 65 | __start___ex_table = .; |
| 66 | __ex_table : { *(__ex_table) } |
| 67 | __stop___ex_table = .; |
| 68 | |
| 69 | . = ALIGN(4096); |
| 70 | __init_begin = .; |
| 71 | .text.init : { *(.text.init) } |
| 72 | .data.init : { *(.data.init) } |
| 73 | . = ALIGN(4096); |
| 74 | __init_end = .; |
| 75 | |
| 76 | __bss_start = .; |
| 77 | .bss (NOLOAD) : |
| 78 | { |
| 79 | *(.bss*) |
| 80 | *(.sbss*) |
| 81 | *(COMMON) |
| 82 | . = ALIGN(4); |
| 83 | } |
Simon Glass | 3929fb0 | 2013-03-14 06:54:53 +0000 | [diff] [blame] | 84 | __bss_end = . ; |
Wolfgang Denk | de550d6 | 2010-11-23 23:48:56 +0100 | [diff] [blame] | 85 | PROVIDE (end = .); |
| 86 | } |