2 * (C) Copyright 2003-2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * André Schwarz, Matrix Vision GmbH, as@matrix-vision.de
7 * SPDX-License-Identifier: GPL-2.0+
14 /* Read-only sections, merged into text segment: */
17 /* WARNING - the following is hand-optimized to fit within */
18 /* the first two sectors (=8KB) of our S29GL flash chip */
19 arch/powerpc/cpu/mpc5xxx/start.o (.text*)
20 arch/powerpc/cpu/mpc5xxx/traps.o (.text*)
21 board/matrix_vision/common/libmatrix_vision.o (.text*)
23 /* This is only needed to force failure if size of above code will ever */
24 /* increase and grow into reserved space. */
25 . = ALIGN(0x2000); /* location counter has to be 0x4000 now */
26 . += 0x4000; /* ->0x8000, i.e. move to env_offset */
28 . = env_offset; /* ld error as soon as above ALIGN misplaces lc */
29 common/env_embedded.o (.ppcenv)
33 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
36 /* Read-write section, merged into data segment: */
37 . = (. + 0x0FFF) & 0xFFFFF000;
39 PROVIDE (erotext = .);
45 PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4);
49 __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1;
50 __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
64 KEEP(*(SORT(.u_boot_list*)));
69 __start___ex_table = .;
70 __ex_table : { *(__ex_table) }
71 __stop___ex_table = .;
75 .text.init : { *(.text.init) }
76 .data.init : { *(.data.init) }