diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-04-16 15:37:05 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-04-16 15:37:05 +0000 |
commit | 7bc61055c1fe6b606358b09151199e27ede09983 (patch) | |
tree | 3b0807d1d46a1f4bc75b715c802738c7480ecc15 /sys/arch/mvme68k/stand/bootxx | |
parent | ea04dbe7ca5f4286c044fe451b80e1e064157350 (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/arch/mvme68k/stand/bootxx')
-rw-r--r-- | sys/arch/mvme68k/stand/bootxx/bootxx.c | 4 |
1 files changed, 2 insertions, 2 deletions
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. */ |