svn commit: r40922 - head/en_US.ISO8859-1/books/arch-handbook/driverbasics
Rene Ladan
rene at FreeBSD.org
Mon Feb 11 00:02:08 UTC 2013
Author: rene
Date: Mon Feb 11 00:02:07 2013
New Revision: 40922
URL: http://svnweb.freebsd.org/changeset/doc/40922
Log:
Some 'igor -z' improvements.
Approved by: gjb (mentor)
Modified:
head/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml
Modified: head/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml Mon Feb 11 00:01:07 2013 (r40921)
+++ head/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml Mon Feb 11 00:02:07 2013 (r40922)
@@ -67,13 +67,14 @@
a running kernel without constantly rebooting to test
changes.</para>
- <para>The kld interface is used through the following
- privileged commands:
-
<indexterm><primary>kernel
modules</primary><secondary>loading</secondary></indexterm>
<indexterm><primary>kernel modules</primary><secondary>unloading</secondary></indexterm>
<indexterm><primary>kernel modules</primary><secondary>listing</secondary></indexterm>
+
+ <para>The kld interface is used through the following
+ privileged commands:</para>
+
<itemizedlist>
<listitem><simpara><command>kldload</command> - loads a new kernel
module</simpara></listitem>
@@ -82,7 +83,6 @@
<listitem><simpara><command>kldstat</command> - lists the currently loaded
modules</simpara></listitem>
</itemizedlist>
- </para>
<para>Skeleton Layout of a kernel module</para>
@@ -152,7 +152,7 @@ KMOD=skeleton
</sect1>
<sect1 id="driverbasics-access">
- <title>Accessing a device driver</title>
+ <title>Accessing a Device Driver</title>
<para>&unix; provides a common set of system calls for user
applications to use. The upper layers of the kernel dispatch
@@ -164,7 +164,7 @@ KMOD=skeleton
</para>
<sect2>
- <title>Creating static device nodes</title>
+ <title>Creating Static Device Nodes</title>
<indexterm><primary>device nodes</primary><secondary>static</secondary></indexterm>
<indexterm><primary>mknod</primary></indexterm>
@@ -176,7 +176,7 @@ KMOD=skeleton
</sect2>
<sect2>
- <title>Dynamic device nodes</title>
+ <title>Dynamic Device Nodes</title>
<indexterm><primary>device nodes</primary><secondary>dynamic</secondary></indexterm>
<indexterm><primary>devfs</primary></indexterm>
More information about the svn-doc-head
mailing list