diff options
Diffstat (limited to 'ld/emulparams')
-rw-r--r-- | ld/emulparams/armelf_linux.sh | 4 | ||||
-rw-r--r-- | ld/emulparams/armelf_linux26.sh | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/ld/emulparams/armelf_linux.sh b/ld/emulparams/armelf_linux.sh index a0d740b..c1406ad 100644 --- a/ld/emulparams/armelf_linux.sh +++ b/ld/emulparams/armelf_linux.sh @@ -5,15 +5,15 @@ BIG_OUTPUT_FORMAT="elf32-bigarm" LITTLE_OUTPUT_FORMAT="elf32-littlearm" MAXPAGESIZE=0x8000 TEMPLATE_NAME=armelf - GENERATE_SHLIB_SCRIPT=yes +DATA_START_SYMBOLS='__data_start = . ;'; OTHER_TEXT_SECTIONS='*(.glue_7t) *(.glue_7)' OTHER_BSS_SYMBOLS='__bss_start__ = .;' OTHER_BSS_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ;' # This needs to be high enough so that we can load ld.so below it, -# yet low enough to stay away from the mmap area 0x40000000. +# yet low enough to stay away from the mmap area at 0x40000000. # Also, it is small enough so that relocs which are pointing # at absolute 0 will still be fixed up. TEXT_START_ADDR=0x02000000 diff --git a/ld/emulparams/armelf_linux26.sh b/ld/emulparams/armelf_linux26.sh index 7153ddc..ff02eaf 100644 --- a/ld/emulparams/armelf_linux26.sh +++ b/ld/emulparams/armelf_linux26.sh @@ -7,6 +7,10 @@ MAXPAGESIZE=0x8000 TEMPLATE_NAME=armelf GENERATE_SHLIB_SCRIPT=yes +DATA_START_SYMBOLS='__data_start = . ;'; +OTHER_BSS_SYMBOLS='__bss_start__ = .;' +OTHER_BSS_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ;' + # This needs to be high enough so that we can load ld.so below it, # yet low enough to stay away from the mmap area at 0x01100000. # Also, it is small enough so that relocs which are pointing |