| * Copyright 2009-2012 Freescale Semiconductor, Inc. |
| * SPDX-License-Identifier: GPL-2.0+ |
| #ifndef CONFIG_SYS_MONITOR_LEN |
| #define CONFIG_SYS_MONITOR_LEN 0x80000 |
| /* Do we need any of these for elf? |
| /* Read-only sections, merged into text segment: */ |
| *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) |
| /* Read-write section, merged into data segment: */ |
| . = (. + 0x00FF) & 0xFFFFFF00; |
| PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4); |
| __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1; |
| __fixup_entries = (. - _FIXUP_TABLE_) >> 2; |
| KEEP(*(SORT(.u_boot_list*))); |
| __ex_table : { *(__ex_table) } |
| .text.init : { *(.text.init) } |
| .data.init : { *(.data.init) } |
| .bootpg ADDR(.text) - 0x1000 : |
| KEEP(arch/powerpc/cpu/mpc85xx/start.o (.bootpg)) |
| . = ADDR(.text) + CONFIG_SYS_MONITOR_LEN; |