diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-09-21 07:03:00 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-09-21 07:03:00 +0000 |
commit | 8d5428cabe2e1215c90381de2195f8583bbf5685 (patch) | |
tree | 67b508b939715ec04538984d02bc6cecf3c7f103 | |
parent | e8e01073071369d33ab4cf61be05bebe5a65566e (diff) |
disklabel, damnit
-rw-r--r-- | distrib/i386/floppies/inst-common/Makefile.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/distrib/i386/floppies/inst-common/Makefile.inc b/distrib/i386/floppies/inst-common/Makefile.inc index 0956f7a83a8..019c991d90e 100644 --- a/distrib/i386/floppies/inst-common/Makefile.inc +++ b/distrib/i386/floppies/inst-common/Makefile.inc @@ -1,4 +1,4 @@ -# $Id: Makefile.inc,v 1.7 1996/09/14 03:42:59 deraadt Exp $ +# $Id: Makefile.inc,v 1.8 1996/09/21 07:02:59 deraadt Exp $ # TOP is assumed to be defined by Makefile including this one. @@ -21,10 +21,12 @@ MTREE= ${COMMONDIR}/mtree.conf all: ${CBIN} .ifndef FLOPPY3 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 5120 -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 5120 -c 80 ${VND_RDEV} floppy3 .endif |