svn commit: r282963 - stable/10/share/man/man4
Edward Tomasz Napierala
trasz at FreeBSD.org
Fri May 15 11:10:02 UTC 2015
Author: trasz
Date: Fri May 15 11:10:01 2015
New Revision: 282963
URL: https://svnweb.freebsd.org/changeset/base/282963
Log:
MFC r281265:
Add a hint that "device ctl" kind of depends on "device iscsi".
It actually doesn't - "device ctl" automatically pulls in ICL, which
would normally be a part of iscsi.ko. However, doing it that way makes
iscsi.ko unloadable, and building ctl.ko without iscsi.ko (using
MODULES_OVERRIDE) results in ctl.ko that is unloadable, due to missing
symbols that would be resolved to iscsi.ko. And since the symbols
are named "icl_whatever", it's not obvious that it's iscsi.ko that's
required.
If there is a better way - let me know.
Sponsored by: The FreeBSD Foundation
Modified:
stable/10/share/man/man4/ctl.4
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/share/man/man4/ctl.4
==============================================================================
--- stable/10/share/man/man4/ctl.4 Fri May 15 11:07:49 2015 (r282962)
+++ stable/10/share/man/man4/ctl.4 Fri May 15 11:10:01 2015 (r282963)
@@ -23,7 +23,7 @@
.\" SUCH DAMAGE.
.\"
.\" $FreeBSD$
-.Dd October 23, 2014
+.Dd April 8, 2015
.Dt CTL 4
.Os
.Sh NAME
@@ -34,6 +34,7 @@ To compile this driver into the kernel,
place the following line in your
kernel configuration file:
.Bd -ragged -offset indent
+.Cd "device iscsi"
.Cd "device ctl"
.Ed
.Pp
More information about the svn-src-stable-10
mailing list