2 * Copyright 2009-2012 Freescale Semiconductor, Inc.
4 * SPDX-License-Identifier: GPL-2.0+
9 #ifndef CONFIG_SYS_MONITOR_LEN
10 #define CONFIG_SYS_MONITOR_LEN 0x80000
14 /* Do we need any of these for elf?
24 /* Read-only sections, merged into text segment: */
26 .interp : { *(.interp) }
35 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
38 /* Read-write section, merged into data segment: */
39 . = (. + 0x00FF) & 0xFFFFFF00;
41 PROVIDE (erotext = .);
47 PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4);
51 __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1;
52 __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
65 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) }
80 .bootpg ADDR(.text) - 0x1000 :
82 KEEP(arch/powerpc/cpu/mpc85xx/start.o (.bootpg))
85 . = ADDR(.text) + CONFIG_SYS_MONITOR_LEN;