]> Git Repo - J-u-boot.git/blame - board/adder/u-boot.lds
designware_i2c: disable i2c controller during target address setup
[J-u-boot.git] / board / adder / u-boot.lds
CommitLineData
2d24a3a7
WD
1/*
2 * (C) Copyright 2001-2003
3 * Wolfgang Denk, DENX Software Engineering, [email protected].
4 *
5 * Modified by Yuli Barcohen <[email protected]>
6 *
1a459660 7 * SPDX-License-Identifier: GPL-2.0+
2d24a3a7
WD
8 */
9
10OUTPUT_ARCH(powerpc)
11SECTIONS
12{
13 /* Read-only sections, merged into text segment: */
14 . = + SIZEOF_HEADERS;
2d24a3a7
WD
15 .text :
16 {
cd0402a7
WD
17 arch/powerpc/cpu/mpc8xx/start.o (.text*)
18 arch/powerpc/cpu/mpc8xx/traps.o (.text*)
19 *(.text*)
2d24a3a7 20 . = ALIGN(16);
f62fb999 21 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
2d24a3a7 22 }
2d24a3a7
WD
23
24 /* Read-write section, merged into data segment: */
25 . = (. + 0x0FFF) & 0xFFFFF000;
26 _erotext = .;
27 PROVIDE (erotext = .);
28 .reloc :
29 {
2d24a3a7 30 _GOT2_TABLE_ = .;
cd0402a7 31 KEEP(*(.got2))
9d8fbd1b
JT
32 KEEP(*(.got))
33 PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4);
2d24a3a7 34 _FIXUP_TABLE_ = .;
cd0402a7 35 KEEP(*(.fixup))
2d24a3a7 36 }
9d8fbd1b 37 __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1;
2d24a3a7
WD
38 __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
39
40 .data :
41 {
cd0402a7
WD
42 *(.data*)
43 *(.sdata*)
2d24a3a7
WD
44 }
45 _edata = .;
46 PROVIDE (edata = .);
47
807d5d73 48 . = .;
2d24a3a7 49
55675142
MV
50 . = ALIGN(4);
51 .u_boot_list : {
ef123c52 52 KEEP(*(SORT(.u_boot_list*)));
55675142
MV
53 }
54
2d24a3a7 55
807d5d73 56 . = .;
2d24a3a7
WD
57 __start___ex_table = .;
58 __ex_table : { *(__ex_table) }
59 __stop___ex_table = .;
60
61 . = ALIGN(4096);
62 __init_begin = .;
63 .text.init : { *(.text.init) }
64 .data.init : { *(.data.init) }
65 . = ALIGN(4096);
66 __init_end = .;
67
68 __bss_start = .;
64134f01 69 .bss (NOLOAD) :
2d24a3a7 70 {
cd0402a7
WD
71 *(.bss*)
72 *(.sbss*)
2d24a3a7 73 *(COMMON)
9b827cf1 74 . = ALIGN(4);
2d24a3a7 75 }
3929fb0a 76 __bss_end = . ;
2d24a3a7
WD
77 PROVIDE (end = .);
78}
79ENTRY(_start)
This page took 0.272645 seconds and 4 git commands to generate.