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/luna88k | |
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/luna88k')
-rw-r--r-- | sys/arch/luna88k/luna88k/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/luna88k/luna88k/machdep.c b/sys/arch/luna88k/luna88k/machdep.c index a5e6d7c9408..2340641b315 100644 --- a/sys/arch/luna88k/luna88k/machdep.c +++ b/sys/arch/luna88k/luna88k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.74 2011/01/02 13:39:38 miod Exp $ */ +/* $OpenBSD: machdep.c,v 1.75 2011/01/05 22:20:22 miod Exp $ */ /* * Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr. * Copyright (c) 1996 Nivas Madhur @@ -968,7 +968,7 @@ luna88k_bootstrap() initmsgbuf((caddr_t)pmap_steal_memory(MSGBUFSIZE, NULL, NULL), MSGBUFSIZE); - pmap_bootstrap(); + pmap_bootstrap(0, 0x20000); /* ROM needs 128KB */ /* Initialize the "u-area" pages. */ bzero((caddr_t)curpcb, USPACE); |