diff options
author | dfr <dfr@FreeBSD.org> | 1998-07-30 08:12:14 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 1998-07-30 08:12:14 +0000 |
commit | b99598d6ac4d9ac2608d631b3b4b74975bd99cf8 (patch) | |
tree | 935822d6854aeaa0ae0ff66324686b434132281c /sys/conf | |
parent | 62e36a420d4036bffb7fbfe5b3fcb9bfa937034b (diff) | |
download | FreeBSD-src-b99598d6ac4d9ac2608d631b3b4b74975bd99cf8.zip FreeBSD-src-b99598d6ac4d9ac2608d631b3b4b74975bd99cf8.tar.gz |
Change load address to 0xfffffc0000300000 to help support AS200.
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/Makefile.alpha | 4 | ||||
-rw-r--r-- | sys/conf/ldscript.alpha | 2 | ||||
-rw-r--r-- | sys/conf/ldscript.powerpc | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/sys/conf/Makefile.alpha b/sys/conf/Makefile.alpha index 7b27c96..c98b3d7 100644 --- a/sys/conf/Makefile.alpha +++ b/sys/conf/Makefile.alpha @@ -1,7 +1,7 @@ # Makefile.alpha -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.alpha 7.1 5/10/91 -# $Id: Makefile.alpha,v 1.4 1998/07/15 20:12:54 dfr Exp $ +# $Id: Makefile.alpha,v 1.5 1998/07/22 08:23:26 dfr Exp $ # # Makefile for FreeBSD # @@ -43,7 +43,7 @@ INCLUDES+= -I/usr/include .endif COPTS= ${INCLUDES} ${IDENT} -DKERNEL -include opt_global.h -U__NetBSD__ CFLAGS= ${COPTFLAGS} ${CWARNFLAGS} ${DEBUG} ${COPTS} -mno-fp-regs -Wa,-mev56 -LOAD_ADDRESS?= 0xfffffc0000230000 +LOAD_ADDRESS?= 0xfffffc0000300000 DEFINED_PROF= ${PROF} .if defined(PROF) CFLAGS+= -malign-functions=4 diff --git a/sys/conf/ldscript.alpha b/sys/conf/ldscript.alpha index 7b405ad..eac78dd 100644 --- a/sys/conf/ldscript.alpha +++ b/sys/conf/ldscript.alpha @@ -8,7 +8,7 @@ SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/egcs/lib); SEARCH_ SECTIONS { /* Read-only sections, merged into text segment: */ - . = 0xfffffc0000230000 + SIZEOF_HEADERS; + . = 0xfffffc0000300000 + SIZEOF_HEADERS; .interp : { *(.interp) } .hash : { *(.hash) } .dynsym : { *(.dynsym) } diff --git a/sys/conf/ldscript.powerpc b/sys/conf/ldscript.powerpc index 7b405ad..eac78dd 100644 --- a/sys/conf/ldscript.powerpc +++ b/sys/conf/ldscript.powerpc @@ -8,7 +8,7 @@ SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/egcs/lib); SEARCH_ SECTIONS { /* Read-only sections, merged into text segment: */ - . = 0xfffffc0000230000 + SIZEOF_HEADERS; + . = 0xfffffc0000300000 + SIZEOF_HEADERS; .interp : { *(.interp) } .hash : { *(.hash) } .dynsym : { *(.dynsym) } |