aboutsummaryrefslogtreecommitdiff
path: root/shells/bash
diff options
context:
space:
mode:
authorEmanuel Haupt <ehaupt@FreeBSD.org>2017-02-11 13:11:58 +0000
committerEmanuel Haupt <ehaupt@FreeBSD.org>2017-02-11 13:11:58 +0000
commit673874ad0379acbe0eae0cec212094932743e93e (patch)
tree9ee934707c238e3438aec2b331f28fa16fd4f44a /shells/bash
parent921fd6118f724e9b658d3587737bc9b911410b3e (diff)
downloadports-673874ad0379acbe0eae0cec212094932743e93e.tar.gz
ports-673874ad0379acbe0eae0cec212094932743e93e.zip
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>
Notes
Notes: svn path=/head/; revision=433857
Diffstat (limited to 'shells/bash')
-rw-r--r--shells/bash/pkg-message4
1 files changed, 2 insertions, 2 deletions
diff --git a/shells/bash/pkg-message b/shells/bash/pkg-message
index 8dc8fc463362..14dfcfe895f7 100644
--- a/shells/bash/pkg-message
+++ b/shells/bash/pkg-message
@@ -4,10 +4,10 @@ bash requires fdescfs(5) mounted on /dev/fd
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
======================================================================