svn commit: r290550 - head/release/tools

Glen Barber gjb at FreeBSD.org
Sun Nov 8 18:02:41 UTC 2015


Author: gjb
Date: Sun Nov  8 18:02:39 2015
New Revision: 290550
URL: https://svnweb.freebsd.org/changeset/base/290550

Log:
  Use tmpfs(5) instead of md(4) for '/tmp' mount.
  
  Submitted by:		Nikolai Lifanov
  Differential Revision:	D3506
  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	Sun Nov  8 18:00:44 2015	(r290549)
+++ head/release/tools/arm.subr	Sun Nov  8 18:02:39 2015	(r290550)
@@ -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 "md /tmp mfs rw,noatime,-s30m 0 0" \
+	echo "tmpfs /tmp tmpfs rw,noatime,mode=1777,size=30m 0 0" \ 
 		>> ${CHROOTDIR}/${DESTDIR}/etc/fstab
 
 	local hostname


More information about the svn-src-all mailing list