svn commit: r222078 - head/usr.sbin/pc-sysinstall/backend

Josh Paetzel jpaetzel at FreeBSD.org
Wed May 18 20:29:07 UTC 2011


Author: jpaetzel
Date: Wed May 18 20:29:07 2011
New Revision: 222078
URL: http://svn.freebsd.org/changeset/base/222078

Log:
  Extracting optional components requires mounting devfs
  
  Submitted by:	Kris Moore <kris at pcbsd.org>
  Approved by:	kib (mentor)
  Sponsored by:	iXsystems

Modified:
  head/usr.sbin/pc-sysinstall/backend/functions-installcomponents.sh

Modified: head/usr.sbin/pc-sysinstall/backend/functions-installcomponents.sh
==============================================================================
--- head/usr.sbin/pc-sysinstall/backend/functions-installcomponents.sh	Wed May 18 19:49:39 2011	(r222077)
+++ head/usr.sbin/pc-sysinstall/backend/functions-installcomponents.sh	Wed May 18 20:29:07 2011	(r222078)
@@ -120,9 +120,11 @@ COMPTMPDIR=\"${COMPTMPDIR}\"
 export COMPTMPDIR
 CFILE=\"${CFILE}\"
 export CFILE
+mount -t devfs devfs /dev
 
 sh ${COMPTMPDIR}/install.sh
 
+umount /dev
 " >${FSMNT}/.componentwrapper.sh
   chmod 755 ${FSMNT}/.componentwrapper.sh
    


More information about the svn-src-head mailing list