diff options
author | jhb <jhb@FreeBSD.org> | 2001-11-20 20:25:12 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2001-11-20 20:25:12 +0000 |
commit | 07e6e051e2eaf0efabdcbf8494b01331f6051c21 (patch) | |
tree | 7445fe2252f8a83d477cff4465d630440f75fe2b /release | |
parent | aed3440b5d74976d000a3881f9625cf846db3f63 (diff) | |
download | FreeBSD-src-07e6e051e2eaf0efabdcbf8494b01331f6051c21.zip FreeBSD-src-07e6e051e2eaf0efabdcbf8494b01331f6051c21.tar.gz |
- Remove the -T from the 4.x newfs as well.
- Don't write out 0xaa55 to the end of the filesystem as md(4) doesn't
generate that warning and it breaks 'disklabel mdX auto'.
- Use the 'canonical' disk name mdX instead of /dev/mdX to disklabel so
we can use disklabel auto for mfsroot filesizes that aren't a standard
size in /etc/disktab.
Diffstat (limited to 'release')
-rw-r--r-- | release/scripts/doFS.sh | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/release/scripts/doFS.sh b/release/scripts/doFS.sh index 7ef4383..ab02f9f 100644 --- a/release/scripts/doFS.sh +++ b/release/scripts/doFS.sh @@ -51,7 +51,7 @@ dofs_vn () { vnconfig -s labels -c /dev/r${VNDEVICE} ${FSIMG} disklabel -Brw /dev/r${VNDEVICE} ${FSLABEL} - newfs -i ${FSINODE} -T ${FSLABEL} -o space -m 1 /dev/r${VNDEVICE}c + newfs -i ${FSINODE} -o space -m 1 /dev/r${VNDEVICE}c mount /dev/${VNDEVICE}c ${MNT} @@ -91,9 +91,6 @@ dofs_md () { fi dd of=${FSIMG} if=/dev/zero count=${FSSIZE} bs=1k 2>/dev/null - # this suppresses the `invalid primary partition table: no magic' - awk 'BEGIN {printf "%c%c", 85, 170}' |\ - dd of=${FSIMG} obs=1 seek=510 conv=notrunc 2>/dev/null MDDEVICE=`mdconfig -a -t vnode -f ${FSIMG}` if [ ! -c /dev/${MDDEVICE} ] ; then @@ -104,7 +101,7 @@ dofs_md () { exit 1 fi fi - disklabel -Brw /dev/${MDDEVICE} ${FSLABEL} + disklabel -Brw ${MDDEVICE} ${FSLABEL} newfs -i ${FSINODE} -o space -m 0 /dev/${MDDEVICE}c mount /dev/${MDDEVICE}c ${MNT} |