diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 1999-09-27 03:04:08 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 1999-09-27 03:04:08 +0000 |
commit | 82f241da4f39bfa08da63222f1f6fa54a7faa975 (patch) | |
tree | 36df7c4e86adbd19385349b97d4e04f603505956 /sys/arch | |
parent | a153e6a3df9e9372ffd5bb4ac586d74149f4afe8 (diff) |
Made loader load at 0x3f0000
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/mvme68k/stand/bootsd/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/mvme68k/stand/bootxx/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/mvme68k/stand/bootxx/bootxx.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/mvme68k/stand/bootsd/Makefile b/sys/arch/mvme68k/stand/bootsd/Makefile index 33497d15719..e8cd3e25e5c 100644 --- a/sys/arch/mvme68k/stand/bootsd/Makefile +++ b/sys/arch/mvme68k/stand/bootsd/Makefile @@ -1,7 +1,7 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/10/93 -# $OpenBSD: Makefile,v 1.11 1999/09/26 18:09:03 smurph Exp $ +# $OpenBSD: Makefile,v 1.12 1999/09/27 03:04:06 smurph Exp $ -RELOC=0xCF0000 +RELOC=0x3F0000 S= ${.CURDIR}/../../../.. DEFS= diff --git a/sys/arch/mvme68k/stand/bootxx/Makefile b/sys/arch/mvme68k/stand/bootxx/Makefile index 870d012a003..fe03b598eb6 100644 --- a/sys/arch/mvme68k/stand/bootxx/Makefile +++ b/sys/arch/mvme68k/stand/bootxx/Makefile @@ -1,7 +1,7 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/10/93 -# $OpenBSD: Makefile,v 1.4 1999/09/26 18:09:04 smurph Exp $ +# $OpenBSD: Makefile,v 1.5 1999/09/27 03:04:07 smurph Exp $ -RELOC=0xAF0000 +RELOC=0x1F0000 S= ${.CURDIR}/../../../.. DEFS= diff --git a/sys/arch/mvme68k/stand/bootxx/bootxx.c b/sys/arch/mvme68k/stand/bootxx/bootxx.c index 22490a0aa69..88bd53a51ce 100644 --- a/sys/arch/mvme68k/stand/bootxx/bootxx.c +++ b/sys/arch/mvme68k/stand/bootxx/bootxx.c @@ -51,7 +51,7 @@ /* * Boot device is derived from ROM provided information. */ -#define LOADADDR 0xCF0000 /* where to load level 2 bootstrap */ +#define LOADADDR 0x3F0000 /* where to load level 2 bootstrap */ /* (l2 must relocate itself) */ /* This determines the largest boot program we can load. */ |