Module Name: src Committed By: msaitoh Date: Mon Sep 29 15:02:56 UTC 2014
Modified Files: src/distrib/cobalt/ramdisk: Makefile src/sys/arch/cobalt/conf: RAMDISK Log Message: Increase ramdisk size. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/distrib/cobalt/ramdisk/Makefile cvs rdiff -u -r1.5 -r1.6 src/sys/arch/cobalt/conf/RAMDISK Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/distrib/cobalt/ramdisk/Makefile diff -u src/distrib/cobalt/ramdisk/Makefile:1.8 src/distrib/cobalt/ramdisk/Makefile:1.9 --- src/distrib/cobalt/ramdisk/Makefile:1.8 Fri Mar 22 10:52:20 2013 +++ src/distrib/cobalt/ramdisk/Makefile Mon Sep 29 15:02:55 2014 @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.8 2013/03/22 10:52:20 tsutsui Exp $ +# $NetBSD: Makefile,v 1.9 2014/09/29 15:02:55 msaitoh Exp $ .include <bsd.own.mk> .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib" IMAGE= ramdisk.fs -IMAGESIZE= 3072k +IMAGESIZE= 3328k MAKEFS_FLAGS= -f 15 WARNS= 1 Index: src/sys/arch/cobalt/conf/RAMDISK diff -u src/sys/arch/cobalt/conf/RAMDISK:1.5 src/sys/arch/cobalt/conf/RAMDISK:1.6 --- src/sys/arch/cobalt/conf/RAMDISK:1.5 Tue May 3 09:15:20 2011 +++ src/sys/arch/cobalt/conf/RAMDISK Mon Sep 29 15:02:56 2014 @@ -1,4 +1,4 @@ -# $NetBSD: RAMDISK,v 1.5 2011/05/03 09:15:20 tsutsui Exp $ +# $NetBSD: RAMDISK,v 1.6 2014/09/29 15:02:56 msaitoh Exp $ # # memory disk based configuration file # @@ -9,7 +9,7 @@ include "arch/cobalt/conf/GENERIC" options MEMORY_DISK_HOOKS options MEMORY_DISK_IS_ROOT # force root on memory disk options MEMORY_DISK_SERVER=0 # no userspace md(4) support -options MEMORY_DISK_ROOT_SIZE=6144 # size of memory disk, in blocks +options MEMORY_DISK_ROOT_SIZE=6656 # size of memory disk, in blocks options MEMORY_DISK_RBFLAGS=RB_SINGLE # boot in single-user mode makeoptions COPTS="-Os -mmemcpy" # generates smaller code than -O2, -O1