diff options
author | Chris Rees <crees@FreeBSD.org> | 2019-04-07 18:31:45 +0000 |
---|---|---|
committer | Chris Rees <crees@FreeBSD.org> | 2019-04-07 18:31:45 +0000 |
commit | f5dfe75da5ba2937f8766792f625f32fc3ef4757 (patch) | |
tree | ee0333ae893dbad1feaeae76e5d300789fed9d29 /share/man/man5/rc.conf.5 | |
parent | b2689b12b1f5a67741f439592764034b86de69c3 (diff) |
Remove now unnecessary kldstat check before attempting to load modules.
Since r233109, kldload has the -n option, which silently ignores options
that are already loaded.
https://lists.freebsd.org/pipermail/freebsd-rc/2018-December/003899.html
Note that this script no longer reports if the module is already loaded,
but it could be argued this wasn't particularly useful information.
PR: docs/234248
Reviewed by: bcr (docs), kib, rgrimes (visual)
Approved by: jilles
Differential Revision: https://reviews.freebsd.org/D18670
Notes
Notes:
svn path=/head/; revision=346017
Diffstat (limited to 'share/man/man5/rc.conf.5')
-rw-r--r-- | share/man/man5/rc.conf.5 | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/share/man/man5/rc.conf.5 b/share/man/man5/rc.conf.5 index 94b242b336fb..fa332a26b9f1 100644 --- a/share/man/man5/rc.conf.5 +++ b/share/man/man5/rc.conf.5 @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd March 21, 2019 +.Dd April 7, 2019 .Dt RC.CONF 5 .Os .Sh NAME @@ -249,9 +249,7 @@ Default .It Va kld_list .Pq Vt str A whitespace-separated list of kernel modules to load right after -the local disks are mounted, without any -.Pa .ko -extension or path. +the local disks are mounted, with optional path. Loading modules at this point in the boot process is much faster than doing it via .Pa /boot/loader.conf |