From 2d2ba9f6b47182b2d48081144cc208dca019a94e Mon Sep 17 00:00:00 2001 From: dg Date: Thu, 11 Mar 1999 18:28:46 +0000 Subject: Increased kernel virtual address space to 1GB. NOTE: You MUST have fixed bootblocks in order to boot the kernel after this! Also note that this change breaks BSDI BSD/OS compatibility. Also increased default NKPT to 17 so that FreeBSD can boot on machines with >=2GB of RAM. Booting on machines with exactly 4GB requires other patches, not included. --- sys/conf/Makefile.i386 | 4 ++-- sys/conf/Makefile.powerpc | 4 ++-- sys/conf/ldscript.amd64 | 2 +- sys/conf/ldscript.i386 | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) (limited to 'sys/conf') diff --git a/sys/conf/Makefile.i386 b/sys/conf/Makefile.i386 index d2cbba1..36b9790 100644 --- a/sys/conf/Makefile.i386 +++ b/sys/conf/Makefile.i386 @@ -1,7 +1,7 @@ # Makefile.i386 -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $Id: Makefile.i386,v 1.139 1999/02/14 13:56:15 des Exp $ +# $Id: Makefile.i386,v 1.140 1999/03/01 09:54:51 dt Exp $ # # Makefile for FreeBSD # @@ -56,7 +56,7 @@ CFLAGS+= -elf CFLAGS+= -aout .endif -LOAD_ADDRESS?= F0100000 +LOAD_ADDRESS?= C0100000 DEFINED_PROF= ${PROF} .if defined(PROF) CFLAGS+= -malign-functions=4 diff --git a/sys/conf/Makefile.powerpc b/sys/conf/Makefile.powerpc index d2cbba1..36b9790 100644 --- a/sys/conf/Makefile.powerpc +++ b/sys/conf/Makefile.powerpc @@ -1,7 +1,7 @@ # Makefile.i386 -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $Id: Makefile.i386,v 1.139 1999/02/14 13:56:15 des Exp $ +# $Id: Makefile.i386,v 1.140 1999/03/01 09:54:51 dt Exp $ # # Makefile for FreeBSD # @@ -56,7 +56,7 @@ CFLAGS+= -elf CFLAGS+= -aout .endif -LOAD_ADDRESS?= F0100000 +LOAD_ADDRESS?= C0100000 DEFINED_PROF= ${PROF} .if defined(PROF) CFLAGS+= -malign-functions=4 diff --git a/sys/conf/ldscript.amd64 b/sys/conf/ldscript.amd64 index e5d3b90..89573fe 100644 --- a/sys/conf/ldscript.amd64 +++ b/sys/conf/ldscript.amd64 @@ -5,7 +5,7 @@ SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/obj/elf/home/src/tmp/usr/i386-unknown-free SECTIONS { /* Read-only sections, merged into text segment: */ - . = 0xf0100000 + SIZEOF_HEADERS; + . = 0xc0100000 + SIZEOF_HEADERS; .interp : { *(.interp) } .hash : { *(.hash) } .dynsym : { *(.dynsym) } diff --git a/sys/conf/ldscript.i386 b/sys/conf/ldscript.i386 index e5d3b90..89573fe 100644 --- a/sys/conf/ldscript.i386 +++ b/sys/conf/ldscript.i386 @@ -5,7 +5,7 @@ SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/obj/elf/home/src/tmp/usr/i386-unknown-free SECTIONS { /* Read-only sections, merged into text segment: */ - . = 0xf0100000 + SIZEOF_HEADERS; + . = 0xc0100000 + SIZEOF_HEADERS; .interp : { *(.interp) } .hash : { *(.hash) } .dynsym : { *(.dynsym) } -- cgit v1.1