diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1995-03-10 08:42:07 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1995-03-10 08:42:07 +0000 |
commit | 2f556c08cb0fa7edf3a0da94837648f27e88d721 (patch) | |
tree | 886fbb8dac319a3f185364cbe13b17b59665f7a1 /etc/Makefile | |
parent | 2c992ab302b75a0385c091a37fd1ac08e087f82f (diff) | |
download | FreeBSD-src-2f556c08cb0fa7edf3a0da94837648f27e88d721.zip FreeBSD-src-2f556c08cb0fa7edf3a0da94837648f27e88d721.tar.gz |
Simplify all the newfs commands into ${NEWFS} and add -t 0 -u 0 so
we can again newfs floppies.
Now I just need to squish the bits back under 1.44MB :-(. I don't know
if it will be possible to get down to 1.2MB.
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/etc/Makefile b/etc/Makefile index ed52689..7a47072 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.104 1995/02/25 21:01:48 phk Exp $ +# $Id: Makefile,v 1.105 1995/02/26 20:29:37 ache Exp $ # disktab may be wrong -- hcx9 is a tahoe, but gets its own. # -rw-r--r-- @@ -32,6 +32,7 @@ MAKEDEVS= (cd ${MOUNT}/dev; \ sh ${DESTDIR}/dev/MAKEDEV wd0 wd1 sd0 sd1 cd0 mcd0 mcd1; \ rm -rf *wd[01][ijklm] rmcd*) +NEWFS= newfs -b 4096 -c 80 -f 512 -m 0 -o space -u 0 -t 0 ZIPNSPLIT= gzip --no-name -9 -c | split -b 240640 - MTREE= BSD.local.dist BSD.root.dist BSD.usr.dist BSD.var.dist @@ -254,8 +255,7 @@ 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 \ - r${FLOPPY} ${FLOPPY_TYPE} + ${NEWFS} -i 8192 r${FLOPPY} ${FLOPPY_TYPE} mount /dev/${FLOPPY} ${MOUNT} chown ${BINOWN}.${BINGRP} ${MOUNT}/. chmod 755 ${MOUNT}/. @@ -319,8 +319,7 @@ 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 \ - r${FLOPPY} ${FLOPPY_TYPE} + ${NEWFS} -i 10240 r${FLOPPY} ${FLOPPY_TYPE} mount /dev/${FLOPPY} ${MOUNT} chown ${BINOWN}.${BINGRP} ${MOUNT}/. chmod 755 ${MOUNT}/. @@ -363,8 +362,7 @@ 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 \ - r${FLOPPY} ${FLOPPY_TYPE} + ${NEWFS} -i 65536 r${FLOPPY} ${FLOPPY_TYPE} mount /dev/${FLOPPY} ${MOUNT} chown ${BINOWN}.${BINGRP} ${MOUNT}/. chmod 755 ${MOUNT}/. |