Changeset View
Changeset View
Standalone View
Standalone View
tools/tools/build_option_survey/option_survey.sh
| Show First 20 Lines • Show All 112 Lines • ▼ Show 20 Lines | if true ; then | ||||
| mkdir -p ${ODIR} ${FDIR} ${MNT} | mkdir -p ${ODIR} ${FDIR} ${MNT} | ||||
| fi | fi | ||||
| trap "umount ${MNT} || true; mdconfig -d -u $MDUNIT" 1 2 15 EXIT | trap "umount ${MNT} || true; mdconfig -d -u $MDUNIT" 1 2 15 EXIT | ||||
| umount $MNT || true | umount $MNT || true | ||||
| mdconfig -d -u $MDUNIT || true | mdconfig -d -u $MDUNIT || true | ||||
| dd if=/dev/zero of=${ODIR}/imgfile bs=1m count=250 | dd if=/dev/zero of=${ODIR}/imgfile bs=1m count=4096 | ||||
rgrimes: Please break this out into a seperate diff and review, I'll get that pushed into the tree ASAP… | |||||
| mdconfig -a -t vnode -f ${ODIR}/imgfile -u $MDUNIT | mdconfig -a -t vnode -f ${ODIR}/imgfile -u $MDUNIT | ||||
| # Build & install the reference world | # Build & install the reference world | ||||
| if true ; then | if true ; then | ||||
| echo "=== Build reference world" | echo "=== Build reference world" | ||||
| echo '' > ${ODIR}/src.conf | echo '' > ${ODIR}/src.conf | ||||
| MAKEOBJDIRPREFIX=$ODIR/_.ref | MAKEOBJDIRPREFIX=$ODIR/_.ref | ||||
| ▲ Show 20 Lines • Show All 70 Lines • Show Last 20 Lines | |||||
Please break this out into a seperate diff and review, I'll get that pushed into the tree ASAP as this is a trivial issue. Same with the above rsync removel. Those 2 fixes can just go in, mixing this with a bunch of other issues makes it un necessarily complicated.