- FreeBSD Architecture Handbook, which is a book about the FreeBSD architecture. The SMP article have also been moved into the new arch handbook as a separate chapter. - FreeBSD Developers Handbook, which is a book about developing on FreeBSD; basically what was left when the architecture parts was moved away. o Hook up the new FreeBSD Architecture Handbook to the build. o Remove the SMP article since it is now part of the FreeBSD Architecture Handbook. The relevant files from the FreeBSD Developers Handbook have been repository copied to the new FreeBSD Architecture Handbook. This is just step one in the split, both books need some work to be real seperate books. E.g. the FreeBSD Architecture Handbook still needs an introduction. Repository copy by: joe Requested by: rwatson Approved by: murray, ceri (mentor)
32 lines
1.2 KiB
Text
32 lines
1.2 KiB
Text
<!--
|
|
Creates entities for each chapter in the FreeBSD Architecture
|
|
Handbook. Each entity is named chap.foo, where foo is the value
|
|
of the id attribute on that chapter, and corresponds to the name of
|
|
the directory in which that chapter's .sgml file is stored.
|
|
|
|
Chapters should be listed in the order in which they are referenced.
|
|
|
|
$FreeBSD$
|
|
-->
|
|
|
|
<!-- Part one - Kernel -->
|
|
<!ENTITY chap.boot SYSTEM "boot/chapter.sgml">
|
|
<!ENTITY chap.kobj SYSTEM "kobj/chapter.sgml">
|
|
<!ENTITY chap.sysinit SYSTEM "sysinit/chapter.sgml">
|
|
<!ENTITY chap.locking SYSTEM "locking/chapter.sgml">
|
|
<!ENTITY chap.vm SYSTEM "vm/chapter.sgml">
|
|
<!ENTITY chap.jail SYSTEM "jail/chapter.sgml">
|
|
<!ENTITY chap.mac SYSTEM "mac/chapter.sgml">
|
|
<!ENTITY chap.smp SYSTEM "smp/chapter.sgml">
|
|
|
|
<!-- Part Two - Device Drivers -->
|
|
<!ENTITY chap.driverbasics SYSTEM "driverbasics/chapter.sgml">
|
|
<!ENTITY chap.isa SYSTEM "isa/chapter.sgml">
|
|
<!ENTITY chap.pci SYSTEM "pci/chapter.sgml">
|
|
<!ENTITY chap.scsi SYSTEM "scsi/chapter.sgml">
|
|
<!ENTITY chap.usb SYSTEM "usb/chapter.sgml">
|
|
<!ENTITY chap.newbus SYSTEM "newbus/chapter.sgml">
|
|
<!ENTITY chap.snd SYSTEM "sound/chapter.sgml">
|
|
|
|
<!-- Part three - Appendices -->
|
|
<!ENTITY chap.index SYSTEM "index.sgml">
|