Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Feb 2017 13:11:58 +0000 (UTC)
From:      Emanuel Haupt <ehaupt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r433857 - head/shells/bash
Message-ID:  <201702111311.v1BDBwW9067695@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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
 
 ======================================================================



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702111311.v1BDBwW9067695>