diff options
author | gene <gene@cvs.openbsd.org> | 1997-07-11 20:46:51 +0000 |
---|---|---|
committer | gene <gene@cvs.openbsd.org> | 1997-07-11 20:46:51 +0000 |
commit | 52bed602c8b2bb8aa516439a70e8d30c26e6db3b (patch) | |
tree | 4a9aa443e6f67024b150e52fd1102cffc593243b | |
parent | 304f7ddef006d380c51d984c9fe85ed84adef309 (diff) |
From Steven Campbel: Allocate a bigger address space for VRAM. This allows
at least the Q840av to boot and maybe others.
-rw-r--r-- | sys/arch/mac68k/mac68k/machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mac68k/mac68k/machdep.c b/sys/arch/mac68k/mac68k/machdep.c index eb476df1cc7..78174f77f44 100644 --- a/sys/arch/mac68k/mac68k/machdep.c +++ b/sys/arch/mac68k/mac68k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.42 1997/05/14 04:41:49 gene Exp $ */ +/* $OpenBSD: machdep.c,v 1.43 1997/07/11 20:46:50 gene Exp $ */ /* $NetBSD: machdep.c,v 1.134 1997/02/14 06:15:30 scottr Exp $ */ /* @@ -2617,8 +2617,8 @@ get_mapping(void) /* * Kludge for AV internal video */ - check_video("AV video (0x50100100)", 1 * 1024 * 1024, - 1 * 1024 * 1024); + check_video("AV video (0x50100100)", 2 * 1024 * 1024, + 2 * 1024 * 1024); } else { printf( " no internal video at address 0 -- " "videoaddr is 0x%lx.\n", videoaddr); |