Changeset 6be8f06 for chapter08


Ignore:
Timestamp:
12/04/2004 01:26:37 PM (20 years ago)
Author:
Matthew Burgess <matthew@…>
Children:
c5538b3
Parents:
a811dff0
Message:
  • (chapter08/*.xml) RELAX NG validation fixes

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/LFS-RNG/BOOK@4352 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Location:
chapter08
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • chapter08/chapter08.xml

    ra811dff0 r6be8f06  
    44  %general-entities;
    55]>
    6 <chapter id="chapter-bootable" xreflabel="Chapter 8">
     6<chapter xmlns="http://docbook.org/docbook-ng"
     7         xmlns:xi="http://www.w3.org/2003/XInclude"
     8         xml:id="chapter-bootable" xreflabel="Chapter 8">
    79<?dbhtml dir="chapter08"?>
    810<title>Making the LFS system bootable</title>
    911<?dbhtml filename="chapter08.html"?>
    1012
    11 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="introduction.xml"/>
    12 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="fstab.xml"/>
    13 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="kernel.xml"/>
    14 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="grub.xml"/>
     13<xi:include href="introduction.xml"/>
     14<xi:include href="fstab.xml"/>
     15<xi:include href="kernel.xml"/>
     16<xi:include href="grub.xml"/>
    1517
    1618</chapter>
  • chapter08/fstab.xml

    ra811dff0 r6be8f06  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    2 <!DOCTYPE sect1 [
     2<!DOCTYPE section [
    33  <!ENTITY % general-entities SYSTEM "../general.ent">
    44  %general-entities;
    55]>
    6 <sect1 id="ch-bootable-fstab">
    7 <title>Creating the /etc/fstab file</title>
     6<section xmlns="http://docbook.org/docbook-ng"
     7         xml:id="ch-bootable-fstab">
     8<info><title>Creating the /etc/fstab file</title></info>
    89<?dbhtml filename="fstab.html"?>
    910
     
    5960compiled into your kernel (not as a module).</para>
    6061
    61 </sect1>
     62</section>
  • chapter08/grub.xml

    ra811dff0 r6be8f06  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    2 <!DOCTYPE sect1 [
     2<!DOCTYPE section [
    33  <!ENTITY % general-entities SYSTEM "../general.ent">
    44  %general-entities;
    55]>
    6 <sect1 id="ch-bootable-grub">
    7 <title>Making the LFS system bootable</title>
     6<section xmlns="http://docbook.org/docbook-ng"
     7         xmlns:xlink="http://www.w3.org/1999/xlink"
     8         xml:id="ch-bootable-grub">
     9<info><title>Making the LFS system bootable</title></info>
    810<?dbhtml filename="grub.html"?>
    911
     
    119121<para>If <command>info grub</command> doesn't tell you all you want to
    120122know, you can find more information regarding Grub on its website, located at:
    121 <ulink url="http://www.gnu.org/software/grub/"/>.</para>
     123<uri xlink:href="http://www.gnu.org/software/grub/"/>.</para>
    122124
    123125<para>The FHS stipulates that Grub's menu.lst file should be symlinked to
     
    128130ln -s /boot/grub/menu.lst /etc/grub</userinput></screen>
    129131
    130 </sect1>
     132</section>
  • chapter08/introduction.xml

    ra811dff0 r6be8f06  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    2 <!DOCTYPE sect1 [
     2<!DOCTYPE section [
    33  <!ENTITY % general-entities SYSTEM "../general.ent">
    44  %general-entities;
    55]>
    6 <sect1 id="ch-bootable-introduction">
    7 <title>Introduction</title>
     6<section xmlns="http://docbook.org/docbook-ng"
     7         xml:id="ch-bootable-introduction">
     8<info><title>Introduction</title></info>
    89<?dbhtml filename="introduction.html"?>
    910
     
    1314so that the LFS system can be selected for booting at startup.</para>
    1415
    15 </sect1>
     16</section>
  • chapter08/kernel.xml

    ra811dff0 r6be8f06  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    2 <!DOCTYPE sect1 [
     2<!DOCTYPE section [
    33  <!ENTITY % general-entities SYSTEM "../general.ent">
    44  %general-entities;
    55]>
    6 <sect1 id="ch-bootable-kernel" xreflabel="Linux" role="wrap">
    7 <title>Linux-&linux-version;</title>
     6<section xmlns="http://docbook.org/docbook-ng"
     7         xmlns:xlink="http://www.w3.org/1999/xlink"
     8         xml:id="ch-bootable-kernel" xreflabel="Linux" role="wrap">
     9<info><title>Linux-&linux-version;</title></info>
    810<?dbhtml filename="kernel.html"?>
    911
    1012<indexterm zone="ch-bootable-kernel"><primary sortas="a-Linux">Linux</primary></indexterm>
    1113
    12 <sect2 role="package"><title/>
     14<section role="package"><info><title/></info>
    1315<para>The Linux package contains the kernel and the header files.</para>
    1416
     
    2527GCC, Glibc, Grep, Gzip, Make, Modutils, Perl, Sed</seg></seglistitem>
    2628</segmentedlist>
    27 </sect2>
    28 
    29 <sect2 role="installation">
    30 <title>Installation of the kernel</title>
     29</section>
     30
     31<section role="installation">
     32<info><title>Installation of the kernel</title></info>
    3133
    3234<para>Building the kernel involves a few steps: configuration, compilation, and
     
    125127consider stripping and compressing the modules. For most people such compression
    126128isn't worth the trouble, but if you're really pressed for space, then have a look at
    127 <ulink url="http://www.linux-mips.org/archives/linux-mips/2002-04/msg00031.html"/>.</para>
     129<uri xlink:href="http://www.linux-mips.org/archives/linux-mips/2002-04/msg00031.html"/>.</para>
    128130
    129131<para>Kernel compilation has finished but more steps are required to complete
     
    165167owned by user <emphasis>root</emphasis>.</para>
    166168
    167 </sect2>
    168 
    169 
    170 <sect2 id="contents-kernel" role="content"><title>Contents of Linux</title>
     169</section>
     170
     171
     172<section xml:id="contents-kernel" role="content"><info><title>Contents of Linux</title></info>
    171173
    172174<segmentedlist>
     
    178180<variablelist><title>Short descriptions</title>
    179181
    180 <varlistentry id="kernel">
     182<varlistentry xml:id="kernel">
    181183<term>The <emphasis>kernel</emphasis></term>
    182184<listitem>
     
    191193</varlistentry>
    192194
    193 <varlistentry id="kernel-headers">
     195<varlistentry xml:id="kernel-headers">
    194196<term>The <emphasis>kernel headers</emphasis></term>
    195197<listitem>
     
    203205</varlistentry>
    204206
    205 <varlistentry id="System.map">
     207<varlistentry xml:id="System.map">
    206208<term><filename>System.map</filename></term>
    207209<listitem>
     
    213215</variablelist>
    214216
    215 </sect2>
    216 
    217 </sect1>
     217</section>
     218
     219</section>
Note: See TracChangeset for help on using the changeset viewer.