Add Sergey Babkin's ISA device driver tutorial as a chapter to the
Developer's Handbook. SGMLified by: emacs, Wylie Stilwell, Valentino Vaschetto, and I Approved by: Sergey Babkin Obtained from: Daemonnews
This commit is contained in:
parent
d480d7cc23
commit
0fb2e7255d
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=9348
9 changed files with 36 additions and 9 deletions
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# $FreeBSD$
|
# $FreeBSD: doc/en_US.ISO_8859-1/books/developers-handbook/Makefile,v 1.1 2000/07/30 18:20:23 asmodai Exp $
|
||||||
#
|
#
|
||||||
# Build the FreeBSD Developers' Handbook.
|
# Build the FreeBSD Developers' Handbook.
|
||||||
#
|
#
|
||||||
|
@ -20,6 +20,13 @@ INSTALL_ONLY_COMPRESSED?=
|
||||||
|
|
||||||
# SGML content
|
# SGML content
|
||||||
SRCS= book.sgml
|
SRCS= book.sgml
|
||||||
|
SRCS+= tools/chapter.sgml
|
||||||
|
SRCS+= secure/chapter.sgml
|
||||||
|
SRCS+= locking/chapter.sgml
|
||||||
|
SRCS+= isa/chapter.sgml
|
||||||
|
SRCS+= pci/chapter.sgml
|
||||||
|
SRCS+= usb/chapter.sgml
|
||||||
|
SRCS+= scsi/chapter.sgml
|
||||||
|
|
||||||
# Entities
|
# Entities
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<!--
|
<!--
|
||||||
The FreeBSD Documentation Project
|
The FreeBSD Documentation Project
|
||||||
|
|
||||||
$FreeBSD: doc/en_US.ISO_8859-1/books/developers-handbook/book.sgml,v 1.14 2001/04/13 09:05:10 murray Exp $
|
$FreeBSD: doc/en_US.ISO_8859-1/books/developers-handbook/book.sgml,v 1.15 2001/04/18 08:57:47 nik Exp $
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!DOCTYPE BOOK PUBLIC "-//FreeBSD//DTD DocBook V4.1-Based Extension//EN" [
|
<!DOCTYPE BOOK PUBLIC "-//FreeBSD//DTD DocBook V4.1-Based Extension//EN" [
|
||||||
|
@ -311,6 +311,7 @@
|
||||||
<title>Device Drivers</title>
|
<title>Device Drivers</title>
|
||||||
|
|
||||||
&chap.driverbasics;
|
&chap.driverbasics;
|
||||||
|
&chap.isa;
|
||||||
&chap.pci;
|
&chap.pci;
|
||||||
&chap.scsi;
|
&chap.scsi;
|
||||||
&chap.usb;
|
&chap.usb;
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
Chapters should be listed in the order in which they are referenced.
|
Chapters should be listed in the order in which they are referenced.
|
||||||
|
|
||||||
$FreeBSD: doc/en_US.ISO_8859-1/books/developers-handbook/chapters.ent,v 1.3 2001/03/29 06:14:32 murray Exp $
|
$FreeBSD: doc/en_US.ISO_8859-1/books/developers-handbook/chapters.ent,v 1.4 2001/04/13 09:05:10 murray Exp $
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!-- Part one -->
|
<!-- Part one -->
|
||||||
|
@ -43,6 +43,7 @@
|
||||||
|
|
||||||
<!-- Part eleven -->
|
<!-- Part eleven -->
|
||||||
<!ENTITY chap.driverbasics SYSTEM "driverbasics/chapter.sgml">
|
<!ENTITY chap.driverbasics SYSTEM "driverbasics/chapter.sgml">
|
||||||
|
<!ENTITY chap.isa SYSTEM "isa/chapter.sgml">
|
||||||
<!ENTITY chap.pci SYSTEM "pci/chapter.sgml">
|
<!ENTITY chap.pci SYSTEM "pci/chapter.sgml">
|
||||||
<!ENTITY chap.scsi SYSTEM "scsi/chapter.sgml">
|
<!ENTITY chap.scsi SYSTEM "scsi/chapter.sgml">
|
||||||
<!ENTITY chap.usb SYSTEM "usb/chapter.sgml">
|
<!ENTITY chap.usb SYSTEM "usb/chapter.sgml">
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# $FreeBSD$
|
# $FreeBSD: doc/en_US.ISO_8859-1/books/developers-handbook/Makefile,v 1.1 2000/07/30 18:20:23 asmodai Exp $
|
||||||
#
|
#
|
||||||
# Build the FreeBSD Developers' Handbook.
|
# Build the FreeBSD Developers' Handbook.
|
||||||
#
|
#
|
||||||
|
@ -20,6 +20,13 @@ INSTALL_ONLY_COMPRESSED?=
|
||||||
|
|
||||||
# SGML content
|
# SGML content
|
||||||
SRCS= book.sgml
|
SRCS= book.sgml
|
||||||
|
SRCS+= tools/chapter.sgml
|
||||||
|
SRCS+= secure/chapter.sgml
|
||||||
|
SRCS+= locking/chapter.sgml
|
||||||
|
SRCS+= isa/chapter.sgml
|
||||||
|
SRCS+= pci/chapter.sgml
|
||||||
|
SRCS+= usb/chapter.sgml
|
||||||
|
SRCS+= scsi/chapter.sgml
|
||||||
|
|
||||||
# Entities
|
# Entities
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<!--
|
<!--
|
||||||
The FreeBSD Documentation Project
|
The FreeBSD Documentation Project
|
||||||
|
|
||||||
$FreeBSD: doc/en_US.ISO_8859-1/books/developers-handbook/book.sgml,v 1.14 2001/04/13 09:05:10 murray Exp $
|
$FreeBSD: doc/en_US.ISO_8859-1/books/developers-handbook/book.sgml,v 1.15 2001/04/18 08:57:47 nik Exp $
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!DOCTYPE BOOK PUBLIC "-//FreeBSD//DTD DocBook V4.1-Based Extension//EN" [
|
<!DOCTYPE BOOK PUBLIC "-//FreeBSD//DTD DocBook V4.1-Based Extension//EN" [
|
||||||
|
@ -311,6 +311,7 @@
|
||||||
<title>Device Drivers</title>
|
<title>Device Drivers</title>
|
||||||
|
|
||||||
&chap.driverbasics;
|
&chap.driverbasics;
|
||||||
|
&chap.isa;
|
||||||
&chap.pci;
|
&chap.pci;
|
||||||
&chap.scsi;
|
&chap.scsi;
|
||||||
&chap.usb;
|
&chap.usb;
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
Chapters should be listed in the order in which they are referenced.
|
Chapters should be listed in the order in which they are referenced.
|
||||||
|
|
||||||
$FreeBSD: doc/en_US.ISO_8859-1/books/developers-handbook/chapters.ent,v 1.3 2001/03/29 06:14:32 murray Exp $
|
$FreeBSD: doc/en_US.ISO_8859-1/books/developers-handbook/chapters.ent,v 1.4 2001/04/13 09:05:10 murray Exp $
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!-- Part one -->
|
<!-- Part one -->
|
||||||
|
@ -43,6 +43,7 @@
|
||||||
|
|
||||||
<!-- Part eleven -->
|
<!-- Part eleven -->
|
||||||
<!ENTITY chap.driverbasics SYSTEM "driverbasics/chapter.sgml">
|
<!ENTITY chap.driverbasics SYSTEM "driverbasics/chapter.sgml">
|
||||||
|
<!ENTITY chap.isa SYSTEM "isa/chapter.sgml">
|
||||||
<!ENTITY chap.pci SYSTEM "pci/chapter.sgml">
|
<!ENTITY chap.pci SYSTEM "pci/chapter.sgml">
|
||||||
<!ENTITY chap.scsi SYSTEM "scsi/chapter.sgml">
|
<!ENTITY chap.scsi SYSTEM "scsi/chapter.sgml">
|
||||||
<!ENTITY chap.usb SYSTEM "usb/chapter.sgml">
|
<!ENTITY chap.usb SYSTEM "usb/chapter.sgml">
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# $FreeBSD$
|
# $FreeBSD: doc/en_US.ISO_8859-1/books/developers-handbook/Makefile,v 1.1 2000/07/30 18:20:23 asmodai Exp $
|
||||||
#
|
#
|
||||||
# Build the FreeBSD Developers' Handbook.
|
# Build the FreeBSD Developers' Handbook.
|
||||||
#
|
#
|
||||||
|
@ -20,6 +20,13 @@ INSTALL_ONLY_COMPRESSED?=
|
||||||
|
|
||||||
# SGML content
|
# SGML content
|
||||||
SRCS= book.sgml
|
SRCS= book.sgml
|
||||||
|
SRCS+= tools/chapter.sgml
|
||||||
|
SRCS+= secure/chapter.sgml
|
||||||
|
SRCS+= locking/chapter.sgml
|
||||||
|
SRCS+= isa/chapter.sgml
|
||||||
|
SRCS+= pci/chapter.sgml
|
||||||
|
SRCS+= usb/chapter.sgml
|
||||||
|
SRCS+= scsi/chapter.sgml
|
||||||
|
|
||||||
# Entities
|
# Entities
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<!--
|
<!--
|
||||||
The FreeBSD Documentation Project
|
The FreeBSD Documentation Project
|
||||||
|
|
||||||
$FreeBSD: doc/en_US.ISO_8859-1/books/developers-handbook/book.sgml,v 1.14 2001/04/13 09:05:10 murray Exp $
|
$FreeBSD: doc/en_US.ISO_8859-1/books/developers-handbook/book.sgml,v 1.15 2001/04/18 08:57:47 nik Exp $
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!DOCTYPE BOOK PUBLIC "-//FreeBSD//DTD DocBook V4.1-Based Extension//EN" [
|
<!DOCTYPE BOOK PUBLIC "-//FreeBSD//DTD DocBook V4.1-Based Extension//EN" [
|
||||||
|
@ -311,6 +311,7 @@
|
||||||
<title>Device Drivers</title>
|
<title>Device Drivers</title>
|
||||||
|
|
||||||
&chap.driverbasics;
|
&chap.driverbasics;
|
||||||
|
&chap.isa;
|
||||||
&chap.pci;
|
&chap.pci;
|
||||||
&chap.scsi;
|
&chap.scsi;
|
||||||
&chap.usb;
|
&chap.usb;
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
Chapters should be listed in the order in which they are referenced.
|
Chapters should be listed in the order in which they are referenced.
|
||||||
|
|
||||||
$FreeBSD: doc/en_US.ISO_8859-1/books/developers-handbook/chapters.ent,v 1.3 2001/03/29 06:14:32 murray Exp $
|
$FreeBSD: doc/en_US.ISO_8859-1/books/developers-handbook/chapters.ent,v 1.4 2001/04/13 09:05:10 murray Exp $
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!-- Part one -->
|
<!-- Part one -->
|
||||||
|
@ -43,6 +43,7 @@
|
||||||
|
|
||||||
<!-- Part eleven -->
|
<!-- Part eleven -->
|
||||||
<!ENTITY chap.driverbasics SYSTEM "driverbasics/chapter.sgml">
|
<!ENTITY chap.driverbasics SYSTEM "driverbasics/chapter.sgml">
|
||||||
|
<!ENTITY chap.isa SYSTEM "isa/chapter.sgml">
|
||||||
<!ENTITY chap.pci SYSTEM "pci/chapter.sgml">
|
<!ENTITY chap.pci SYSTEM "pci/chapter.sgml">
|
||||||
<!ENTITY chap.scsi SYSTEM "scsi/chapter.sgml">
|
<!ENTITY chap.scsi SYSTEM "scsi/chapter.sgml">
|
||||||
<!ENTITY chap.usb SYSTEM "usb/chapter.sgml">
|
<!ENTITY chap.usb SYSTEM "usb/chapter.sgml">
|
||||||
|
|
Loading…
Reference in a new issue