Alison Wang | 186fc4d | 2012-10-18 19:25:52 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000 |
| 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+ |
Alison Wang | 186fc4d | 2012-10-18 19:25:52 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | OUTPUT_ARCH(m68k) |
| 9 | |
| 10 | SECTIONS |
| 11 | { |
| 12 | /* Read-only sections, merged into text segment: */ |
| 13 | .text : |
| 14 | { |
| 15 | arch/m68k/cpu/mcf5445x/start.o (.text*) |
| 16 | |
| 17 | *(.text*) |
| 18 | } |
| 19 | _etext = .; |
| 20 | PROVIDE (etext = .); |
| 21 | .rodata : |
| 22 | { |
| 23 | *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) |
| 24 | } |
| 25 | |
| 26 | /* Read-write section, merged into data segment: */ |
| 27 | . = (. + 0x00FF) & 0xFFFFFF00; |
| 28 | _erotext = .; |
| 29 | PROVIDE (erotext = .); |
| 30 | |
| 31 | .reloc : |
| 32 | { |
| 33 | __got_start = .; |
| 34 | KEEP(*(.got)) |
| 35 | __got_end = .; |
| 36 | _GOT2_TABLE_ = .; |
| 37 | KEEP(*(.got2)) |
| 38 | _FIXUP_TABLE_ = .; |
| 39 | KEEP(*(.fixup)) |
| 40 | } |
| 41 | __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2; |
| 42 | __fixup_entries = (. - _FIXUP_TABLE_)>>2; |
| 43 | |
| 44 | .data : |
| 45 | { |
| 46 | *(.data*) |
| 47 | *(.sdata*) |
| 48 | } |
| 49 | _edata = .; |
| 50 | PROVIDE (edata = .); |
| 51 | |
| 52 | . = .; |
Jason Jin | f9a2d79 | 2012-10-25 14:51:42 +0800 | [diff] [blame] | 53 | |
| 54 | . = ALIGN(4); |
| 55 | .u_boot_list : { |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 56 | KEEP(*(SORT(.u_boot_list*))); |
Jason Jin | f9a2d79 | 2012-10-25 14:51:42 +0800 | [diff] [blame] | 57 | } |
Alison Wang | 186fc4d | 2012-10-18 19:25:52 +0000 | [diff] [blame] | 58 | |
| 59 | . = .; |
| 60 | __start___ex_table = .; |
| 61 | __ex_table : { *(__ex_table) } |
| 62 | __stop___ex_table = .; |
| 63 | |
| 64 | . = ALIGN(256); |
| 65 | __init_begin = .; |
| 66 | .text.init : { *(.text.init) } |
| 67 | .data.init : { *(.data.init) } |
| 68 | . = ALIGN(256); |
| 69 | __init_end = .; |
| 70 | |
| 71 | __bss_start = .; |
| 72 | .bss (NOLOAD) : |
| 73 | { |
| 74 | _sbss = .; |
| 75 | *(.bss*) |
| 76 | *(.sbss*) |
| 77 | *(COMMON) |
| 78 | . = ALIGN(4); |
| 79 | _ebss = .; |
| 80 | } |
Simon Glass | 3929fb0 | 2013-03-14 06:54:53 +0000 | [diff] [blame] | 81 | __bss_end = . ; |
Alison Wang | 186fc4d | 2012-10-18 19:25:52 +0000 | [diff] [blame] | 82 | PROVIDE (end = .); |
| 83 | } |