blob: 96b63358fe36b6c102230369cf0a3fdd6595d369 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# If you change this file, please alsolook at files which source this one:
# shlelf_obsd.sh
. ${srcdir}/emulparams/shelf.sh
OUTPUT_FORMAT="elf32-sh-obsd"
TEXT_START_ADDR=0x400000
MAXPAGESIZE=0x10000
COMMONPAGESIZE=0x1000
GENERATE_PIE_SCRIPT=yes
TRAP=0xc3c3c3c3
DATA_START_SYMBOLS='__data_start = . ;';
ENTRY=__start
unset EMBEDDED
unset OTHER_SECTIONS
. ${srcdir}/emulparams/elf_obsd.sh
# No nx bit, so don't bother to pad between .text and .rodata
unset PAD_RO
|