]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
2001-02-11 Philip Blundell <philb@gnu.org>
authorPhil Blundell <philb@gnu.org>
Sun, 11 Feb 2001 12:05:28 +0000 (12:05 +0000)
committerPhil Blundell <philb@gnu.org>
Sun, 11 Feb 2001 12:05:28 +0000 (12:05 +0000)
* Makefile.am: Remove mention of earmelf_linux26.o.
* Makefile.in: Regenerate.
* emulparams/armelf_linux.sh (TEXT_START_ADDR): Set to 0x8000.
* emulparams/armelf_linux26.sh: Delete.
* configure.tgt: Remove mention of armelf_linux26 emulation.

ld/ChangeLog
ld/Makefile.am
ld/Makefile.in
ld/configure.tgt
ld/emulparams/armelf_linux.sh
ld/emulparams/armelf_linux26.sh [deleted file]

index d64a72173b95b94d185708c96aa73943611a9df1..88192ddb381b033f29217b795b4bb28f33bb8016 100644 (file)
@@ -1,3 +1,11 @@
+2001-02-11  Philip Blundell  <philb@gnu.org>
+
+       * Makefile.am: Remove mention of earmelf_linux26.o.
+       * Makefile.in: Regenerate.
+       * emulparams/armelf_linux.sh (TEXT_START_ADDR): Set to 0x8000.
+       * emulparams/armelf_linux26.sh: Delete.
+       * configure.tgt: Remove mention of armelf_linux26 emulation.
+
 2001-02-09  David Mosberger  <davidm@hpl.hp.com>
 
        * emulparams/elf64_ia64.sh (OTHER_READONLY_SECTIONS): Add
index 0b6d10ced169cc19264a5b9b6cf480ff53260bcb..4657dec5f34784cee5e70fbd9c4ed4172a641a99 100644 (file)
@@ -110,7 +110,6 @@ ALL_EMULATIONS = \
        earmcoff.o \
        earmelf.o \
        earmelf_linux.o \
-       earmelf_linux26.o \
        earmelf_oabi.o \
        earmnbsd.o \
        earmpe.o \
index 705963c53ccbf8352714f5a662016e0f876afe92..72f5500aefe5c935fc785a588775172a68662fd3 100644 (file)
@@ -218,7 +218,6 @@ ALL_EMULATIONS = \
        earmcoff.o \
        earmelf.o \
        earmelf_linux.o \
-       earmelf_linux26.o \
        earmelf_oabi.o \
        earmnbsd.o \
        earmpe.o \
index dd0e1663e8b721d81ea93cff0d063f9218fd131d..dea7b9fc01a73b18ed75d18929ecb81db08756c3 100644 (file)
@@ -172,7 +172,7 @@ arm-*-netbsd*)              targ_emul=armnbsd ;;
 arm-*-rtems*)          targ_emul=armelf ;;
 arm-*-elf)             targ_emul=armelf ;;
 arm-*-oabi)            targ_emul=armelf_oabi ;;
-arm*-*-linux-gnu*)     targ_emul=armelf_linux; targ_extra_emuls="armelf_linux26 armelf" ;;
+arm*-*-linux-gnu*)     targ_emul=armelf_linux; targ_extra_emuls=armelf ;;
 arm*-*-uclinux*)       targ_emul=armelf_linux; targ_extra_emuls=armelf ;;
 arm*-*-conix*)         targ_emul=armelf ;;
 thumb-*-linux-gnu* | thumb-*-uclinux*) targ_emul=armelf_linux; targ_extra_emuls=armelf ;;
index c5b963ff350a2aced6357eaeebaf570701e13b4f..d04d967b87a78c99f0a3025afef36eceae7cb674 100644 (file)
@@ -13,8 +13,4 @@ OTHER_TEXT_SECTIONS='*(.glue_7t) *(.glue_7)'
 OTHER_BSS_SYMBOLS='__bss_start__ = .;'
 OTHER_BSS_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ; __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 0x40000000.
-# Also, it is small enough so that relocs which are pointing
-# at absolute 0 will still be fixed up.
-TEXT_START_ADDR=0x02000000
+TEXT_START_ADDR=0x00008000
diff --git a/ld/emulparams/armelf_linux26.sh b/ld/emulparams/armelf_linux26.sh
deleted file mode 100644 (file)
index 89cd9fb..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-ARCH=arm
-SCRIPT_NAME=elf
-OUTPUT_FORMAT="elf32-littlearm"
-BIG_OUTPUT_FORMAT="elf32-bigarm"
-LITTLE_OUTPUT_FORMAT="elf32-littlearm"
-MAXPAGESIZE=0x8000
-TEMPLATE_NAME=elf32
-EXTRA_EM_FILE=armelf
-GENERATE_SHLIB_SCRIPT=yes
-
-DATA_START_SYMBOLS='__data_start = . ;';
-OTHER_BSS_SYMBOLS='__bss_start__ = .;'
-OTHER_BSS_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ; __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
-# at absolute 0 will still be fixed up.
-# These values give us about 0.5MB for ld.so, 16.5MB for user 
-# programs, and 15MB for mmap which seems a reasonable compromise.
-TEXT_START_ADDR=0x00080000