Module Name: src Committed By: msaitoh Date: Wed Jan 7 21:15:30 UTC 2015
Modified Files: src/distrib/cobalt/ramdisk [netbsd-7]: Makefile src/sys/arch/cobalt/conf [netbsd-7]: RAMDISK Log Message: Pull up following revision(s) (requested by martin in ticket #388): sys/arch/cobalt/conf/RAMDISK: revision 1.6 distrib/cobalt/ramdisk/Makefile: revision 1.9 Increase ramdisk size. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.8.10.1 src/distrib/cobalt/ramdisk/Makefile cvs rdiff -u -r1.5 -r1.5.30.1 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.8.10.1 --- src/distrib/cobalt/ramdisk/Makefile:1.8 Fri Mar 22 10:52:20 2013 +++ src/distrib/cobalt/ramdisk/Makefile Wed Jan 7 21:15:30 2015 @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.8 2013/03/22 10:52:20 tsutsui Exp $ +# $NetBSD: Makefile,v 1.8.10.1 2015/01/07 21:15:30 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.5.30.1 --- src/sys/arch/cobalt/conf/RAMDISK:1.5 Tue May 3 09:15:20 2011 +++ src/sys/arch/cobalt/conf/RAMDISK Wed Jan 7 21:15:30 2015 @@ -1,4 +1,4 @@ -# $NetBSD: RAMDISK,v 1.5 2011/05/03 09:15:20 tsutsui Exp $ +# $NetBSD: RAMDISK,v 1.5.30.1 2015/01/07 21:15:30 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