From e2b29ba52666d7a1574b1fa2c4b0738d6264fd5d Mon Sep 17 00:00:00 2001 From: aoyama Date: Mon, 17 May 2021 22:11:35 +0000 Subject: [PATCH] Make more free inodes on luna88k bsd.rd. Free inodes of luna88k bsd.rd are insufficient when we want to install sets from another disk of the root disk. Make more inodes by specifying density=4096. Spotted by Anders Gavare, the author of GXemul. Thanks! ok deraadt@ --- distrib/luna88k/ramdisk/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/distrib/luna88k/ramdisk/Makefile b/distrib/luna88k/ramdisk/Makefile index 3b063be7b45..5c503bf104d 100644 --- a/distrib/luna88k/ramdisk/Makefile +++ b/distrib/luna88k/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.30 2020/05/18 06:20:43 otto Exp $ +# $OpenBSD: Makefile,v 1.31 2021/05/17 22:11:35 aoyama Exp $ FS= miniroot${OSrev}.img FSSIZE= 8192 @@ -11,7 +11,7 @@ LISTS= ${.CURDIR}/list UTILS= ${.CURDIR}/../../miniroot MRDISKTYPE= rdroot -MRMAKEFSARGS= -o disklabel=${MRDISKTYPE},minfree=0 +MRMAKEFSARGS= -o disklabel=${MRDISKTYPE},minfree=0,density=4096 LDSTATIC=-static -- 2.20.1