diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1996-12-20 15:35:56 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1996-12-20 15:35:56 +0000 |
commit | 76956a2b2fa1a2c8c8ef5b5d4d95650f855559b7 (patch) | |
tree | a2f86b1c95b80c0c910158cdb28d61f8e2750210 /distrib | |
parent | f75d1ef209fe4e8ba5e0dd1742560442975174be (diff) |
add fs type arg to newfs
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/i386/floppies/kc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/i386/floppies/kc/Makefile b/distrib/i386/floppies/kc/Makefile index fc1d9fd04b9..5b32b540297 100644 --- a/distrib/i386/floppies/kc/Makefile +++ b/distrib/i386/floppies/kc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.9 1996/09/25 17:03:58 deraadt Exp $ +# $Id: Makefile,v 1.10 1996/12/20 15:35:55 kstailey Exp $ TOP= ${.CURDIR}/.. @@ -32,12 +32,12 @@ all: bsd ${CBIN} dd if=/dev/zero of=${REALIMAGE} bs=10k count=120 disklabel -w -B -b /usr/mdec/fdboot -s /usr/mdec/bootfd ${REALIMAGE} floppy5 vnconfig -v -c ${VND_DEV} ${REALIMAGE} - newfs -O -m 0 -o space -i 8192 -c 80 ${VND_RDEV} floppy5 + newfs -t ffs -O -m 0 -o space -i 8192 -c 80 ${VND_RDEV} floppy5 .else dd if=/dev/zero of=${REALIMAGE} bs=10k count=144 disklabel -w -B -b /usr/mdec/fdboot -s /usr/mdec/bootfd ${REALIMAGE} floppy3 vnconfig -v -c ${VND_DEV} ${REALIMAGE} - newfs -O -m 0 -o space -i 6500 -c 80 ${VND_RDEV} floppy3 + newfs -t ffs -O -m 0 -o space -i 6500 -c 80 ${VND_RDEV} floppy3 .endif mount ${VND_DEV} ${MOUNT_POINT} mtree -def ${MTREE} -p ${MOUNT_POINT}/ -u |