From 242e00e6ea36ad455b4ac7ce9ef78ba46caae06f Mon Sep 17 00:00:00 2001 From: Antonio Huete Jimenez Date: Fri, 4 Feb 2011 18:37:28 +0100 Subject: [PATCH] vkernel64 - Raise the memory requirements to 64MB. --- sys/platform/vkernel64/platform/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/platform/vkernel64/platform/init.c b/sys/platform/vkernel64/platform/init.c index 16b543a4bd..fab9a6c877 100644 --- a/sys/platform/vkernel64/platform/init.c +++ b/sys/platform/vkernel64/platform/init.c @@ -392,8 +392,8 @@ init_sys_memory(char *imageFile) /* * Maxmem must be known at this time */ - if (Maxmem_bytes < 32 * 1024 * 1024 || (Maxmem_bytes & SEG_MASK)) { - errx(1, "Bad maxmem specification: 32MB minimum, " + if (Maxmem_bytes < 64 * 1024 * 1024 || (Maxmem_bytes & SEG_MASK)) { + errx(1, "Bad maxmem specification: 64MB minimum, " "multiples of %dMB only", SEG_SIZE / 1024 / 1024); /* NOT REACHED */ -- 2.41.0