1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00

Use mkimg instead of md(4) and gpart.

This commit is contained in:
Nathan Whitehorn 2014-05-01 03:24:41 +00:00
parent 2cbc36ab59
commit 18cb3a015d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=265171

View File

@ -41,38 +41,7 @@ if [ $? -ne 0 ]; then
fi
rm ${1}/etc/fstab
#
# Use $BLOCKSIZE for transfers to improve efficiency. When calculating
# how many blocks to transfer "+ 2" is to account for truncation in the
# division and to provide space for the label.
#
filesize=`stat -f "%z" ${tempfile}`
blocks=$(($filesize / ${BLOCKSIZE} + 1728))
dd if=/dev/zero of=${2} bs=${BLOCKSIZE} count=${blocks}
if [ $? -ne 0 ]; then
echo "creation of image file failed"
exit 1
fi
unit=`mdconfig -a -t vnode -f ${2}`
if [ $? -ne 0 ]; then
echo "mdconfig failed"
exit 1
fi
gpart create -s APM ${unit}
gpart add -t freebsd-boot -s 800K ${unit}
gpart bootcode -p ${1}/boot/boot1.hfs -i 1 ${unit}
gpart add -t freebsd-ufs -l FreeBSD_Install ${unit}
dd if=${tempfile} of=/dev/${unit}s3 bs=$BLOCKSIZE conv=sync
if [ $? -ne 0 ]; then
echo "copying filesystem into image file failed"
exit 1
fi
mdconfig -d -u ${unit}
mkimg -s apm -p freebsd-boot:=${1}/boot/boot1.hfs -p freebsd-ufs/FreeBSD_Install:=${tempfile} -o ${2}
rm -f ${tempfile}