diff options
author | luigi <luigi@FreeBSD.org> | 2010-02-14 15:55:30 +0000 |
---|---|---|
committer | luigi <luigi@FreeBSD.org> | 2010-02-14 15:55:30 +0000 |
commit | 264e34b811fea13a63e73c17ee5672628abd31dc (patch) | |
tree | d67560a6fda4a5b1c4e35ebc57fb864c02ed7deb /release/picobsd | |
parent | dbd22cf8cf3968bbc20e1f81067865328b3ade88 (diff) | |
download | FreeBSD-src-264e34b811fea13a63e73c17ee5672628abd31dc.zip FreeBSD-src-264e34b811fea13a63e73c17ee5672628abd31dc.tar.gz |
use log instead of logverbose in three places so the build won't need
input to run to completion
MFC after: 3 days
Diffstat (limited to 'release/picobsd')
-rwxr-xr-x | release/picobsd/build/picobsd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/release/picobsd/build/picobsd b/release/picobsd/build/picobsd index 153f47c..c9e8fc7 100755 --- a/release/picobsd/build/picobsd +++ b/release/picobsd/build/picobsd @@ -889,7 +889,7 @@ fill_floppy_image() { if [ ${mfs_start} -gt 0 -a ${mfs_size} -ge ${imgsize} ] ; then mfs_ofs=$((${mfs_start} + 8192)) log "Preload kernel with file ${c_fs} at ${mfs_ofs}" - logverbose "`ls -l ${c_fs}` to fit in ${mfs_size}" + log "`ls -l ${c_fs}` to fit in ${mfs_size}" dd if=${c_fs} ibs=8192 iseek=1 of=kernel obs=${mfs_ofs} \ oseek=1 conv=notrunc # 2> /dev/null else @@ -944,7 +944,7 @@ fill_floppy_image() { ls -l ${c_img} ${c_label} -f `pwd`/${c_img} - logverbose "after disklabel" + log "after disklabel" ) echo "BUILDDIR ${BUILDDIR}" @@ -958,7 +958,7 @@ fill_floppy_image() { dd if=${b2} iseek=1 ibs=276 2> /dev/null | \ dd of=${BUILDDIR}/${c_img} oseek=1 obs=788 conv=notrunc 2>/dev/null - logverbose "done floppy image" + log "done disk image" # XXX (log "Fixing permissions"; cd ${dst}; chown -R root *) rm -rf ${BUILDDIR}/floppy.tree || true # cleanup # df -ik ${dst} | colrm 70 > .build.reply |