summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2002-04-16 15:37:05 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2002-04-16 15:37:05 +0000
commit7bc61055c1fe6b606358b09151199e27ede09983 (patch)
tree3b0807d1d46a1f4bc75b715c802738c7480ecc15 /sys
parentea04dbe7ca5f4286c044fe451b80e1e064157350 (diff)
Move the stage2 boot block load address higher, so that it can load
kernel larger than 4MB correctly again, and still work on 8MB boards.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/mvme68k/stand/bootsd/Makefile4
-rw-r--r--sys/arch/mvme68k/stand/bootst/Makefile4
-rw-r--r--sys/arch/mvme68k/stand/bootxx/bootxx.c4
-rw-r--r--sys/arch/mvme68k/stand/netboot/Makefile4
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/mvme68k/stand/bootsd/Makefile b/sys/arch/mvme68k/stand/bootsd/Makefile
index e8cd3e25e5c..bb4bd848608 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.12 1999/09/27 03:04:06 smurph Exp $
+# $OpenBSD: Makefile,v 1.13 2002/04/16 15:37:00 miod Exp $
-RELOC=0x3F0000
+RELOC=0x6F0000
S= ${.CURDIR}/../../../..
DEFS=
diff --git a/sys/arch/mvme68k/stand/bootst/Makefile b/sys/arch/mvme68k/stand/bootst/Makefile
index 82d4e27aeac..8e58d3cc27b 100644
--- a/sys/arch/mvme68k/stand/bootst/Makefile
+++ b/sys/arch/mvme68k/stand/bootst/Makefile
@@ -1,7 +1,7 @@
# from: @(#)Makefile 8.1 (Berkeley) 6/10/93
-# $OpenBSD: Makefile,v 1.9 1997/10/20 00:33:43 deraadt Exp $
+# $OpenBSD: Makefile,v 1.10 2002/04/16 15:37:04 miod Exp $
-RELOC=0x3F0000
+RELOC=0x6F0000
SIZE?= size
S= ${.CURDIR}/../../../..
diff --git a/sys/arch/mvme68k/stand/bootxx/bootxx.c b/sys/arch/mvme68k/stand/bootxx/bootxx.c
index 27bfa242dc4..54a6472e58b 100644
--- a/sys/arch/mvme68k/stand/bootxx/bootxx.c
+++ b/sys/arch/mvme68k/stand/bootxx/bootxx.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bootxx.c,v 1.5 2002/03/14 03:15:56 millert Exp $ */
+/* $OpenBSD: bootxx.c,v 1.6 2002/04/16 15:37:04 miod Exp $ */
/* $NetBSD: bootxx.c,v 1.5 1995/10/13 21:44:57 gwr Exp $ */
/*
@@ -52,7 +52,7 @@
/*
* Boot device is derived from ROM provided information.
*/
-#define LOADADDR 0x3F0000 /* where to load level 2 bootstrap */
+#define LOADADDR 0x6F0000 /* where to load level 2 bootstrap */
/* (l2 must relocate itself) */
/* This determines the largest boot program we can load. */
diff --git a/sys/arch/mvme68k/stand/netboot/Makefile b/sys/arch/mvme68k/stand/netboot/Makefile
index ba9e6d8dd53..5982ab54a29 100644
--- a/sys/arch/mvme68k/stand/netboot/Makefile
+++ b/sys/arch/mvme68k/stand/netboot/Makefile
@@ -1,6 +1,6 @@
-# $OpenBSD: Makefile,v 1.10 2000/01/24 05:20:56 smurph Exp $
+# $OpenBSD: Makefile,v 1.11 2002/04/16 15:37:04 miod Exp $
-RELOC=0x3F0000
+RELOC=0x6F0000
SIZE?= size
S= ${.CURDIR}/../../../..