From owner-svn-doc-head@FreeBSD.ORG Mon Feb 11 00:02:08 2013 Return-Path: <owner-svn-doc-head@FreeBSD.ORG> Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 264A7359; Mon, 11 Feb 2013 00:02:08 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id DD9429AC; Mon, 11 Feb 2013 00:02:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1B027SJ063621; Mon, 11 Feb 2013 00:02:07 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1B027Dd063620; Mon, 11 Feb 2013 00:02:07 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201302110002.r1B027Dd063620@svn.freebsd.org> From: Rene Ladan <rene@FreeBSD.org> Date: Mon, 11 Feb 2013 00:02:07 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r40922 - head/en_US.ISO8859-1/books/arch-handbook/driverbasics X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the doc tree for head <svn-doc-head.freebsd.org> List-Unsubscribe: <http://lists.freebsd.org/mailman/options/svn-doc-head>, <mailto:svn-doc-head-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/svn-doc-head> List-Post: <mailto:svn-doc-head@freebsd.org> List-Help: <mailto:svn-doc-head-request@freebsd.org?subject=help> List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-doc-head>, <mailto:svn-doc-head-request@freebsd.org?subject=subscribe> X-List-Received-Date: Mon, 11 Feb 2013 00:02:08 -0000 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>