mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
us up to version 2.17.50.20070703, at the last GPLv2 commit. Amongst others, this added upstream support for some FreeBSD-specific things that we previously had to manually hack in, such as the OSABI label support, and so on. There are also quite a number of new files, some for cpu's (e.g. SPU) that we may or may not be interested in, but those can be cleaned up later on, if needed.
35 lines
1.1 KiB
Bash
35 lines
1.1 KiB
Bash
MACHINE=
|
|
SCRIPT_NAME=elf
|
|
OUTPUT_FORMAT="elf32-littlearm"
|
|
BIG_OUTPUT_FORMAT="elf32-bigarm"
|
|
LITTLE_OUTPUT_FORMAT="elf32-littlearm"
|
|
TEXT_START_ADDR=0x8000
|
|
TEMPLATE_NAME=elf32
|
|
EXTRA_EM_FILE=armelf
|
|
OTHER_TEXT_SECTIONS='*(.glue_7t) *(.glue_7) *(.vfp11_veneer)'
|
|
OTHER_BSS_SYMBOLS='__bss_start__ = .;'
|
|
OTHER_BSS_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ;'
|
|
OTHER_END_SYMBOLS='__end__ = . ;'
|
|
OTHER_SECTIONS='.note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }'
|
|
ATTRS_SECTIONS='.ARM.attributes 0 : { KEEP (*(.ARM.attributes)) KEEP (*(.gnu.attributes)) }'
|
|
OTHER_READONLY_SECTIONS="
|
|
.ARM.extab ${RELOCATING-0} : { *(.ARM.extab${RELOCATING+* .gnu.linkonce.armextab.*}) }
|
|
${RELOCATING+ __exidx_start = .; }
|
|
.ARM.exidx ${RELOCATING-0} : { *(.ARM.exidx${RELOCATING+* .gnu.linkonce.armexidx.*}) }
|
|
${RELOCATING+ __exidx_end = .; }"
|
|
|
|
DATA_START_SYMBOLS='__data_start = . ;';
|
|
|
|
GENERATE_SHLIB_SCRIPT=yes
|
|
|
|
ARCH=arm
|
|
MACHINE=
|
|
MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
|
|
ENTRY=_start
|
|
EMBEDDED=yes
|
|
|
|
# This sets the stack to the top of the simulator memory (2^19 bytes).
|
|
STACK_ADDR=0x80000
|
|
|
|
# ARM does not support .s* sections.
|
|
NO_SMALL_DATA=yes
|