diff options
author | joerg <joerg@FreeBSD.org> | 1996-01-06 20:13:48 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1996-01-06 20:13:48 +0000 |
commit | 26a185509d95a6fed2250489dd5371592bdf2251 (patch) | |
tree | 0a7183480fda0fcc8fa3bad465df94cfc97b1a1a /release/Makefile | |
parent | 1d38ca4949b7b330045aaa8e8f0909e126904bab (diff) | |
download | FreeBSD-src-26a185509d95a6fed2250489dd5371592bdf2251.zip FreeBSD-src-26a185509d95a6fed2250489dd5371592bdf2251.tar.gz |
Use partition `a' for the vn device. Also vn-unconfig the vn device
after usage.
I think this has been the last show-stopper that prevented me from doing
a successful ``make release''. Jordan, go for the 2.2-SNAP! :)
Diffstat (limited to 'release/Makefile')
-rw-r--r-- | release/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/release/Makefile b/release/Makefile index ea82206..0a824c1 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.197 1995/12/31 17:10:04 joerg Exp $ +# $Id: Makefile,v 1.198 1996/01/03 23:40:59 joerg Exp $ # # How to roll a release: # @@ -549,12 +549,13 @@ doFS: -s ${RD}/trees/bin/usr/mdec/bootfd \ /dev/r${VNDEVICE} ${FSLABEL} .endif - newfs -u 0 -t 0 -i ${FSINODE} -m 0 -T ${FSLABEL} /dev/r${VNDEVICE} - mount /dev/${VNDEVICE} ${MNT} + newfs -u 0 -t 0 -i ${FSINODE} -m 0 -T ${FSLABEL} /dev/r${VNDEVICE}a + mount /dev/${VNDEVICE}a ${MNT} cd ${FSPROTO} && find . -print | cpio -dump ${MNT} df -i /mnt umount ${MNT} - fsck /dev/r${VNDEVICE} < /dev/null + fsck /dev/r${VNDEVICE}a < /dev/null + @vnconfig -u /dev/r${VNDEVICE} 2>/dev/null || true installCRUNCH: .if !defined(CRUNCH) |