| * Daniel Engström, Omicron Ceti AB, daniel@omicron.se. |
| * SPDX-License-Identifier: GPL-2.0+ |
| OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386") |
| . = CONFIG_SYS_TEXT_BASE; /* Location of bootcode in flash */ |
| KEEP(*(SORT(.u_boot_list*))); |
| .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) } |
| .dynsym : { *(.dynsym*) } |
| .bss __rel_dyn_start (OVERLAY) : { |
| /DISCARD/ : { *(.dynstr*) } |
| /DISCARD/ : { *(.dynamic*) } |
| /DISCARD/ : { *(.interp*) } |
| #ifdef CONFIG_X86_RESET_VECTOR |
| * The following expressions place the 16-bit Real-Mode code and |
| * Reset Vector at the end of the Flash ROM |
| . = START_16 - RESET_SEG_START; |
| .start16 : AT (START_16) { |
| . = RESET_VEC_LOC - RESET_SEG_START; |
| .resetvec : AT (RESET_VEC_LOC) { |