diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-05-14 19:29:47 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-05-14 19:29:47 +0000 |
commit | 8ed31ee6a9d8b38a58509cc8c231498a8a4ab82e (patch) | |
tree | 01d54810fef831412fbd409186d62fad82d050e9 | |
parent | de83eb1511999ada5b9ff3f19d58d35291b0b605 (diff) |
Make all 128MB of memory available (except for the first three pages used
for the exception vectors).
-rw-r--r-- | sys/arch/socppc/socppc/machdep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/socppc/socppc/machdep.c b/sys/arch/socppc/socppc/machdep.c index d95c625e504..fe61758de01 100644 --- a/sys/arch/socppc/socppc/machdep.c +++ b/sys/arch/socppc/socppc/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.1 2008/05/10 12:02:21 kettenis Exp $ */ +/* $OpenBSD: machdep.c,v 1.2 2008/05/14 19:29:46 kettenis Exp $ */ /* $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $ */ /* @@ -1117,12 +1117,12 @@ kcopy(const void *from, void *to, size_t size) } struct mem_region uboot_mem[2] = { - { 0x00000000, 0x04000000 }, + { 0x00000000, 0x08000000 }, { 0, 0 } }; -struct mem_region uboot_avail[2] = { - { 0x00800000, 0x04000000 }, +struct mem_region uboot_avail[4] = { + { 0x00003000, 0x07ffd000 }, { 0, 0 } }; |