svn commit: r433857 - head/shells/bash

Emanuel Haupt ehaupt at FreeBSD.org
Sat Feb 11 13:12:00 UTC 2017


Author: ehaupt
Date: Sat Feb 11 13:11:58 2017
New Revision: 433857
URL: https://svnweb.freebsd.org/changeset/ports/433857

Log:
  The late mount option is required for systems with a seperate boot partition
  (e.g. systems with an encrypted root partition) where it is impossible for the
  fdescfs module to be autoloaded when /boot/kernel isn't available yet. Change
  pkg-message accordingly.
  
  Also change 'fdesc' mount point name to 'fdescfs' to simplify things: this way
  'mount fdescfs' will work just as fine as 'umount fdescfs'. The less things to
  remember - the better it is.
  
  PR:		216985
  Submitted by:	John Smith <godevilove at ya.ru>

Modified:
  head/shells/bash/pkg-message

Modified: head/shells/bash/pkg-message
==============================================================================
--- head/shells/bash/pkg-message	Sat Feb 11 12:42:30 2017	(r433856)
+++ head/shells/bash/pkg-message	Sat Feb 11 13:11:58 2017	(r433857)
@@ -4,10 +4,10 @@ bash requires fdescfs(5) mounted on /dev
 
 If you have not done it yet, please do the following:
 
-	mount -t fdescfs fdesc /dev/fd
+	mount -t fdescfs fdescfs /dev/fd
 
 To make it permanent, you need the following lines in /etc/fstab:
 
-	fdesc	/dev/fd		fdescfs		rw	0	0
+	fdescfs	/dev/fd		fdescfs		rw,late	0	0
 
 ======================================================================


More information about the svn-ports-all mailing list