summaryrefslogtreecommitdiff
path: root/sys/arch/i386
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2007-04-13 17:34:41 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2007-04-13 17:34:41 +0000
commitaaadc3febf45ff292d15ca0da9ace923293833ed (patch)
treed07b1482b76432aca003468d90e61f594484fdd7 /sys/arch/i386
parentd49a4ab20340009afee5741854fcc2ef8a167471 (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 'sys/arch/i386')
-rw-r--r--sys/arch/i386/stand/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/Makefile b/sys/arch/i386/stand/Makefile
index 3d6f26b3ea1..8bd42d130d2 100644
--- a/sys/arch/i386/stand/Makefile
+++ b/sys/arch/i386/stand/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.13 2005/07/30 17:25:19 millert Exp $
+# $OpenBSD: Makefile,v 1.14 2007/04/13 17:34:40 millert Exp $
.if ${MACHINE} == "i386"
SUBDIR= etc libsa libkern libz mbr cdbr
@@ -16,6 +16,6 @@ zero-fd0:
prep-fd0:
sudo disklabel -rw fd0 floppy
- sudo newfs -O -m 0 -o space -i 3000 -c 80 /dev/rfd0a
+ sudo newfs -O 0 -m 0 -o space -i 3000 -c 80 /dev/rfd0a
.include <bsd.subdir.mk>