diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2007-04-17 15:05:33 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2007-04-17 15:05:33 +0000 |
commit | fc43a82e99fb95a67d2baba4b68ae5cf9bfa3be0 (patch) | |
tree | 22d8a14e40f34bbd714c83823b79c8d7234174cc /distrib/i386 | |
parent | 269a059c24a7fa90f44c6524ffc3ab8e8d80de62 (diff) |
Restore inode parameter for floppy fs to the previous value (524288)
which appears to work around a bug in newfs's summary information
generation when used in conjunction with the other fs parameters.
Diffstat (limited to 'distrib/i386')
-rw-r--r-- | distrib/i386/common/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/i386/common/Makefile.inc b/distrib/i386/common/Makefile.inc index 39dc5fbafcf..db80d1fa5ab 100644 --- a/distrib/i386/common/Makefile.inc +++ b/distrib/i386/common/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.17 2007/04/13 17:34:40 millert Exp $ +# $OpenBSD: Makefile.inc,v 1.18 2007/04/17 15:05:32 millert Exp $ TOP= ${.CURDIR}/.. @@ -30,7 +30,7 @@ ${FS}: bsd.gz dd if=/dev/zero of=${REALIMAGE} bs=512 count=${FLOPPYSIZE} vnconfig -v -c ${VND} ${REALIMAGE} disklabel -w -r ${VND} ${FLOPPYTYPE} - newfs -m 0 -o space -i 81920 -c ${FLOPPYSIZE} ${VND_RDEV} + newfs -m 0 -o space -i 524288 -c ${FLOPPYSIZE} ${VND_RDEV} mount ${VND_DEV} ${MOUNT_POINT} cp ${BOOT} ${.OBJDIR}/boot strip ${.OBJDIR}/boot |