diff options
author | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2021-05-17 22:11:36 +0000 |
---|---|---|
committer | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2021-05-17 22:11:36 +0000 |
commit | d354ce90e5decf0e1ffa38906cfcadea23f23a57 (patch) | |
tree | 33add90ca6752ca544be8d5be824088f4471ebae /distrib/luna88k | |
parent | 6c33bf1895a3b9409c4931d7470fd44f2f1867d3 (diff) |
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@
Diffstat (limited to 'distrib/luna88k')
-rw-r--r-- | distrib/luna88k/ramdisk/Makefile | 4 |
1 files 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 |