Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src Xref module(4).



details:   https://anonhg.NetBSD.org/src/rev/c3a5e9897852
branches:  trunk
changeset: 759584:c3a5e9897852
user:      jruoho <jruoho%NetBSD.org@localhost>
date:      Mon Dec 13 10:07:46 2010 +0000

description:
Xref module(4).

diffstat:

 lib/libc/sys/modctl.2      |  7 +++++--
 sbin/modload/modload.8     |  5 +++--
 sbin/modstat/modstat.8     |  5 +++--
 sbin/modunload/modunload.8 |  5 +++--
 share/man/man9/module.9    |  7 ++++---
 5 files changed, 18 insertions(+), 11 deletions(-)

diffs (134 lines):

diff -r 0b28bc1fddcc -r c3a5e9897852 lib/libc/sys/modctl.2
--- a/lib/libc/sys/modctl.2     Mon Dec 13 09:06:51 2010 +0000
+++ b/lib/libc/sys/modctl.2     Mon Dec 13 10:07:46 2010 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: modctl.2,v 1.6 2010/11/28 00:26:38 jnemeth Exp $
+.\"    $NetBSD: modctl.2,v 1.7 2010/12/13 10:07:46 jruoho Exp $
 .\"
 .\" Copyright (c) 2009 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -24,7 +24,7 @@
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\" POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd November 27, 2010
+.Dd December 13, 2010
 .Dt MODCTL 2
 .Os
 .Sh NAME
@@ -269,6 +269,9 @@
 and the requested module does not match the current kernel's version
 information.
 .El
+.Sh SEE ALSO
+.Xr module 4 ,
+.Xr module 9
 .Sh HISTORY
 The
 .Fn modctl
diff -r 0b28bc1fddcc -r c3a5e9897852 sbin/modload/modload.8
--- a/sbin/modload/modload.8    Mon Dec 13 09:06:51 2010 +0000
+++ b/sbin/modload/modload.8    Mon Dec 13 10:07:46 2010 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: modload.8,v 1.38 2010/03/05 18:51:22 pooka Exp $
+.\" $NetBSD: modload.8,v 1.39 2010/12/13 10:07:47 jruoho Exp $
 .\"
 .\" Copyright (c) 1993 Christopher G. Demetriou
 .\" All rights reserved.
@@ -32,7 +32,7 @@
 .\"
 .\" <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
 .\"
-.Dd March 5, 2010
+.Dd December 13, 2010
 .Dt MODLOAD 8
 .Os
 .Sh NAME
@@ -126,6 +126,7 @@
 utility exits with a status of 0 on success
 and with a nonzero status if an error occurs.
 .Sh SEE ALSO
+.Xr module 4 ,
 .Xr modstat 8 ,
 .Xr modunload 8
 .Sh HISTORY
diff -r 0b28bc1fddcc -r c3a5e9897852 sbin/modstat/modstat.8
--- a/sbin/modstat/modstat.8    Mon Dec 13 09:06:51 2010 +0000
+++ b/sbin/modstat/modstat.8    Mon Dec 13 10:07:46 2010 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: modstat.8,v 1.6 2010/03/05 18:51:23 pooka Exp $
+.\" $NetBSD: modstat.8,v 1.7 2010/12/13 10:07:47 jruoho Exp $
 .\"
 .\" Copyright (c) 1993 Christopher G. Demetriou
 .\" All rights reserved.
@@ -32,7 +32,7 @@
 .\"
 .\" <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
 .\"
-.Dd March 5, 2010
+.Dd December 13, 2010
 .Dt MODSTAT 8
 .Os
 .Sh NAME
@@ -84,6 +84,7 @@
 utility exits with a status of 0 on success
 and with a nonzero status if an error occurs.
 .Sh SEE ALSO
+.Xr module 4 ,
 .Xr modload 8 ,
 .Xr modunload 8
 .Sh HISTORY
diff -r 0b28bc1fddcc -r c3a5e9897852 sbin/modunload/modunload.8
--- a/sbin/modunload/modunload.8        Mon Dec 13 09:06:51 2010 +0000
+++ b/sbin/modunload/modunload.8        Mon Dec 13 10:07:46 2010 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: modunload.8,v 1.18 2010/12/06 23:42:48 jmcneill Exp $
+.\" $NetBSD: modunload.8,v 1.19 2010/12/13 10:07:47 jruoho Exp $
 .\"
 .\" Copyright (c) 1993 Christopher G. Demetriou
 .\" All rights reserved.
@@ -32,7 +32,7 @@
 .\"
 .\" <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
 .\"
-.Dd December 6, 2010
+.Dd December 13, 2010
 .Dt MODUNLOAD 8
 .Os
 .Sh NAME
@@ -61,6 +61,7 @@
 utility exits with a status of 0 on success
 and with a nonzero status if an error occurs.
 .Sh SEE ALSO
+.Xr module 4 ,
 .Xr modload 8 ,
 .Xr modstat 8
 .Sh HISTORY
diff -r 0b28bc1fddcc -r c3a5e9897852 share/man/man9/module.9
--- a/share/man/man9/module.9   Mon Dec 13 09:06:51 2010 +0000
+++ b/share/man/man9/module.9   Mon Dec 13 10:07:46 2010 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: module.9,v 1.23 2010/12/02 12:54:13 wiz Exp $
+.\"    $NetBSD: module.9,v 1.24 2010/12/13 10:07:46 jruoho Exp $
 .\"
 .\" Copyright (c) 2010 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -27,7 +27,7 @@
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\" POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd November 27, 2010
+.Dd December 13, 2010
 .Dt MODULE 9
 .Os
 .Sh NAME
@@ -430,7 +430,8 @@
 .Fn module_init_md
 is for finding modules passed in by the boot loader.
 .Sh SEE ALSO
-.Xr modctl 2
+.Xr modctl 2 ,
+.Xr module 4
 .Sh HISTORY
 The kernel module subsystem first appeared in
 .Nx 5.0 .



Home | Main Index | Thread Index | Old Index