diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2007-04-13 17:34:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2007-04-13 17:34:41 +0000 |
commit | aaadc3febf45ff292d15ca0da9ace923293833ed (patch) | |
tree | d07b1482b76432aca003468d90e61f594484fdd7 /distrib/amd64/common | |
parent | d49a4ab20340009afee5741854fcc2ef8a167471 (diff) |
Update install media generation to the new semantics of the -c flag.
Also replace "newfs -O" with "newfs -O 0" now that -O takes an option.
Diffstat (limited to 'distrib/amd64/common')
-rw-r--r-- | distrib/amd64/common/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/amd64/common/Makefile.inc b/distrib/amd64/common/Makefile.inc index 8c0c76e27c9..f6955e7ea34 100644 --- a/distrib/amd64/common/Makefile.inc +++ b/distrib/amd64/common/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.4 2007/04/09 14:55:11 millert Exp $ +# $OpenBSD: Makefile.inc,v 1.5 2007/04/13 17:34:40 millert Exp $ TOP= ${.CURDIR}/.. @@ -30,7 +30,7 @@ ${FS}: bsd.gz dd if=/dev/zero of=${REALIMAGE} bs=10k count=${FLOPPYSIZE} vnconfig -v -c ${VND} ${REALIMAGE} disklabel -w -r ${VND} ${FLOPPYTYPE} - newfs -m 0 -o space -i 524288 -c 80 ${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 @@ -50,7 +50,7 @@ ${FS}: bsd.gz DISKTYPE?= rdroot NBLKS?= 3584 # minfree, opt, b/i trks, sects, cpg -NEWFSARGS= -m 0 -o space -c 16 -i 4096 +NEWFSARGS= -m 0 -o space -i 4096 bsd.gz: bsd.rd cp bsd.rd bsd.strip |