summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDale S. Rahn <rahnds@cvs.openbsd.org>1999-11-28 23:20:24 +0000
committerDale S. Rahn <rahnds@cvs.openbsd.org>1999-11-28 23:20:24 +0000
commit52562d87aa46cf5c28d6af4ca81986b17b996dc9 (patch)
tree3f29b8a09af259daee2b5edaa2ece6bcb6c01642
parent338652d46863ce74758ec28360336d61b592da5e (diff)
Lower NKMEMCLUSTERS from 128MB to 16MB. Currently the vm size for powerpc
is set to 256MB and this prevented OpenBSD from booting on machine with more than ~128MB, 196MB machines would fail to boot very early.
-rw-r--r--sys/arch/powerpc/include/param.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/param.h b/sys/arch/powerpc/include/param.h
index d6c79a2a243..a243b1cbac7 100644
--- a/sys/arch/powerpc/include/param.h
+++ b/sys/arch/powerpc/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.7 1998/08/18 21:28:21 millert Exp $ */
+/* $OpenBSD: param.h,v 1.8 1999/11/28 23:20:23 rahnds Exp $ */
/* $NetBSD: param.h,v 1.1 1996/09/30 16:34:28 ws Exp $ */
/*-
@@ -92,7 +92,7 @@
* Size of kernel malloc arena in CLBYTES-sized logical pages.
*/
#ifndef NKMEMCLUSTERS
-#define NKMEMCLUSTERS (128 * 1024 * 1024 / CLBYTES)
+#define NKMEMCLUSTERS (16 * 1024 * 1024 / CLBYTES)
#endif
/*