diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1999-01-02 23:15:20 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1999-01-02 23:15:20 +0000 |
commit | cb48829cff383c712b5b7b593e0049273ac153b4 (patch) | |
tree | 7b7d7ce6a5ba9a93551e63a70165e1bc22d93bcf /release/scripts | |
parent | 57081f7b944d5d1c6fce6ad94db7e79b5bfe3d81 (diff) | |
download | src-cb48829cff383c712b5b7b593e0049273ac153b4.tar.gz src-cb48829cff383c712b5b7b593e0049273ac153b4.zip |
Update this to deal with new boot block placement.
Reported by: "John W. DeBoskey" <jwd@unx.sas.com>
Notes
Notes:
svn path=/head/; revision=42254
Diffstat (limited to 'release/scripts')
-rw-r--r-- | release/scripts/doFS.sh | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/release/scripts/doFS.sh b/release/scripts/doFS.sh index 50d1c840d06e..2dfb118839ba 100644 --- a/release/scripts/doFS.sh +++ b/release/scripts/doFS.sh @@ -35,16 +35,7 @@ do dd of=fs-image obs=1 seek=510 conv=notrunc 2>/dev/null vnconfig -s labels -c /dev/r${VNDEVICE} fs-image - - if [ "`uname -m`" = "alpha" ]; then - disklabel -Brw -b ${RD}/trees/bin/usr/mdec/boot1 \ - /dev/r${VNDEVICE} ${FSLABEL} - else - disklabel -Brw \ - -b ${RD}/trees/bin/usr/mdec/fdboot \ - -s ${RD}/trees/bin/usr/mdec/bootfd \ - /dev/r${VNDEVICE} ${FSLABEL} - fi + disklabel -Brw /dev/r${VNDEVICE} ${FSLABEL} newfs -u 0 -t 0 -i ${FSINODE} -m 0 -T ${FSLABEL} -o space /dev/r${VNDEVICE}c mount /dev/${VNDEVICE}c ${MNT} |