diff options
author | phk <phk@FreeBSD.org> | 1994-10-15 07:55:36 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1994-10-15 07:55:36 +0000 |
commit | 261a75b7fca35bad877a831721da431e28f0f989 (patch) | |
tree | 27b4feaa8408a4bbc98f37d622f2c53255ac12c9 /etc/Makefile | |
parent | 19619a7bef592fd9d286616002114edb662e5a36 (diff) | |
download | FreeBSD-src-261a75b7fca35bad877a831721da431e28f0f989.zip FreeBSD-src-261a75b7fca35bad877a831721da431e28f0f989.tar.gz |
Format floppy before use. Make 1.44 Mb floppies for now.
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/etc/Makefile b/etc/Makefile index 55bf2a9..e4db09b 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.85 1994/09/23 06:21:13 rgrimes Exp $ +# $Id: Makefile,v 1.86 1994/09/28 13:32:59 ache Exp $ # disktab may be wrong -- hcx9 is a tahoe, but gets its own. # -rw-r--r-- @@ -48,8 +48,8 @@ FREEBSD+= ${COPYRIGHT} # Floppy drive name, mount point, type and parameters for building Floppies FLOPPY?= fd0 MOUNT?= /mnt -FLOPPY_TYPE?= fd1200 -FLOPPY_BS?= 15b +FLOPPY_TYPE?= fd1440 +FLOPPY_BS?= 18b FLOPPY_TRACKS?= 160 # MDEC= usr/mdec/bootfd usr/mdec/fdboot @@ -256,6 +256,7 @@ kcopy-kernels: ${.CURDIR}/../sys/i386/conf/GENERICAH ${.CURDIR}/../sys/i386/conf ${DESTDIR}/kernel.GENERICBT) kcopy-floppy: + echo y | fdformat ${FLOPPY} disklabel -w -r -B -b ${DESTDIR}/usr/mdec/fdboot \ -s ${DESTDIR}/usr/mdec/bootfd ${FLOPPY} ${FLOPPY_TYPE} newfs -b 4096 -c 80 -f 512 -i 8192 -m 0 -o space \ @@ -345,6 +346,7 @@ cdins_bt.flp: >${RELEASEDIR}/floppies/cdins_bt.flp.gz & filesyst.flp: + echo y | fdformat ${FLOPPY} disklabel -w -r -B -b ${DESTDIR}/usr/mdec/fdboot \ -s ${DESTDIR}/usr/mdec/bootfd ${FLOPPY} ${FLOPPY_TYPE} newfs -b 4096 -c 80 -f 512 -i 10240 -m 0 -o space \ @@ -387,6 +389,7 @@ filesyst.flp: >${RELEASEDIR}/floppies/filesyst.flp.gz & cpio.flp: + echo y | fdformat ${FLOPPY} disklabel -w -r -B -b ${DESTDIR}/usr/mdec/fdboot \ -s ${DESTDIR}/usr/mdec/bootfd ${FLOPPY} ${FLOPPY_TYPE} newfs -b 4096 -c 80 -f 512 -i 65536 -m 0 -o space \ |