diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2017-02-11 13:11:58 +0000 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2017-02-11 13:11:58 +0000 |
commit | b68f8d7e7c5d9866909baef2be64daf66d9a5bb2 (patch) | |
tree | 9ee934707c238e3438aec2b331f28fa16fd4f44a | |
parent | c3975bca9a7be94615f35330aa750778557bc15b (diff) | |
download | FreeBSD-ports-b68f8d7e7c5d9866909baef2be64daf66d9a5bb2.zip FreeBSD-ports-b68f8d7e7c5d9866909baef2be64daf66d9a5bb2.tar.gz |
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>
-rw-r--r-- | shells/bash/pkg-message | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shells/bash/pkg-message b/shells/bash/pkg-message index 8dc8fc4..14dfcfe 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 ====================================================================== |