From 0366f9ef3969200de0b1cf0264b860fdac62b384 Mon Sep 17 00:00:00 2001 From: Miod Vallat Date: Wed, 5 Jan 2011 22:20:23 +0000 Subject: Pass pmap_bootstrap() the memory range used by the PROM/BUG/firmware/whatever, instead of assuming it is ``everything below the kernel image''. --- sys/arch/mvme88k/mvme88k/machdep.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/arch/mvme88k') 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) -- cgit v1.2.3