diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2011-01-05 22:20:23 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2011-01-05 22:20:23 +0000 |
commit | 0366f9ef3969200de0b1cf0264b860fdac62b384 (patch) | |
tree | 5560083bb41caa7146aec7c5e48b7873b33bdcf2 /sys/arch/mvme88k | |
parent | 6481ccefe1fb3cbca0a95beb18a4fee6d2b82ffc (diff) |
Pass pmap_bootstrap() the memory range used by the PROM/BUG/firmware/whatever,
instead of assuming it is ``everything below the kernel image''.
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/mvme88k/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/mvme88k/machdep.c b/sys/arch/mvme88k/mvme88k/machdep.c index b410c696537..2adf88190f4 100644 --- a/sys/arch/mvme88k/mvme88k/machdep.c +++ b/sys/arch/mvme88k/mvme88k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.240 2010/12/31 21:38:08 miod Exp $ */ +/* $OpenBSD: machdep.c,v 1.241 2011/01/05 22:20:22 miod Exp $ */ /* * Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr. * Copyright (c) 1996 Nivas Madhur @@ -1009,7 +1009,7 @@ mvme_bootstrap() } #endif /* defined (MVME187) || defined (MVME197) */ - pmap_bootstrap(); + pmap_bootstrap(0, 0x10000); /* BUG needs 64KB */ #if defined (MVME187) || defined (MVME197) if (etherlen != 0) |