blob: 75a133717040ca66a6cfbe4f6c1a04c52821920a [file] [log] [blame]
wdenkefee1702002-07-20 20:14:13 +00001/*
2 * (C) Copyright 2001
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkefee1702002-07-20 20:14:13 +00006 */
7
8OUTPUT_ARCH(powerpc)
wdenkefee1702002-07-20 20:14:13 +00009/* Do we need any of these for elf?
10 __DYNAMIC = 0; */
11SECTIONS
12{
13 /* Read-only sections, merged into text segment: */
14 . = + SIZEOF_HEADERS;
15 .interp : { *(.interp) }
16 .hash : { *(.hash) }
17 .dynsym : { *(.dynsym) }
18 .dynstr : { *(.dynstr) }
19 .rel.text : { *(.rel.text) }
Wolfgang Denk53677ef2008-05-20 16:00:29 +020020 .rela.text : { *(.rela.text) }
wdenkefee1702002-07-20 20:14:13 +000021 .rel.data : { *(.rel.data) }
Wolfgang Denk53677ef2008-05-20 16:00:29 +020022 .rela.data : { *(.rela.data) }
23 .rel.rodata : { *(.rel.rodata) }
24 .rela.rodata : { *(.rela.rodata) }
wdenkefee1702002-07-20 20:14:13 +000025 .rel.got : { *(.rel.got) }
26 .rela.got : { *(.rela.got) }
27 .rel.ctors : { *(.rel.ctors) }
28 .rela.ctors : { *(.rela.ctors) }
29 .rel.dtors : { *(.rel.dtors) }
30 .rela.dtors : { *(.rela.dtors) }
31 .rel.bss : { *(.rel.bss) }
32 .rela.bss : { *(.rela.bss) }
33 .rel.plt : { *(.rel.plt) }
34 .rela.plt : { *(.rela.plt) }
35 .init : { *(.init) }
36 .plt : { *(.plt) }
37 .text :
38 {
39 /* WARNING - the following is hand-optimized to fit within */
40 /* the sector layout of our flash chips! XXX FIXME XXX */
41
Stefan Roesea47a12b2010-04-15 16:07:28 +020042 arch/powerpc/cpu/mpc8xx/start.o (.text)
wdenkefee1702002-07-20 20:14:13 +000043 common/dlmalloc.o (.text)
Peter Tyser78acc472010-04-12 22:28:05 -050044 lib/vsprintf.o (.text)
45 lib/crc32.o (.text)
Stefan Roesea47a12b2010-04-15 16:07:28 +020046 arch/powerpc/lib/extable.o (.text)
wdenkefee1702002-07-20 20:14:13 +000047
48 . = env_offset;
Jean-Christophe PLAGNIOL-VILLARD0cf4fd32008-09-10 22:48:01 +020049 common/env_embedded.o(.text)
wdenkefee1702002-07-20 20:14:13 +000050
51 *(.text)
wdenkefee1702002-07-20 20:14:13 +000052 *(.got1)
53 }
54 _etext = .;
55 PROVIDE (etext = .);
56 .rodata :
57 {
58 *(.rodata)
59 *(.rodata1)
Wolfgang Denk74812662005-12-12 16:06:05 +010060 *(.rodata.str1.4)
61 *(.eh_frame)
wdenkefee1702002-07-20 20:14:13 +000062 }
63 .fini : { *(.fini) } =0
64 .ctors : { *(.ctors) }
65 .dtors : { *(.dtors) }
66
67 /* Read-write section, merged into data segment: */
68 . = (. + 0x0FFF) & 0xFFFFF000;
69 _erotext = .;
70 PROVIDE (erotext = .);
71 .reloc :
72 {
73 *(.got)
74 _GOT2_TABLE_ = .;
75 *(.got2)
76 _FIXUP_TABLE_ = .;
77 *(.fixup)
78 }
79 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
80 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
81
82 .data :
83 {
84 *(.data)
85 *(.data1)
86 *(.sdata)
87 *(.sdata2)
88 *(.dynamic)
89 CONSTRUCTORS
90 }
91 _edata = .;
92 PROVIDE (edata = .);
93
wdenk8bde7f72003-06-27 21:31:46 +000094
Marek Vasut55675142012-10-12 10:27:03 +000095 . = ALIGN(4);
96 .u_boot_list : {
Albert ARIBAUDef123c52013-02-25 00:59:00 +000097 KEEP(*(SORT(.u_boot_list*)));
Marek Vasut55675142012-10-12 10:27:03 +000098 }
99
wdenk8bde7f72003-06-27 21:31:46 +0000100
wdenkefee1702002-07-20 20:14:13 +0000101 __start___ex_table = .;
102 __ex_table : { *(__ex_table) }
103 __stop___ex_table = .;
104
105 . = ALIGN(4096);
106 __init_begin = .;
107 .text.init : { *(.text.init) }
108 .data.init : { *(.data.init) }
109 . = ALIGN(4096);
110 __init_end = .;
111
112 __bss_start = .;
113 .bss :
114 {
115 *(.sbss) *(.scommon)
116 *(.dynbss)
117 *(.bss)
118 *(COMMON)
119 }
Albert ARIBAUD59930532013-03-30 00:19:53 +0000120 __bss_end = . ;
wdenkefee1702002-07-20 20:14:13 +0000121 PROVIDE (end = .);
122}