From owner-svn-doc-all@FreeBSD.ORG Mon Feb 11 21:12:00 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id ED855899; Mon, 11 Feb 2013 21:12:00 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigknife-pt.tunnel.tserv9.chi1.ipv6.he.net [IPv6:2001:470:1f10:75::2]) by mx1.freebsd.org (Postfix) with ESMTP id C5D5EE61; Mon, 11 Feb 2013 21:12:00 +0000 (UTC) Received: from pakbsde14.localnet (unknown [38.105.238.108]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 0C625B911; Mon, 11 Feb 2013 16:12:00 -0500 (EST) From: John Baldwin To: Eitan Adler Subject: Re: svn commit: r40944 - head/en_US.ISO8859-1/books/arch-handbook/driverbasics Date: Mon, 11 Feb 2013 11:27:57 -0500 User-Agent: KMail/1.13.5 (FreeBSD/8.2-CBSD-20110714-p22; KDE/4.5.5; amd64; ; ) References: <201302111346.r1BDkVpm012937@svn.freebsd.org> In-Reply-To: <201302111346.r1BDkVpm012937@svn.freebsd.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <201302111127.57887.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Mon, 11 Feb 2013 16:12:00 -0500 (EST) Cc: svn-doc-head@freebsd.org, svn-doc-all@freebsd.org, doc-committers@freebsd.org X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Feb 2013 21:12:01 -0000 On Monday, February 11, 2013 8:46:31 am Eitan Adler wrote: > Author: eadler > Date: Mon Feb 11 13:46:30 2013 > New Revision: 40944 > URL: http://svnweb.freebsd.org/changeset/doc/40944 > > Log: > Fix indentation and whitespace > > Translators may ignore > > Approved by: bcr (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 13:46:28 2013 (r40943) > +++ head/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml Mon Feb 11 13:46:30 2013 (r40944) > @@ -148,10 +148,10 @@ KMOD=skeleton > .include <bsd.kmod.mk> > > Running make with this makefile > - will create a file skeleton.ko that can > - be loaded into the kernel by typing: > -&prompt.root; kldload -v ./skeleton.ko > - > + will create a file skeleton.ko that can > + be loaded into the kernel by typing: > + > + &prompt.root; kldload -v ./skeleton.ko > > > > @@ -164,8 +164,8 @@ KMOD=skeleton > accesses a device node. The /dev/MAKEDEV > script makes most of the device nodes for your system but if you > are doing your own driver development it may be necessary to > - create your own device nodes with mknod. > - > + create your own device nodes with > + mknod. > > > Creating Static Device Nodes > @@ -422,8 +422,7 @@ Closing device "echo". > (partition) to two devices with different semantics significantly > complicated the relevant kernel code &os; dropped support for > cached disk devices as part of the modernization of the disk I/O > - infrastructure. > - > + infrastructure. > > > All the bits about MAKEDEV and mknod should be removed. They haven't been necessary since 4.x. That means all of section 9.3 can be removed. -- John Baldwin