summaryrefslogtreecommitdiff
path: root/distrib
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1997-09-26 01:51:31 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1997-09-26 01:51:31 +0000
commitf5a856d8a733d24400f63121a473befae5b50e32 (patch)
tree11c6d6de946601a0b7fa886fc938d5c6ed166dc6 /distrib
parent66d91b53470a9a3eddf6c806d93e212d9c7174f5 (diff)
Don't give newfs a disk-type. We already labelled the damn thing.
Diffstat (limited to 'distrib')
-rw-r--r--distrib/sparc/floppies/inst-common/Makefile.inc4
-rw-r--r--distrib/sparc/floppies/kernel/Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/distrib/sparc/floppies/inst-common/Makefile.inc b/distrib/sparc/floppies/inst-common/Makefile.inc
index 1afa9b2ad50..22f83cd8dbf 100644
--- a/distrib/sparc/floppies/inst-common/Makefile.inc
+++ b/distrib/sparc/floppies/inst-common/Makefile.inc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.inc,v 1.10 1997/05/14 18:39:06 niklas Exp $
+# $OpenBSD: Makefile.inc,v 1.11 1997/09/26 01:51:29 millert Exp $
# TOP is assumed to be defined by Makefile including this one.
@@ -26,7 +26,7 @@ all: ${CBIN}
dd if=/dev/zero of=${REALIMAGE} bs=120k count=12
vnconfig -v -c ${VND} ${REALIMAGE}
disklabel -w ${VND} floppy3
- newfs -O -m 0 -o space -i 8192 -c 80 ${VND_RDEV} floppy
+ newfs -O -m 0 -o space -i 8192 -c 80 ${VND_RDEV}
mount ${VND_DEV} ${MOUNT_POINT}
mtree -def ${MTREE} -p ${MOUNT_POINT}/ -u
TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \
diff --git a/distrib/sparc/floppies/kernel/Makefile b/distrib/sparc/floppies/kernel/Makefile
index 2d6c61c22ce..f2f9c2285cc 100644
--- a/distrib/sparc/floppies/kernel/Makefile
+++ b/distrib/sparc/floppies/kernel/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.11 1997/09/05 21:17:01 deraadt Exp $
+# $OpenBSD: Makefile,v 1.12 1997/09/26 01:51:30 millert Exp $
.include "../Makefile.inc"
@@ -23,7 +23,7 @@ all: bsd
dd if=/dev/zero of=${REALIMAGE} bs=10k count=144
vnconfig -v -c ${VND} ${REALIMAGE}
disklabel -w ${VND} floppy
- newfs -O -m 0 -o space -i 20480 -c 80 ${VND_RDEV} floppy
+ newfs -O -m 0 -o space -i 20480 -c 80 ${VND_RDEV}
mount ${VND_DEV} ${MOUNT_POINT}
sync; /usr/mdec/binstall -v ffs ${MOUNT_POINT}
TOPDIR=${.CURDIR}/.. CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \