From ec098b8a1326a982c6446ab9b3ff5f9f302717c7 Mon Sep 17 00:00:00 2001 From: dsl Date: Wed, 12 Nov 2003 11:47:34 +0000 Subject: [PATCH] Double space for memory disk to 5MB, this costs (almost) nothing on the install media and the kernels (and sysinst) will still run on a 16MB system. (They haven't run on an 8MB system for a while - might affect 12MB though.) The additional space in the root filesystem lets sysinst core dump properly! --- sys/arch/i386/conf/INSTALL | 4 ++-- sys/arch/i386/conf/INSTALL_LAPTOP | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/arch/i386/conf/INSTALL b/sys/arch/i386/conf/INSTALL index 686ff970a83a..60807b767ef7 100644 --- a/sys/arch/i386/conf/INSTALL +++ b/sys/arch/i386/conf/INSTALL @@ -1,4 +1,4 @@ -# $NetBSD: INSTALL,v 1.232 2003/11/05 07:51:12 tron Exp $ +# $NetBSD: INSTALL,v 1.233 2003/11/12 11:47:34 dsl Exp $ # # INSTALL - Installation kernel. # @@ -19,7 +19,7 @@ makeoptions COPTS="-Os" # Optimise for space. Implies -O2 options MEMORY_DISK_HOOKS options MEMORY_DISK_IS_ROOT # force root on memory disk options MEMORY_DISK_SERVER=0 # no userspace memory disk support -options MEMORY_DISK_ROOT_SIZE=5000 # size of memory disk, in blocks +options MEMORY_DISK_ROOT_SIZE=10000 # size of memory disk, in blocks maxusers 32 # estimated number of users diff --git a/sys/arch/i386/conf/INSTALL_LAPTOP b/sys/arch/i386/conf/INSTALL_LAPTOP index 3cc561d26a5d..53bb826f9469 100644 --- a/sys/arch/i386/conf/INSTALL_LAPTOP +++ b/sys/arch/i386/conf/INSTALL_LAPTOP @@ -1,4 +1,4 @@ -# $NetBSD: INSTALL_LAPTOP,v 1.51 2003/10/18 08:12:07 lukem Exp $ +# $NetBSD: INSTALL_LAPTOP,v 1.52 2003/11/12 11:47:34 dsl Exp $ # # INSTALL - Installation kernel. # @@ -17,7 +17,7 @@ include "arch/i386/conf/std.i386" options MEMORY_DISK_HOOKS options MEMORY_DISK_IS_ROOT # force root on memory disk options MEMORY_DISK_SERVER=0 # no userspace memory disk support -options MEMORY_DISK_ROOT_SIZE=5000 # size of memory disk, in blocks +options MEMORY_DISK_ROOT_SIZE=10000 # size of memory disk, in blocks makeoptions COPTS="-Os" # generates smaller code than -O2, -O1