svn commit: r291306 - head/release/tools

Glen Barber gjb at FreeBSD.org
Wed Nov 25 19:10:05 UTC 2015


Author: gjb
Date: Wed Nov 25 19:10:04 2015
New Revision: 291306
URL: https://svnweb.freebsd.org/changeset/base/291306

Log:
  Fix tmpfs(5) '/tmp' mount point.
  
  A stray trailing space snuck in with one of the recent
  changes, making r290550 and r290573 effectively no-op.
  
  MFC after:	3 days
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/release/tools/arm.subr

Modified: head/release/tools/arm.subr
==============================================================================
--- head/release/tools/arm.subr	Wed Nov 25 18:37:42 2015	(r291305)
+++ head/release/tools/arm.subr	Wed Nov 25 19:10:04 2015	(r291306)
@@ -110,7 +110,7 @@ arm_install_base() {
 		>> ${CHROOTDIR}/${DESTDIR}/etc/fstab
 	echo "/dev/msdosfs/MSDOSBOOT /boot/msdos msdosfs rw,noatime 0 0" \
 		>> ${CHROOTDIR}/${DESTDIR}/etc/fstab
-	echo "tmpfs /tmp tmpfs rw,mode=1777,size=30m 0 0" \ 
+	echo "tmpfs /tmp tmpfs rw,mode=1777,size=30m 0 0" \
 		>> ${CHROOTDIR}/${DESTDIR}/etc/fstab
 
 	local hostname


More information about the svn-src-all mailing list