svn commit: r272186 - user/gjb/thermite

Glen Barber gjb at FreeBSD.org
Fri Sep 26 19:56:53 UTC 2014


Author: gjb
Date: Fri Sep 26 19:56:52 2014
New Revision: 272186
URL: http://svnweb.freebsd.org/changeset/base/272186

Log:
  Fix devfs(5) mount path in create_vmimage_qemu().
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  user/gjb/thermite/mk-vmimage.sh

Modified: user/gjb/thermite/mk-vmimage.sh
==============================================================================
--- user/gjb/thermite/mk-vmimage.sh	Fri Sep 26 19:48:47 2014	(r272185)
+++ user/gjb/thermite/mk-vmimage.sh	Fri Sep 26 19:56:52 2014	(r272186)
@@ -111,7 +111,7 @@ create_vmimage_qemu() {
 	chroot ${CHROOTDIR} make -s -C /usr/src DESTDIR=/vmimage/mnt \
 		installworld installkernel distribution
 	set -e
-	while ! umount ${CHROOTDIR}/vmimage/mnt/dev; do
+	while ! umount ${CHROOTDIR}/dev; do
 		sleep 1
 	done
 	create_etc


More information about the svn-src-user mailing list