Date: Sat, 11 Feb 2017 13:13:37 +0000 (UTC) From: Emanuel Haupt <ehaupt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r433859 - branches/2017Q1/shells/bash Message-ID: <201702111313.v1BDDbV1070805@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ehaupt Date: Sat Feb 11 13:13:36 2017 New Revision: 433859 URL: https://svnweb.freebsd.org/changeset/ports/433859 Log: MFH: r433857 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> Approved by: ports-secteam (blanket) Modified: branches/2017Q1/shells/bash/pkg-message Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/shells/bash/pkg-message ============================================================================== --- branches/2017Q1/shells/bash/pkg-message Sat Feb 11 13:12:40 2017 (r433858) +++ branches/2017Q1/shells/bash/pkg-message Sat Feb 11 13:13:36 2017 (r433859) @@ -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?201702111313.v1BDDbV1070805>