diff options
author | Tobias Weingartner <weingart@cvs.openbsd.org> | 2002-06-10 22:17:39 +0000 |
---|---|---|
committer | Tobias Weingartner <weingart@cvs.openbsd.org> | 2002-06-10 22:17:39 +0000 |
commit | 0a2d3dde3fb2951906230284f4f30e4c5771c65d (patch) | |
tree | 2e0b4fe9d2d390935764f9acb5c16fbdb827e578 /sys/arch/i386/stand/Makefile | |
parent | 130724a8cd327dbb276185e6f3eea31a234bd16e (diff) |
Maintain my sanity.
Diffstat (limited to 'sys/arch/i386/stand/Makefile')
-rw-r--r-- | sys/arch/i386/stand/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/arch/i386/stand/Makefile b/sys/arch/i386/stand/Makefile index 39b4cf84517..4ce4685db6a 100644 --- a/sys/arch/i386/stand/Makefile +++ b/sys/arch/i386/stand/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 2000/05/26 11:50:46 deraadt Exp $ +# $OpenBSD: Makefile,v 1.10 2002/06/10 22:17:38 weingart Exp $ .if ${MACHINE} == "i386" SUBDIR= etc libsa libz mbr @@ -11,4 +11,11 @@ test-fd0: sudo /usr/mdec/installboot -v /mnt/boot /usr/mdec/biosboot fd0 sudo umount /mnt +zero-fd0: + sudo dd if=/dev/zero of=/dev/rfd0a count=144 bs=10240 + +prep-fd0: + sudo disklabel -rw fd0 floppy + sudo newfs -O -m 0 -o space -i 3000 -c 80 /dev/rfd0a + .include <bsd.subdir.mk> |