diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-26 02:20:46 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-26 02:20:46 +0000 |
commit | c6f107976fe984a68e5960b693bdc2e7ccb9f1dd (patch) | |
tree | e72cd1918ba59b8af1c73c9196630904f7c95a62 /distrib/arc/floppies | |
parent | 1e01a7370ef7737d521447e5a56d914c2262f00a (diff) |
Don't specify disktype to newfs when we already have a label.
Diffstat (limited to 'distrib/arc/floppies')
-rw-r--r-- | distrib/arc/floppies/kernel/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/distrib/arc/floppies/kernel/Makefile b/distrib/arc/floppies/kernel/Makefile index e09ee270813..ad4143378b2 100644 --- a/distrib/arc/floppies/kernel/Makefile +++ b/distrib/arc/floppies/kernel/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 1997/09/05 21:16:44 deraadt Exp $ +# $OpenBSD: Makefile,v 1.5 1997/09/26 02:20:39 millert Exp $ .include "../Makefile.inc" @@ -21,9 +21,9 @@ bsd: all: bsd dd if=/dev/zero of=${REALIMAGE} bs=10k count=144 - vnconfig -v -c ${VND_DEV} ${REALIMAGE} - #disklabel -w ${VND_RDEV} floppy - newfs -O -m 0 -o space -i 8192 -c 80 ${VND_RDEV} floppy + vnconfig -v -c ${VND} ${REALIMAGE} + disklabel -w ${VND} floppy + newfs -O -m 0 -o space -i 8192 -c 80 ${VND_RDEV} mount ${VND_DEV} ${MOUNT_POINT} TOPDIR=${.CURDIR}/.. CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \ TARGDIR=${MOUNT_POINT} sh ${.CURDIR}/../runlist.sh ${LISTS} |