ce46249c15
bfin, msp, and score all used an extra parameter to genscripts.sh to select a "customizer_script" different from the standard one named from the emulation. This patch renames the scripts to avoid the need, tidying them in the process. * emulparams/elf32bfin.sh: Rename from bfin.sh. * emulparams/elf32bfinfd.sh: Update to suit. * emulparams/: Delete. * emulparams/msp430.sh: Rename from msp430all.sh. Remove MSP430_NAME and msp430X vars. * emulparams/msp430X.sh: New. * emulparams/: Delete. * emulparams/score3_elf.sh: Rename from scoreelf.sh. Remove SCORE_NAME and score7_elf ARCH setting. * emulparams/score7_elf.sh: New. * Makefile.am (eelf32bfin.c, eelf32bfinfd.c): Update dependencies. (emsp430.c, emsp430X.c, escore3_elf.c, escore7_elf.c): Likewise. * Makefile.in: Regenerate. * genscripts.sh: Delete customizer_script param.
34 lines
813 B
Bash
34 lines
813 B
Bash
MACHINE=
|
|
SCRIPT_NAME=elf
|
|
TEMPLATE_NAME=elf32
|
|
EXTRA_EM_FILE=scoreelf
|
|
OUTPUT_FORMAT="elf32-bigscore"
|
|
BIG_OUTPUT_FORMAT="elf32-bigscore"
|
|
LITTLE_OUTPUT_FORMAT="elf32-littlescore"
|
|
NO_RELA_RELOCS=yes
|
|
GROUP="-lm -lc -lglsim -lgcc -lstdc++"
|
|
|
|
TEXT_START_ADDR=0x00000000
|
|
MAXPAGESIZE=256
|
|
NONPAGED_TEXT_START_ADDR=0x0400000
|
|
SHLIB_TEXT_START_ADDR=0x5ffe0000
|
|
OTHER_GOT_SYMBOLS='
|
|
_gp = ALIGN(16) + 0x3ff0;
|
|
'
|
|
|
|
OTHER_BSS_START_SYMBOLS='_bss_start__ = . + ALIGN(4);'
|
|
OTHER_BSS_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ; __end__ = . ;'
|
|
DATA_START_SYMBOLS='_fdata = . ;'
|
|
SDATA_START_SYMBOLS='_sdata_begin = . ;'
|
|
OTHER_BSS_SYMBOLS='
|
|
_bss_start = ALIGN(4) ;
|
|
'
|
|
# This sets the stack to the top of the simulator memory (2^19 bytes).
|
|
STACK_ADDR=0x8000000
|
|
|
|
ARCH=score3
|
|
MACHINE=
|
|
ENTRY=_start
|
|
EMBEDDED=yes
|
|
GENERATE_SHLIB_SCRIPT=yes
|