Changes in / [5c8e74d:350ab24]


Ignore:
Files:
28 added
30 deleted
145 edited

Legend:

Unmodified
Added
Removed
  • BOOK/alpha-index.xml

    r5c8e74d r350ab24  
    6161    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="testsuite-tools/alpha-chapter.xml"/>
    6262    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="final-system/alpha-chapter.xml"/>
    63     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootscripts/alpha-chapter.xml"/>
     63    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="system-config/alpha-chapter.xml"/>
    6464    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="network/alpha-chapter.xml"/>
    6565    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootable/alpha-chapter.xml"/>
  • BOOK/appendices/dependencies/common.xml

    r5c8e74d r350ab24  
    283283      </segmentedlist>
    284284
    285 <!-- Begin CLFS-Bootscripts dependency info -->
    286   <bridgehead renderas="sect2" id="bootscripts-dep">CLFS-Bootscripts</bridgehead>
     285<!-- Begin CLFS-Boot-scripts dependency info -->
     286  <bridgehead renderas="sect2" id="boot-scripts-dep">CLFS-Boot-scripts</bridgehead>
    287287
    288288      <segmentedlist>
  • BOOK/appendices/rationale/common.xml

    r5c8e74d r350ab24  
    7979
    8080    <listitem>
    81       <para>CLFS-Bootscripts</para>
     81      <para>CLFS-Boot-scripts</para>
    8282      <para>This package contains a number of scripts that run at boottime,
    8383      performing essential tasks such as mounting/checking filesystems and
     
    373373    <listitem>
    374374      <para>Systemd</para>
    375       <para>Systemd provides the init daemon for the system, as well as Udev, 
     375      <para>Systemd provides the init daemon for the system, as well as Udev,
    376376      which dynamically creates device nodes.</para>
    377377    </listitem>
  • BOOK/boot/64/shadow.xml

    r5c8e74d r350ab24  
    4141    href="../common/shadow.xml"
    4242    xpointer="xpointer(//*[@os='f'])"/>
    43  
     43
    4444    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    4545    href="../common/shadow.xml"
  • BOOK/boot/alpha-chapter.xml

    r5c8e74d r350ab24  
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
    15   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/bootscripts.xml"/>
     15  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/boot-scripts.xml"/>
    1616 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/e2fsprogs.xml"/>
    1717  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kmod.xml"/>
     
    2929  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="alpha/aboot.xml"/>
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/changingowner.xml"/>
     31  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/howtoview.xml"/>
    3132  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/whatnext.xml"/>
    3233
  • BOOK/boot/common/createfiles.xml

    r5c8e74d r350ab24  
    2323ln -sv bash ${CLFS}/bin/sh
    2424ln -sv ../run ${CLFS}/var/run
    25 ln -sv /tools/sbin/{fsck.ext2,fsck.ext3,fsck.ext4,e2fsck} ${CLFS}/sbin
    2625ln -sv /tools/sbin/init ${CLFS}/sbin
    2726ln -sv /tools/etc/{login.{access,defs},limits} ${CLFS}/etc</userinput></screen>
  • BOOK/boot/common/devices.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-boot-devices">
    1414    <primary sortas="e-/dev/*">/dev/*</primary>
     15    <secondary>boot</secondary>
    1516  </indexterm>
    1617
  • BOOK/boot/common/fstab.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-boot-fstab">
    1414    <primary sortas="e-/etc/fstab">/etc/fstab</primary>
     15    <secondary>boot</secondary>
    1516  </indexterm>
    1617
     
    2829/dev/<replaceable>[xxx]</replaceable>     /            <replaceable>[fff]</replaceable>  defaults         1     1
    2930/dev/<replaceable>[yyy]</replaceable>     swap         swap   pri=1            0     0
    30 proc           /proc        proc   defaults         0     0
    31 sysfs          /sys         sysfs  defaults         0     0
    3231devpts         /dev/pts     devpts gid=&gid-tty;,mode=620   0     0
    3332shm            /dev/shm     tmpfs  defaults         0     0
    34 tmpfs          /run         tmpfs  defaults         0     0
    35 devtmpfs       /dev         devtmpfs mode=0755,nosuid 0     0
    3633
    3734# End /etc/fstab</literal>
     
    4239  xpointer="xpointer(//*[@os='b'])"/>
    4340
    44   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    45   href="../../bootable/common/fstab.xml"
    46   xpointer="xpointer(//*[@os='c'])"/>
     41  <para os="c">The <filename class="directory">/dev/shm</filename> mount point
     42  for <systemitem class="filesystem">tmpfs</systemitem> is included to
     43  allow enabling POSIX-shared memory. The kernel must have the required
     44  support built into it for this to work (more about this is in the next
     45  section). Please note that very little software currently uses
     46  POSIX-shared memory.  Therefore, consider the <filename
     47  class="directory">/dev/shm</filename> mount point optional. For more
     48  information, see <filename>Documentation/filesystems/tmpfs.txt</filename>
     49  in the kernel source tree.</para>
    4750
    4851</sect1>
  • BOOK/boot/common/pwdgroup.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-boot-pwdgroup">
    1414    <primary sortas="e-/etc/passwd">/etc/passwd</primary>
     15    <secondary>boot</secondary>
    1516  </indexterm>
    1617
    1718  <indexterm zone="ch-boot-pwdgroup">
    1819    <primary sortas="e-/etc/group">/etc/group</primary>
     20    <secondary>boot</secondary>
    1921  </indexterm>
    2022
     
    4042
    4143  <variablelist os="c">
    42  
     44
    4345    <title>Additional users you may want to add if not already included:</title>
    4446
  • BOOK/boot/common/settingenviron.xml

    r5c8e74d r350ab24  
    2525  <para>The <envar>LC_ALL</envar> variable controls the localization of
    2626  certain programs, making their messages follow the conventions of a
    27   specified country. 
     27  specified country.
    2828  Setting <envar>LC_ALL</envar> to <quote>POSIX</quote> or <quote>C</quote>
    2929  (the two are equivalent) ensures that everything will work as expected
     
    3535  <xref linkend="chapter-temp-system"/> are only picked up by the shell
    3636  if they have not yet been built on the target system. This configuration
    37   forces use of the final system binaries as they are built over the 
     37  forces use of the final system binaries as they are built over the
    3838  temp-system, minimising the chance of final system programs being built
    3939  against the temp-system.</para>
  • BOOK/boot/common/shadow.xml

    r5c8e74d r350ab24  
    3939    <filename class="directory">/tools/bin</filename>:</para>
    4040
    41 <screen os="g"><userinput>cp config.h{,.orig}
     41<screen os="g"><userinput>cp -v config.h{,.orig}
    4242sed '/PASSWD_PROGRAM/s@/bin/passwd@/tools&amp;@' config.h.orig &gt; config.h</userinput></screen>
    4343
  • BOOK/boot/common/sysvinit.xml

    r5c8e74d r350ab24  
    4848    <indexterm zone="conf-tools-sysvinit">
    4949      <primary sortas="a-Sysvinit">Sysvinit</primary>
    50       <secondary>boot, configuring</secondary>
     50      <secondary>configuring</secondary>
    5151    </indexterm>
    5252
     
    111111    before doing anything else. This escape sequence switches the console
    112112    character set to a user-defined one, which can be modified by running
    113     the <command>setfont</command> program. The <command>console</command>
    114     initscript from the CLFS-Bootscripts package calls the
    115     <command>setfont</command> program during system startup. Sending this
     113    the <command>setfont</command> program. Sending this
    116114    escape sequence is necessary for people who use non-ISO 8859-1 screen
    117115    fonts, but it does not affect native English speakers.</para>
  • BOOK/boot/mips-chapter.xml

    r5c8e74d r350ab24  
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
    15   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/bootscripts.xml"/>
     15  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/boot-scripts.xml"/>
    1616 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/e2fsprogs.xml"/>
    1717  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kmod.xml"/>
     
    2929  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/settingenviron.xml"/>
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/changingowner.xml"/>
     31  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/howtoview.xml"/>
    3132  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="mips/colo.xml"/>
    3233  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/whatnext.xml"/>
  • BOOK/boot/mips64-64-chapter.xml

    r5c8e74d r350ab24  
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
    15   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/bootscripts.xml"/>
     15  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/boot-scripts.xml"/>
    1616 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="64/e2fsprogs.xml"/>
    1717  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="x86_64-64/kmod.xml"/>
     
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="mips64-64/flags.xml"/>
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/changingowner.xml"/>
     32  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/howtoview.xml"/>
    3233  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="mips/colo.xml"/>
    3334  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/whatnext.xml"/>
  • BOOK/boot/mips64-chapter.xml

    r5c8e74d r350ab24  
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
    15   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/bootscripts.xml"/>
     15  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/boot-scripts.xml"/>
    1616 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/e2fsprogs.xml"/>
    1717  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/kmod.xml"/>
     
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="mips64/flags.xml"/>
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/changingowner.xml"/>
     32  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/howtoview.xml"/>
    3233  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="mips/colo.xml"/>
    3334  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/whatnext.xml"/>
  • BOOK/boot/mips64/createfiles.xml

    r5c8e74d r350ab24  
    2626ln -sv bash ${CLFS}/bin/sh
    2727ln -sv ../run ${CLFS}/var/run
    28 ln -sv /tools/sbin/{fsck.ext2,fsck.ext3,fsck.ext4,e2fsck} ${CLFS}/sbin
    2928ln -sv /tools/sbin/init ${CLFS}/sbin
    3029ln -sv /tools/etc/{login.{access,defs},limits} ${CLFS}/etc</userinput></screen>
  • BOOK/boot/multilib/createfiles.xml

    r5c8e74d r350ab24  
    2424ln -sv bash ${CLFS}/bin/sh
    2525ln -sv ../run ${CLFS}/var/run
    26 ln -sv /tools/sbin/{fsck.ext2,fsck.ext3,fsck.ext4,e2fsck} ${CLFS}/sbin
    2726ln -sv /tools/sbin/init ${CLFS}/sbin
    2827ln -sv /tools/etc/{login.{access,defs},limits} ${CLFS}/etc</userinput></screen>
  • BOOK/boot/ppc-chapter.xml

    r5c8e74d r350ab24  
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
    15   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/bootscripts.xml"/>
     15  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/boot-scripts.xml"/>
    1616 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/e2fsprogs.xml"/>
    1717  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kmod.xml"/>
     
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/settingenviron.xml"/>
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/changingowner.xml"/>
     32  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/howtoview.xml"/>
    3233  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ppc/yaboot.xml"/>
    3334  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/whatnext.xml"/>
  • BOOK/boot/ppc64-64-chapter.xml

    r5c8e74d r350ab24  
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
    15   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/bootscripts.xml"/>
     15  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/boot-scripts.xml"/>
    1616 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="64/e2fsprogs.xml"/>
    1717  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="x86_64-64/kmod.xml"/>
     
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="x86_64-64/flags.xml"/>
    3232  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/changingowner.xml"/>
     33  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/howtoview.xml"/>
    3334  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ppc/yaboot.xml"/>
    3435  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/whatnext.xml"/>
  • BOOK/boot/ppc64-chapter.xml

    r5c8e74d r350ab24  
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
    15   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/bootscripts.xml"/>
     15  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/boot-scripts.xml"/>
    1616  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ppc64/e2fsprogs-libs.xml"/>
    1717  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ppc64/e2fsprogs.xml"/>
     
    3232  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/flags.xml"/>
    3333  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/changingowner.xml"/>
     34  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/howtoview.xml"/>
    3435  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ppc64/yaboot.xml"/>
    3536  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/whatnext.xml"/>
  • BOOK/boot/sparc-chapter.xml

    r5c8e74d r350ab24  
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
    15   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/bootscripts.xml"/>
     15  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/boot-scripts.xml"/>
    1616 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/e2fsprogs.xml"/>
    1717  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kmod.xml"/>
     
    2929  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/settingenviron.xml"/>
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/changingowner.xml"/>
     31  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/howtoview.xml"/>
    3132  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="sparc/silo.xml"/>
    3233  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/whatnext.xml"/>
  • BOOK/boot/sparc/fstab.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-boot-fstab">
    1414    <primary sortas="e-/etc/fstab">/etc/fstab</primary>
     15    <secondary>boot</secondary>
    1516  </indexterm>
    1617
     
    2728/dev/<replaceable>[xxx]</replaceable>        /            <replaceable>[fff]</replaceable>       defaults         1     1
    2829/dev/<replaceable>[yyy]</replaceable>        swap         swap        pri=1            0     0
    29 proc           /proc           proc        defaults         0     0
    30 sysfs          /sys            sysfs       defaults         0     0
    3130devpts         /dev/pts        devpts      gid=&gid-tty;,mode=620   0     0
    3231shm            /dev/shm        tmpfs       defaults         0     0
    33 tmpfs          /run            tmpfs       defaults         0     0
    34 devtmpfs       /dev            devtmpfs    mode=0755,nosuid 0     0
    3532none           /proc/openprom  openpromfs  defaults         0     0
    3633# End /etc/fstab</literal>
  • BOOK/boot/sparc/silo-build.xml

    r5c8e74d r350ab24  
    4444        <term><parameter>CC=cc</parameter></term>
    4545        <listitem>
    46           <para>Overwrites the default value of <command>gcc -m32</command> which will fail 
     46          <para>Overwrites the default value of <command>gcc -m32</command> which will fail
    4747to compile on 64 bit targets. This is not to be confused with <command>CC=${CC}</command> below.</para>
    4848        </listitem>
  • BOOK/boot/sparc/silo.xml

    r5c8e74d r350ab24  
    1717
    1818  <para os="a">This is for the configuration of <command>silo</command>, similar
    19   to what is in bootscripts.</para>
     19  to what is in boot-scripts.</para>
    2020
    2121<screen><userinput>cat &gt; ${CLFS}/etc/silo.conf &lt;&lt; "EOF"
     
    2525timeout = 150         # Wait 15 seconds before booting the default section
    2626
    27 image = /boot/clfskernel-&linux-version;
     27image = /tools/boot/vmlinuz-clfs-&linux-version;
    2828  label = linux
    2929# End /etc/silo.conf</literal>
  • BOOK/boot/sparc64-64-chapter.xml

    r5c8e74d r350ab24  
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
    15   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/bootscripts.xml"/>
     15  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/boot-scripts.xml"/>
    1616 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="64/e2fsprogs.xml"/>
    1717  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="x86_64-64/kmod.xml"/>
     
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="sparc64-64/flags.xml"/>
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/changingowner.xml"/>
     32  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/howtoview.xml"/>
    3233  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="sparc/silo.xml"/>
    3334  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/whatnext.xml"/>
  • BOOK/boot/sparc64-chapter.xml

    r5c8e74d r350ab24  
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
    15   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/bootscripts.xml"/>
     15  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/boot-scripts.xml"/>
    1616 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/e2fsprogs.xml"/>
    1717  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/kmod.xml"/>
     
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="sparc64/flags.xml"/>
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/changingowner.xml"/>
     32  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/howtoview.xml"/>
    3233  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="sparc/silo.xml"/>
    3334  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/whatnext.xml"/>
  • BOOK/boot/x86-chapter.xml

    r5c8e74d r350ab24  
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
    15   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/bootscripts.xml"/>
     15  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/boot-scripts.xml"/>
    1616  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/e2fsprogs.xml"/>
    1717  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kmod.xml"/>
     
    2828  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/settingenviron.xml"/>
    2929  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/changingowner.xml"/>
     30  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/howtoview.xml"/>
    3031  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/whatnext.xml"/>
    3132
  • BOOK/boot/x86_64-64-chapter.xml

    r5c8e74d r350ab24  
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
    15   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/bootscripts.xml"/>
     15  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/boot-scripts.xml"/>
    1616 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="64/e2fsprogs.xml"/>
    1717  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="x86_64-64/kmod.xml"/>
     
    2929  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="x86_64-64/flags.xml"/>
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/changingowner.xml"/>
     31  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/howtoview.xml"/>
    3132  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/whatnext.xml"/>
    3233
  • BOOK/boot/x86_64-chapter.xml

    r5c8e74d r350ab24  
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
    15   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/bootscripts.xml"/>
     15  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/boot-scripts.xml"/>
    1616 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/e2fsprogs.xml"/>
    1717  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/kmod.xml"/>
     
    2929  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="x86_64/flags.xml"/>
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/changingowner.xml"/>
     31  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/howtoview.xml"/>
    3132  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/whatnext.xml"/>
    3233
  • BOOK/bootable/alpha-chapter.xml

    r5c8e74d r350ab24  
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
    15   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="alpha/fstab.xml"/>
     15  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/fstab.xml"/>
    1616  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="alpha/kernel.xml"/>
    1717  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="alpha/aboot.xml"/>
  • BOOK/bootable/alpha/kernel.xml

    r5c8e74d r350ab24  
    9898    href="../x86/kernel.xml"
    9999    xpointer="xpointer(//*[@os='t'])"/>
    100    
     100
    101101    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    102102    href="../x86/kernel.xml"
  • BOOK/bootable/common/fstab.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-bootable-fstab">
    1414    <primary sortas="e-/etc/fstab">/etc/fstab</primary>
     15    <secondary>bootable</secondary>
    1516  </indexterm>
    1617
     
    4041  fields in this file, see <command>man 5 fstab</command>.</para>
    4142
    42   <para os="c">The <filename class="directory">/dev/shm</filename> mount point
    43   for <systemitem class="filesystem">tmpfs</systemitem> is included to
    44   allow enabling POSIX-shared memory. The kernel must have the required
    45   support built into it for this to work (more about this is in the next
    46   section). Please note that very little software currently uses
    47   POSIX-shared memory.  Therefore, consider the <filename
    48   class="directory">/dev/shm</filename> mount point optional. For more
    49   information, see <filename>Documentation/filesystems/tmpfs.txt</filename>
    50   in the kernel source tree.</para>
    51 
    5243</sect1>
  • BOOK/bootable/mips/kernel.xml

    r5c8e74d r350ab24  
    8989    href="../x86/kernel.xml"
    9090    xpointer="xpointer(//*[@os='t'])"/>
    91    
     91
    9292    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    9393    href="../x86/kernel.xml"
  • BOOK/bootable/ppc/kernel.xml

    r5c8e74d r350ab24  
    6565    mac-specific options for ide and input.</para>
    6666    </warning>
    67    
     67
    6868    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    6969    href="../x86/kernel.xml"
     
    101101    href="../x86/kernel.xml"
    102102    xpointer="xpointer(//*[@os='t'])"/>
    103    
     103
    104104    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    105105    href="../x86/kernel.xml"
  • BOOK/bootable/ppc64/kernel.xml

    r5c8e74d r350ab24  
    9393    href="../x86/kernel.xml"
    9494    xpointer="xpointer(//*[@os='t'])"/>
    95    
     95
    9696    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    9797    href="../x86/kernel.xml"
  • BOOK/bootable/sparc/fstab.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-bootable-fstab">
    1414    <primary sortas="e-/etc/fstab">/etc/fstab</primary>
     15    <secondary>bootable</secondary>
    1516  </indexterm>
    1617
     
    4142  xpointer="xpointer(//*[@os='b'])"/>
    4243
    43   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    44   href="../common/fstab.xml"
    45   xpointer="xpointer(//*[@os='c'])"/>
    46 
    4744</sect1>
  • BOOK/bootable/sparc/kernel.xml

    r5c8e74d r350ab24  
    9393    href="../x86/kernel.xml"
    9494    xpointer="xpointer(//*[@os='t'])"/>
    95    
     95
    9696    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    9797    href="../x86/kernel.xml"
  • BOOK/bootable/x86_64/kernel.xml

    r5c8e74d r350ab24  
    9393    href="../x86/kernel.xml"
    9494    xpointer="xpointer(//*[@os='t'])"/>
    95    
     95
    9696    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    9797    href="../x86/kernel.xml"
  • BOOK/chroot/common/devices.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-chroot-devices">
    1414    <primary sortas="e-/dev/*">/dev/*</primary>
     15    <secondary>chroot</secondary>
    1516  </indexterm>
    1617
  • BOOK/chroot/common/kernfs.xml

    r5c8e74d r350ab24  
    5454<screen><userinput>mount -v -o bind /dev ${CLFS}/dev</userinput></screen>
    5555
    56   <para>Additional file systems will soon be mounted from within the chroot 
     56  <para>Additional file systems will soon be mounted from within the chroot
    5757  environment. To keep the host up to date, perform a <quote>fake mount</quote>
    5858  for each of these now:</para>
  • BOOK/chroot/common/pwdgroup.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-chroot-pwdgroup">
    1414    <primary sortas="e-/etc/passwd">/etc/passwd</primary>
     15    <secondary>chroot</secondary>
    1516  </indexterm>
    1617
    1718  <indexterm zone="ch-chroot-pwdgroup">
    1819    <primary sortas="e-/etc/group">/etc/group</primary>
     20    <secondary>chroot</secondary>
    1921  </indexterm>
    2022
     
    2224  href="../../boot/common/pwdgroup.xml"
    2325  xpointer="xpointer(//*[@os='a'])"/>
    24  
     26
    2527  <para>Create the <filename>/etc/passwd</filename> file by running the
    2628  following command:</para>
  • BOOK/cross-tools/64/flags.xml

    r5c8e74d r350ab24  
    1616  <screen os="b"><userinput>export BUILD64="-m64"</userinput></screen>
    1717
    18   <para os="c">Lets add the build flags to <filename>~/.bashrc</filename> to
     18  <para os="c">Now add the build flags to <filename>~/.bashrc</filename> to
    1919    prevent issues if we stop and come back later.</para>
    2020
  • BOOK/cross-tools/common/bc.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-cross-tools-bc">
    1414    <primary sortas="a-Bc">Bc</primary>
    15     <secondary>cross-tools</secondary>
     15    <secondary>cross tools</secondary>
    1616  </indexterm>
    1717
  • BOOK/cross-tools/common/cloog.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-cross-tools-cloog">
    1414    <primary sortas="a-CLooG">CLooG</primary>
    15     <secondary>cross-tools</secondary>
     15    <secondary>cross tools</secondary>
    1616  </indexterm>
    1717
     
    3333    xpointer="xpointer(//*[@os='s1'])"/>
    3434
    35     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    36     href="../../final-system/common/cloog.xml"
    37     xpointer="xpointer(//*[@os='s2'])"/>
     35<screen os="s2"><userinput>cp -v Makefile{,.orig}
     36sed '/cmake/d' Makefile.orig &gt; Makefile</userinput></screen>
    3837
    3938    <para os="c">Compile the package:</para>
  • BOOK/cross-tools/common/file.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-cross-tools-file">
    1414    <primary sortas="a-File">File</primary>
    15     <secondary>cross-tools</secondary>
     15    <secondary>cross tools</secondary>
    1616  </indexterm>
    1717
  • BOOK/cross-tools/common/gcc-static.xml

    r5c8e74d r350ab24  
    3838<screen os="ab"><userinput>patch -Np1 -i ../&gcc-specs-patch;</userinput></screen>
    3939
    40     <para os="ag">Change the StartFile Spec so that GCC looks in 
     40    <para os="ag">Change the StartFile Spec so that GCC looks in
    4141<filename class="directory">/tools</filename>:</para>
    4242
  • BOOK/cross-tools/common/glibc.xml

    r5c8e74d r350ab24  
    9999        <term><parameter>--disable-profile</parameter></term>
    100100        <listitem>
    101           <para>This builds the libraries without profiling information. 
     101          <para>This builds the libraries without profiling information.
    102102          Omit this option if profiling on the temporary tools is necessary.</para>
    103103        </listitem>
  • BOOK/cross-tools/common/gmp.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-cross-tools-gmp">
    1414    <primary sortas="a-GMP">GMP</primary>
    15     <secondary>cross-tools</secondary>
     15    <secondary>cross tools</secondary>
    1616  </indexterm>
    1717
  • BOOK/cross-tools/common/isl.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-cross-tools-isl">
    1414    <primary sortas="a-ISL">ISL</primary>
    15     <secondary>cross-tools</secondary>
     15    <secondary>cross tools</secondary>
    1616  </indexterm>
    1717
  • BOOK/cross-tools/common/mpc.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-cross-tools-mpc">
    1414    <primary sortas="a-MPC">MPC</primary>
    15     <secondary>cross-tools</secondary>
     15    <secondary>cross tools</secondary>
    1616  </indexterm>
    1717
  • BOOK/cross-tools/common/mpfr.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-cross-tools-mpfr">
    1414    <primary sortas="a-MPFR">MPFR</primary>
    15     <secondary>cross-tools</secondary>
     15    <secondary>cross tools</secondary>
    1616  </indexterm>
    1717
  • BOOK/cross-tools/common/ncurses.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-cross-tools-ncurses">
    1414    <primary sortas="a-Ncurses">Ncurses</primary>
    15     <secondary>cross-tools</secondary>
     15    <secondary>cross tools</secondary>
    1616  </indexterm>
    1717
  • BOOK/cross-tools/multilib/flags.xml

    r5c8e74d r350ab24  
    1717export BUILD64="-m64"</userinput></screen>
    1818
    19   <para os="c">Let's add the build flags to <filename>~/.bashrc</filename> to
     19  <para os="c">Now add the build flags to <filename>~/.bashrc</filename> to
    2020  prevent issues if we stop and come back later:</para>
    2121
  • BOOK/cross-tools/ppc64/glibc.xml

    r5c8e74d r350ab24  
    6565      href="../common/glibc.xml"
    6666      xpointer="xpointer(//*[@os='dg3'])"/>
    67    
     67
    6868      <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    6969      href="../common/glibc.xml"
  • BOOK/cross-tools/x86-chapter.xml

    r5c8e74d r350ab24  
    2727  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/binutils-32.xml"/>
    2828  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/gcc-static.xml"/>
    29   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="x86/glibc.xml"/>
     29  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/glibc.xml"/>
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/gcc-final.xml"/>
    3131
  • BOOK/cross-tools/x86_64-64-chapter.xml

    r5c8e74d r350ab24  
    2828  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/binutils.xml"/>
    2929  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="64/gcc-static.xml"/>
    30   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="x86_64-64/glibc.xml"/>
     30  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="64/glibc.xml"/>
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="64/gcc-final.xml"/>
    3232
  • BOOK/cross-tools/x86_64/glibc.xml

    r5c8e74d r350ab24  
    5757<screen os="df"><userinput>BUILD_CC="gcc" CC="${CLFS_TARGET}-gcc ${BUILD32}" \
    5858    AR="${CLFS_TARGET}-ar" RANLIB="${CLFS_TARGET}-ranlib" \
    59     CFLAGS="-march=$(cut -d- -f1 &lt;&lt;&lt; $CLFS_TARGET32) -O2" \
    6059    ../glibc-&glibc-version;/configure --prefix=/tools \
    6160    --host=${CLFS_TARGET32} --build=${CLFS_HOST} \
     
    8281      href="../common/glibc.xml"
    8382      xpointer="xpointer(//*[@os='dg4'])"/>
    84 
    85      <varlistentry os="ea2">
    86         <term><parameter>CFLAGS="-march=$(cut -d- -f1 &lt;&lt;&lt;
    87         $CLFS_TARGET32) -O2"</parameter></term>
    88         <listitem>
    89           <para>Forces GLIBC to optimize for our target system.</para>
    90         </listitem>
    91       </varlistentry>
    9283
    9384      <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/cross-tools/x86_64/variables.xml

    r5c8e74d r350ab24  
    2727<screen os="d"><userinput>export CLFS_TARGET="x86_64-unknown-linux-gnu"</userinput></screen>
    2828
    29   <para os="m1">Now we will set our Target Triplet for 32 Bits:</para>
     29  <para os="m1">Now set the target triplet for 32 bits:</para>
    3030
    3131<screen os="m2"><userinput>export CLFS_TARGET32="i686-pc-linux-gnu"</userinput></screen>
  • BOOK/final-preps/addinguser.xml

    r5c8e74d r350ab24  
    7777chown -v clfs ${CLFS}/cross-tools</userinput></screen>
    7878
    79   <para>If a separate working directory was created as suggested, 
     79  <para>If a separate working directory was created as suggested,
    8080  give user <systemitem class="username">clfs</systemitem> ownership of this directory:</para>
    8181
  • BOOK/final-preps/creatingcrossdir.xml

    r5c8e74d r350ab24  
    3131<screen><userinput>ln -sv ${CLFS}/cross-tools /</userinput></screen>
    3232
    33   <para>The symlink isn't technically necessary (though the book's
    34   instructions do assume its existence), but is there mainly for
    35   consistency (because /tools is also symlinked to ${CLFS}/tools) and to
    36   simplify the installation of the cross-compile tools.</para>
    37 
    3833</sect1>
  • BOOK/final-system/common/acl.xml

    r5c8e74d r350ab24  
    3333
    3434<screen os="d"><userinput>sed -i "s:| sed.*::g" test/{sbits-restore,cp,misc}.test</userinput></screen>
    35  
     35
    3636    <para os="e">Prepare ACL for compilation:</para>
    3737
  • BOOK/final-system/common/autoconf.xml

    r5c8e74d r350ab24  
    3737
    3838<screen os="e2"><userinput remap="test">make check VERBOSE=yes</userinput></screen>
    39    
     39
    4040    <para os="e3">17 tests are skipped that use Automake and different GCC languages.
    4141    For full test coverage, Autoconf can be re-tested after Automake has been
  • BOOK/final-system/common/coreutils.xml

    r5c8e74d r350ab24  
    3939    --enable-no-install-program=kill,uptime \
    4040    --enable-install-program=hostname --libexecdir=/usr/lib</userinput></screen>
    41    
     41
    4242    <variablelist os="d1">
    4343      <title>The meaning of the configure options:</title>
    44      
     44
    4545        <varlistentry os="d2">
    4646          <term><parameter>FORCE_UNSAFE_CONFIGURE=1</parameter></term>
  • BOOK/final-system/common/e2fsprogs.xml

    r5c8e74d r350ab24  
    196196          <para>Is used to check, and optionally repair <systemitem
    197197          class="filesystem">ext2</systemitem>, <systemitem
    198           class="filesystem">ext3</systemitem> and <systemitem 
     198          class="filesystem">ext3</systemitem> and <systemitem
    199199          class="filesystem">ext4</systemitem>file systems</para>
    200200          <indexterm zone="ch-system-e2fsprogs e2fsck">
     
    349349        <listitem>
    350350          <para>Creates an <systemitem class="filesystem">ext2</systemitem>,
    351           <systemitem class="filesystem">ext3</systemitem> or <systemitem 
     351          <systemitem class="filesystem">ext3</systemitem> or <systemitem
    352352          class="filesystem">ext4</systemitem> file system on the given device</para>
    353353          <indexterm zone="ch-system-e2fsprogs mke2fs">
  • BOOK/final-system/common/findutils.xml

    r5c8e74d r350ab24  
    5858
    5959<screen os="h"><userinput>make install</userinput></screen>
    60 
    61     <para os="i">The <command>find</command> program is used by some of the scripts
    62     in the CLFS-Bootscripts package. As <filename
    63     class="directory">/usr</filename> may not be available during the early
    64     stages of booting, the <command>find</command> binary needs to be on
    65     the root partition:</para>
    66 
    67 <screen os="j"><userinput>mv -v /usr/bin/find /bin</userinput></screen>
    68 
    69     <para os="k">The <command>updatedb</command> script needs to be modified
    70     to point to the new location for <command>find</command>:</para>
    71 
    72 <screen os="l"><userinput>sed -i 's@find:=${BINDIR}@find:=/bin@' /usr/bin/updatedb</userinput></screen>
    7360
    7461  </sect2>
  • BOOK/final-system/common/gcc.xml

    r5c8e74d r350ab24  
    2626    <title>Installation of GCC</title>
    2727
    28     <para os="p1">The following patch contains a number of updates to the 
     28    <para os="p1">The following patch contains a number of updates to the
    2929    &gcc-version; branch by the GCC developers:</para>
    3030
  • BOOK/final-system/common/groff.xml

    r5c8e74d r350ab24  
    4646
    4747    <para os="i">Some documentation programs, such as <command>xman</command>,
    48     will not work properly without the following symlinks:</para>
    49 
    50 <screen os="j"><userinput>ln -sv soelim /usr/bin/zsoelim
    51 ln -sv eqn /usr/bin/geqn
    52 ln -sv tbl /usr/bin/gtbl</userinput></screen>
     48    will not work properly without the following symlink:</para>
     49
     50<screen os="j"><userinput>ln -sv soelim /usr/bin/zsoelim</userinput></screen>
    5351
    5452  </sect2>
     
    6260
    6361      <seglistitem>
    64         <seg>addftinfo, afmtodit, chem, eqn, eqn2graph, gdiffmk,
    65         geqn (link to eqn), grap2graph, grn, grodvi, groff, groffer, grog,
    66         grolbp, grolj4, grops, grotty, gtbl (link to tbl), hpftodit, indxbib,
    67         lkbib, lookbib, mmroff, neqn, nroff, pdfroff, pfbtops, pic, pic2graph,
    68         post-grohtml, pre-grohtml, preconv, refer, roff2dvi, roff2html,
    69         roff2pdf, roff2ps, roff2text, roff2x, soelim, tbl, tfmtodit, troff,
    70         and zsoelim (link to soelim)</seg>
     62        <seg>addftinfo, afmtodit, chem, eqn, eqn2graph, gdiffmk, grap2graph,
     63        grn, grodvi, groff, groffer, grog, grolbp, grolj4, grops, grotty,
     64        hpftodit, indxbib, lkbib, lookbib, mmroff, neqn, nroff, pdfroff,
     65        pfbtops, pic, pic2graph, post-grohtml, pre-grohtml, preconv, refer,
     66        roff2dvi, roff2html, roff2pdf, roff2ps, roff2text, roff2x, soelim,
     67        tbl, tfmtodit, troff, and zsoelim (link to soelim)</seg>
    7168        <seg>/usr/lib/groff, /usr/share/doc/groff-&groff-version;, /usr/share/groff</seg>
    7269      </seglistitem>
     
    138135          <indexterm zone="ch-system-groff gdiffmk">
    139136            <primary sortas="b-gdiffmk">gdiffmk</primary>
    140           </indexterm>
    141         </listitem>
    142       </varlistentry>
    143 
    144       <varlistentry id="geqn">
    145         <term><command>geqn</command></term>
    146         <listitem>
    147           <para>A link to <command>eqn</command></para>
    148           <indexterm zone="ch-system-groff geqn">
    149             <primary sortas="b-geqn">geqn</primary>
    150137          </indexterm>
    151138        </listitem>
     
    264251      </varlistentry>
    265252
    266       <varlistentry id="gtbl">
    267         <term><command>gtbl</command></term>
    268         <listitem>
    269           <para>A link to <command>tbl</command></para>
    270           <indexterm zone="ch-system-groff gtbl">
    271             <primary sortas="b-gtbl">gtbl</primary>
    272           </indexterm>
    273         </listitem>
    274       </varlistentry>
    275 
    276253      <varlistentry id="hpftodit">
    277254        <term><command>hpftodit</command></term>
  • BOOK/final-system/common/iproute2.xml

    r5c8e74d r350ab24  
    3939
    4040    <para os="f1">Remove unused libnl headers:</para>
    41    
     41
    4242    <screen os="f2"><userinput>sed -i '/netlink\//d' ip/ipl2tp.c</userinput></screen>
    4343
     
    5555          that the IPRoute2 binaries will be installed into
    5656          <filename class="directory">/sbin</filename>. This is the correct
    57           location according to the FHS, because some of the IPRoute2 binaries
    58           are used by the CLFS-Bootscripts package.</para>
     57          location according to the FHS, as some of these programs may be
     58          needed before <filename class="directory">/usr</filename> is available.</para>
    5959        </listitem>
    6060      </varlistentry>
  • BOOK/final-system/common/kmod.xml

    r5c8e74d r350ab24  
    1919
    2020    <para>The Kmod package contains programs for loading, inserting
    21       and removing kernel modules for Linux. Kmod replaces the 
     21      and removing kernel modules for Linux. Kmod replaces the
    2222      Module-Init-tools package.</para>
    2323
     
    7373ln -sfv ../bin/kmod /sbin/${tool}
    7474done</userinput></screen>
    75  
     75
    7676  </sect2>
    7777
  • BOOK/final-system/common/man-pages.xml

    r5c8e74d r350ab24  
    5151        <listitem>
    5252          <para>This package contains man pages that describe the following:
    53           POSIX headers (section 0p), 
     53          POSIX headers (section 0p),
    5454          POSIX utilities (section 1p), POSIX functions (section 3p),
    55           user commands (section 1), system calls (section 2), 
    56           libc calls (section 3), device information (section 4), 
    57           file formats (section 5), games (section 6), 
     55          user commands (section 1), system calls (section 2),
     56          libc calls (section 3), device information (section 4),
     57          file formats (section 5), games (section 6),
    5858          conventions and macro packages (section 7),
    5959          system administration (section 8), and
  • BOOK/final-system/common/ncurses.xml

    r5c8e74d r350ab24  
    4343
    4444    <para os="e">This package has a test suite, and can be ran after the
    45     package is installed. The tests are in the 
    46     <filename class="directory">test/</filename> directory. See the 
     45    package is installed. The tests are in the
     46    <filename class="directory">test/</filename> directory. See the
    4747    <filename>README</filename> file in that directory for details.</para>
    4848
  • BOOK/final-system/common/procps-ng.xml

    r5c8e74d r350ab24  
    3333
    3434    <variablelist os="c">
    35       <title>The meaning of the configure options:</title>   
     35      <title>The meaning of the configure options:</title>
    3636      <varlistentry>
    3737        <term><parameter>--disable-kill</parameter></term>
  • BOOK/final-system/common/psmisc.xml

    r5c8e74d r350ab24  
    2828    <para os="a">Prepare Psmisc for compilation:</para>
    2929
    30 <screen os="b"><userinput>./configure --prefix=/usr --exec-prefix=""</userinput></screen>
     30<screen os="b"><userinput>./configure --prefix=/usr</userinput></screen>
    3131
    32     <variablelist os="c">
    33       <title>The meaning of the configure option:</title>
     32    <para os="c">Compile the package:</para>
    3433
    35       <varlistentry>
    36         <term><parameter>--exec-prefix=""</parameter></term>
    37         <listitem>
    38           <para>This ensures that the Psmisc binaries will install into
    39           <filename class="directory">/bin</filename> instead of
    40           <filename class="directory">/usr/bin</filename>. This is the
    41           correct location according to the FHS, because some of the Psmisc
    42           binaries are used by the CLFS-Bootscripts package.</para>
    43         </listitem>
    44       </varlistentry>
    45     </variablelist>
     34<screen os="d"><userinput>make</userinput></screen>
    4635
    47     <para os="d">Compile the package:</para>
     36    <para os="e">This package does not come with a test suite.</para>
    4837
    49 <screen os="e"><userinput>make</userinput></screen>
     38    <para os="f">Install the package:</para>
    5039
    51     <para os="f">This package does not come with a test suite.</para>
    52 
    53     <para os="g">Install the package:</para>
    54 
    55 <screen os="h"><userinput>make install</userinput></screen>
    56 
    57     <para os="i">There is no reason for the <command>pstree</command> and
    58     <command>pstree.x11</command> programs to reside in <filename
    59     class="directory">/bin</filename>. Therefore, move them to <filename
    60     class="directory">/usr/bin</filename>:</para>
    61 
    62 <screen os="j"><userinput>mv -v /bin/pstree* /usr/bin</userinput></screen>
     40<screen os="g"><userinput>make install</userinput></screen>
    6341
    6442  </sect2>
  • BOOK/final-system/common/readline.xml

    r5c8e74d r350ab24  
    3333    <para os="a">Prepare Readline for compilation:</para>
    3434
    35 <screen os="b"><userinput>./configure --prefix=/usr --libdir=/lib</userinput></screen>
     35<screen os="b"><userinput>./configure --prefix=/usr --libdir=/lib \
     36    --docdir=/usr/share/doc/readline-&readline-version;</userinput></screen>
    3637
    3738    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/shadow.xml

    r5c8e74d r350ab24  
    5656      <filename class="directory">/usr/etc</filename>.</para></listitem>
    5757    </varlistentry>
    58    
     58
    5959  </variablelist>
    6060
  • BOOK/final-system/common/systemd.xml

    r5c8e74d r350ab24  
    6464
    6565      <varlistentry>
    66         <term><parameter>--disable-gudev --without-python</parameter></term>
    67         <listitem>
    68           <para>These switches disable optional features because
    69           LFS does not provide their dependencies.</para>
     66        <term><parameter>--disable-gudev</parameter></term>
     67        <listitem>
     68          <para>This switch prevents Systemd from building
     69          <filename class="libraryfile">libgudev</filename> as it requires
     70          Glib, which is not installed in CLFS.</para>
    7071        </listitem>
    7172      </varlistentry>
  • BOOK/final-system/common/temp-perl.xml

    r5c8e74d r350ab24  
    6363<screen os="j"><userinput>make install</userinput></screen>
    6464
     65    <para os="k">Finally, create a necessary symlink:</para>
     66
     67<screen os="l"><userinput>ln -sfv /tools/bin/perl /usr/bin</userinput></screen>
     68
    6569  </sect2>
    6670
  • BOOK/final-system/multilib/acl-64bit.xml

    r5c8e74d r350ab24  
    4141  href="../common/acl.xml"
    4242  xpointer="xpointer(//*[@os='e'])"/>
    43  
     43
    4444<screen os="f"><userinput>CC="gcc ${BUILD64}" ./configure \
    4545    --prefix=/usr --libdir=/lib64 \
  • BOOK/final-system/multilib/acl-n32.xml

    r5c8e74d r350ab24  
    5454    href="../common/acl.xml"
    5555    xpointer="xpointer(//*[@os='h'])"/>
    56  
     56
    5757 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    5858    href="../common/acl.xml"
  • BOOK/final-system/multilib/coreutils.xml

    r5c8e74d r350ab24  
    3838    --enable-no-install-program=kill,uptime \
    3939    --enable-install-program=hostname</userinput></screen>
    40    
     40
    4141    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    4242    href="../common/coreutils.xml"
  • BOOK/final-system/multilib/findutils.xml

    r5c8e74d r350ab24  
    6666    href="../common/findutils.xml"
    6767    xpointer="xpointer(//*[@os='h'])"/>
    68 
    69     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    70     href="../common/findutils.xml"
    71     xpointer="xpointer(//*[@os='i'])"/>
    72 
    73     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    74     href="../common/findutils.xml"
    75     xpointer="xpointer(//*[@os='j'])"/>
    76 
    77     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    78     href="../common/findutils.xml"
    79     xpointer="xpointer(//*[@os='k'])"/>
    80 
    81     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    82     href="../common/findutils.xml"
    83     xpointer="xpointer(//*[@os='l'])"/>
    8468
    8569  </sect2>
  • BOOK/final-system/multilib/iproute2.xml

    r5c8e74d r350ab24  
    2929    href="../common/iproute2.xml"
    3030    xpointer="xpointer(//*[@os='s2'])"/>
    31    
     31
    3232    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    3333    href="../common/iproute2.xml"
    3434    xpointer="xpointer(//*[@os='f1'])"/>
    35    
     35
    3636    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    3737    href="../common/iproute2.xml"
  • BOOK/final-system/multilib/kmod-64bit.xml

    r5c8e74d r350ab24  
    5959    href="../common/kmod.xml"
    6060    xpointer="xpointer(//*[@os='h'])"/>
    61    
     61
    6262    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    6363    href="../common/kmod.xml"
    6464    xpointer="xpointer(//*[@os='i'])"/>
    65    
     65
    6666    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    6767    href="../common/kmod.xml"
  • BOOK/final-system/multilib/kmod-n32.xml

    r5c8e74d r350ab24  
    6060    href="../common/kmod.xml"
    6161    xpointer="xpointer(//*[@os='h'])"/>
    62    
     62
    6363  </sect2>
    6464
  • BOOK/final-system/multilib/kmod.xml

    r5c8e74d r350ab24  
    6262
    6363  </sect2>
    64  
     64
    6565  <sect2 role="content">
    6666    <title/>
  • BOOK/final-system/multilib/perl-64bit.xml

    r5c8e74d r350ab24  
    3131       cpan/Compress-Raw-Zlib/config.in</userinput></screen>
    3232
    33     <para os="mp1">Perl does not, by default, know about library directories with names other
    34     than lib, The following patch will allow it to install to other directories:</para>
     33    <para os="mp1">Perl does not, by default, know about library directories
     34    with names other than <filename class="directory">lib</filename>. The
     35    following patch will allow it to install to other directories:</para>
    3536
    3637<screen os="mp2"><userinput>patch -Np1 -i ../&perl-multilib-patch;</userinput></screen>
    3738
    38     <para os="s1">There is a further (possibly cosmetic) anomaly - if we install perl and
    39     then run <command>perl -V</command> it will claim that libc is in /lib.  The
    40     following sed fixes this, but only takes effect when <command>make install
    41     </command> is run:</para>
     39    <para os="s1">There is a further (possibly cosmetic) anomaly - if we
     40    install Perl and then run <command>perl -V</command> it will claim that
     41    libc is in <filename class="directory">/lib</filename>.  The
     42    following sed fixes this, but only takes effect when
     43    <command>make install</command> is run:</para>
    4244
    4345<screen os="s2"><userinput>sed -i "/libc/s@/lib@/lib64@" hints/linux.sh</userinput></screen>
    4446
    45     <para os="m2">We still need to tell perl to actually use lib64:</para>
     47    <para os="m2">We still need to tell Perl to actually use <filename class="directory">lib64</filename>:</para>
    4648
    4749<screen os="m3"><userinput>echo 'installstyle="lib64/perl5"' >>hints/linux.sh</userinput></screen>
  • BOOK/final-system/multilib/psmisc.xml

    r5c8e74d r350ab24  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr \
    29    --exec-prefix=""</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr</userinput></screen>
    3029
    3130    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     
    4948    xpointer="xpointer(//*[@os='g'])"/>
    5049
    51     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    52     href="../common/psmisc.xml"
    53     xpointer="xpointer(//*[@os='h'])"/>
    54 
    55     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    56     href="../common/psmisc.xml"
    57     xpointer="xpointer(//*[@os='i'])"/>
    58 
    59     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    60     href="../common/psmisc.xml"
    61     xpointer="xpointer(//*[@os='j'])"/>
    62 
    6350  </sect2>
    6451
  • BOOK/final-system/multilib/readline-64bit.xml

    r5c8e74d r350ab24  
    3535
    3636<screen os="b"><userinput>CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
    37    ./configure --prefix=/usr --libdir=/lib64</userinput></screen>
     37   ./configure --prefix=/usr --libdir=/lib64 \
     38    --docdir=/usr/share/doc/readline-&readline-version;</userinput></screen>
    3839
    3940    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/readline-n32.xml

    r5c8e74d r350ab24  
    3636
    3737<screen os="b"><userinput>CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
    38    ./configure --prefix=/usr --libdir=/lib32</userinput></screen>
     38   ./configure --prefix=/usr --libdir=/lib32 \
     39    --docdir=/usr/share/doc/readline-&readline-version;</userinput></screen>
    3940
    4041    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/readline.xml

    r5c8e74d r350ab24  
    3636
    3737<screen os="b"><userinput>CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
    38    ./configure --prefix=/usr --libdir=/lib</userinput></screen>
     38   ./configure --prefix=/usr --libdir=/lib \
     39    --docdir=/usr/share/doc/readline-&readline-version;</userinput></screen>
    3940
    4041    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/temp-perl.xml

    r5c8e74d r350ab24  
    6969    xpointer="xpointer(//*[@os='j'])"/>
    7070
     71    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     72    href="../common/temp-perl.xml"
     73    xpointer="xpointer(//*[@os='k'])"/>
     74
     75    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     76    href="../common/temp-perl.xml"
     77    xpointer="xpointer(//*[@os='l'])"/>
     78
    7179  </sect2>
    7280
  • BOOK/final-system/ppc64-64/yaboot.xml

    r5c8e74d r350ab24  
    2424    <para>Yaboot defaults to build as 32bit, so we need to pass appropriate
    2525    options to both the compiler and the linker.  To prevent the build from
    26     failing due to compiler warnings, the -Werror flag is removed.  The 
    27     Makefile already overrides any CC and ignores LDFLAGS in favour of 
    28     its own variables, so we need to use the following seds for a 
     26    failing due to compiler warnings, the -Werror flag is removed.  The
     27    Makefile already overrides any CC and ignores LDFLAGS in favour of
     28    its own variables, so we need to use the following seds for a
    2929    successful compile and install.</para>
    3030
  • BOOK/final-system/ppc64/yaboot.xml

    r5c8e74d r350ab24  
    2525    output.  Because our gcc defaults to 64-bit, we need to pass appropriate
    2626    options to both the compiler and the linker.  To prevent the build from
    27     failing due to compiler warnings, the -Werror flag is removed.  The 
    28     Makefile already overrides any CC and ignores LDFLAGS in favour of 
    29     its own variables, so we need to use the following seds for a 
     27    failing due to compiler warnings, the -Werror flag is removed.  The
     28    Makefile already overrides any CC and ignores LDFLAGS in favour of
     29    its own variables, so we need to use the following seds for a
    3030    successful compile and install.</para>
    3131
  • BOOK/final-system/x86/glibc.xml

    r5c8e74d r350ab24  
    6767
    6868<screen os="h"><userinput>
    69     CFLAGS="-march=$(cut -d- -f1 &lt;&lt;&lt; $MACHTYPE) -O2" \
    7069    ../glibc-&glibc-version;/configure --prefix=/usr \
    7170    --disable-profile --enable-kernel=2.6.32 --libexecdir=/usr/lib/glibc \
  • BOOK/final-system/x86/grub.xml

    r5c8e74d r350ab24  
    2727      <para>If you would like use a different bootloader than this
    2828      one you can go to the following link for alternative bootloaders
    29       and the instructions to use them. 
     29      and the instructions to use them.
    3030      <ulink url="http://trac.cross-lfs.org/wiki/bootloaders"/></para>
    3131    </note>
  • BOOK/final-system/x86_64-64/glibc.xml

    r5c8e74d r350ab24  
    7171    xpointer="xpointer(//*[@os='g'])"/>
    7272
    73 <screen os="h"><userinput>CFLAGS="-O2" \
    74     ../glibc-&glibc-version;/configure --prefix=/usr \
     73<screen os="h"><userinput>../glibc-&glibc-version;/configure --prefix=/usr \
    7574    --disable-profile --enable-kernel=2.6.32 \
    7675    --libexecdir=/usr/lib/glibc --libdir=/usr/lib \
  • BOOK/final-system/x86_64/glibc-64bit.xml

    r5c8e74d r350ab24  
    7171
    7272<screen os="h"><userinput>CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
    73     CFLAGS="-O2" \
    7473    ../glibc-&glibc-version;/configure --prefix=/usr \
    7574    --disable-profile --enable-kernel=2.6.32 \
  • BOOK/final-system/x86_64/glibc.xml

    r5c8e74d r350ab24  
    6868
    6969<screen os="h"><userinput>CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
    70     CFLAGS="-march=$(cut -d- -f1 &lt;&lt;&lt; ${CLFS_TARGET32}) -O2" \
    7170    ../glibc-&glibc-version;/configure --prefix=/usr \
    7271    --disable-profile --enable-kernel=2.6.32 \
  • BOOK/general.ent

    r5c8e74d r350ab24  
    33<!ENTITY month "04"> <!-- Use two digits -->
    44<!ENTITY month_name "April">
    5 <!ENTITY day "20"> <!-- Use two digits -->
     5<!ENTITY day "28"> <!-- Use two digits -->
    66<!ENTITY year "2014"> <!-- Use four digits -->
    77
    88<!ENTITY releasedate "&month_name; &day;, &year;">
    99
    10 <!ENTITY major-version "2">
    11 <!ENTITY minor-version "2">
     10<!ENTITY major-version "3">
     11<!ENTITY minor-version "0">
    1212<!ENTITY extra-version "0">
    13 <!ENTITY generic-version "git"> <!-- Use "git", "testing", or "x.y.z[-pre{x}]" -->
     13<!ENTITY generic-version "systemd"> <!-- Use "git", "testing", or "x.y.z[-pre{x}]" -->
    1414
    1515<!ENTITY versionid "&year;&month;&day;"> <!-- /etc/os-release from systemd -->
  • BOOK/introduction/common/acknowledgements.xml

    r5c8e74d r350ab24  
    1717  <itemizedlist>
    1818    <listitem>
    19       <para>Ryan Oliver - Build Process Developer.</para>
     19      <para>William Harrington - Lead Developer.</para>
    2020    </listitem>
    2121    <listitem>
    22       <para>Jim Gifford - Lead Developer.</para>
     22      <para>Jonathan Norman - x86, x86_64, PowerPC &amp; UltraSPARC builds,
     23      Release Manager 2.x Series</para>
    2324    </listitem>
    2425    <listitem>
    25       <para>Joe Ciccone - Lead Developer.</para>
    26     </listitem>
    27     <listitem>
    28       <para>Jeremy Utley - Release Manager 1.x Series.</para>
     26      <para>Chris Staub - x86 and x86_64 builds. Leader of Quality Control.</para>
    2927    </listitem>
    3028  </itemizedlist>
     
    3432  <itemizedlist>
    3533    <listitem>
    36       <para>Nathan Coulson - Bootscripts.</para>
    37     </listitem>
    38     <listitem>
    3934      <para>Matt Darcy - x86, X86_64, and Sparc builds.</para>
    4035    </listitem>
     
    4338    </listitem>
    4439    <listitem>
    45       <para>Karen McGuiness - Proofreader.</para>
    46     </listitem>
    47     <listitem>
    48       <para>Jonathan Norman - x86, x86_64, PowerPC &amp; UltraSPARC.</para>
    49     </listitem>
    50     <listitem>
    51       <para>Jeremy Huntwork - PowerPC, x86, Sparc builds.</para>
    52     </listitem>
    53     <listitem>
    5440      <para>Justin Knierim - Website Architect.</para>
    5541    </listitem>
    5642    <listitem>
    5743      <para>Ken Moffat - PowerPC and X86_64 builds. Developer of Pure 64 Hint.</para>
    58     </listitem>
    59     <listitem>
    60       <para>Alexander E. Patrakov - Udev/Hotplug Integration</para>
    61     </listitem>
    62     <listitem>
    63       <para>Chris Staub - x86 builds. Leader of Quality Control.</para>
    64     </listitem>
    65     <listitem>
    66       <para>Zack Winkles - Unstable book work.</para>
    67     </listitem>
    68     <listitem>
    69       <para>William Harrington - x86, x86_64, PowerPC, Sparc, Mips builds.</para>
    7044    </listitem>
    7145  </itemizedlist>
     
    10377    </listitem>
    10478    <listitem>
     79      <para>Theo Schneider - Testing of the Linux Headers Package</para>
     80    </listitem>
     81    <listitem>
     82      <para>Martin Ward - Recommendations for Systemd and the Boot method,
     83      among other contributions</para>
     84    </listitem>
     85    <listitem>
    10586      <para>William Zhou - Text updates and Typos</para>
    10687    </listitem>
     88  </itemizedlist>
     89
     90  <para>Former Team Members</para>
     91  <itemizedlist>
    10792    <listitem>
    108       <para>Theo Schneider - Testing of the Linux Headers Package</para>
     93      <para>Joe Ciccone - Lead Developer.</para>
     94    </listitem>
     95    <listitem>
     96      <para>Nathan Coulson - Bootscripts.</para>
     97    </listitem>
     98    <listitem>
     99      <para>Jim Gifford - Lead Developer.</para>
     100    </listitem>
     101    <listitem>
     102      <para>Jeremy Huntwork - PowerPC, x86, Sparc builds.</para>
     103    </listitem>
     104    <listitem>
     105      <para>Karen McGuiness - Proofreader.</para>
     106    </listitem>
     107    <listitem>
     108      <para>Ryan Oliver - Build Process Developer.</para>
     109    </listitem>
     110    <listitem>
     111      <para>Alexander E. Patrakov - Udev/Hotplug Integration</para>
     112    </listitem>
     113    <listitem>
     114      <para>Jeremy Utley - Release Manager 1.x Series.</para>
     115    </listitem>
     116    <listitem>
     117      <para>Zack Winkles - Unstable book work.</para>
    109118    </listitem>
    110119  </itemizedlist>
  • BOOK/introduction/common/changelog.xml

    r5c8e74d r350ab24  
    3838
    3939    <listitem>
     40      <para>27 April 2014</para>
     41      <itemizedlist>
     42        <listitem>
     43          <para>[William Harrington] - Update IPRoute2 to 3.14.0.</para>
     44        </listitem>
     45      </itemizedlist>
     46    </listitem>
     47
     48    <listitem>
     49      <para>27 April 2014</para>
     50      <itemizedlist>
     51        <listitem>
     52          <para>[Chris] - Updated Acknowledgements page.</para>
     53        </listitem>
     54        <listitem>
     55          <para>[William Harrington] - Update Linux to 3.14.2.</para>
     56        </listitem>
     57      </itemizedlist>
     58    </listitem>
     59
     60    <listitem>
     61      <para>26 April 2014</para>
     62      <itemizedlist>
     63        <listitem>
     64          <para>[Chris] - Renamed bootscripts package to boot-scripts
     65          (thanks to William Harrington for the suggestion) and removed the
     66          patch as it is not needed for the new package.</para>
     67        </listitem>
     68        <listitem>
     69          <para>[Chris] - Renamed bootscripts chapter to "System Configuration".</para>
     70        </listitem>
     71        <listitem>
     72          <para>[William Harrington] - Update Util-linux to 2.24.2.</para>
     73        </listitem>
     74        <listitem>
     75          <para>[Chris] - Added new page about how to view the book from
     76          inside the temporary boot environment.</para>
     77        </listitem>
     78        <listitem>
     79          <para>[Chris] - Don't move binaries from Findutils or Psmisc to /bin,
     80          as they're no longer needed there.</para>
     81        </listitem>
     82        <listitem>
     83          <para>[William Harrington] - Update Vim 7.4 branch update patch to
     84          level 265.</para>
     85        </listitem>
     86      </itemizedlist>
     87    </listitem>
     88
     89    <listitem>
     90      <para>24 April 2014</para>
     91      <itemizedlist>
     92        <listitem>
     93          <para>[William Harrington] - Update Eudev to 1.6.</para>
     94        </listitem>
     95        <listitem>
     96          <para>[William Harrington] - Update Man-pages to 3.65.</para>
     97        </listitem>
     98        <listitem>
     99          <para>[William Harrington] - Update Bash branch update patch to level           11.</para>
     100        </listitem>
     101        <listitem>
     102          <para>[William Harrington] - Update Readline branch update patch to
     103          level 5.</para>
     104        </listitem>
     105      </itemizedlist>
     106    </listitem>
     107
     108    <listitem>
     109      <para>22 April 2014</para>
     110      <itemizedlist>
     111        <listitem>
     112          <para>[Chris] - Removed several virtual filesystems from ${CLFS}/fstab
     113          for the boot method, as they're already mounted by the bootscript.</para>
     114        </listitem>
     115        <listitem>
     116          <para>[Chris] - Removed creation of gtbl and geqn symlinks, as they
     117          are no longer needed.</para>
     118        </listitem>
     119      </itemizedlist>
     120    </listitem>
     121
     122    <listitem>
     123      <para>21 April 2014</para>
     124      <itemizedlist>
     125        <listitem>
     126          <para>[Chris] - Re-added manual creation of /usr/bin/perl symlink,
     127          as it is not created automatically under some circumstances.</para>
     128        </listitem>
     129      </itemizedlist>
     130    </listitem>
     131
     132    <listitem>
    40133      <para>20 April 2014</para>
    41134      <itemizedlist>
  • BOOK/introduction/common/how.xml

    r5c8e74d r350ab24  
    1212
    1313  <para>The CLFS system will be built by using a previously installed
    14   Unix system or Linux distribution (such as Debian, Fedora, Mandriva, SUSE,
     14  Unix system or Linux distribution (such as Debian, Fedora, openSUSE,
    1515  or Ubuntu). This existing system (the host) will be used as a starting
    1616  point to provide necessary programs, including a compiler, linker, and shell,
     
    4848
    4949  <para>The process of building cross-compile tools first involves building and
    50   installing all the necessary tools to create a build system for the target 
     50  installing all the necessary tools to create a build system for the target
    5151  machine. With these cross-compiled tools, we eliminate any
    5252  dependencies on the toolchain from our host distro.</para>
    5353
    5454  <para>After we build our <quote>Cross-Tools</quote>, we start building
    55   a very minimal working system in /tools. This minimal system will be built
    56   using the cross-toolchain in /cross-tools.</para>
     55  a very minimal working system in
     56  <filename class="directory">/tools</filename>. This minimal system will be
     57  built using the cross-toolchain in
     58  <filename class="directory">/cross-tools</filename>.</para>
    5759
    5860  <para>In <xref linkend="chapter-building-system"/>, the full CLFS system is
     
    7476  support the target machine. Booting involves installing a few
    7577  additional packages that are needed for bootup, installing
    76   bootscripts, and building a miminal kernel. We also describe some
    77   alternative booting methods in <xref linkend="ch-boot-whatnext"/></para>
     78  boot-scripts, and building a miminal kernel.<!-- We also describe some
     79  alternative booting methods in <xref linkend="ch-boot-whatnext"/> --></para>
    7880
    7981  <para>To finish the installation, several configuration files are created in
    80   <xref linkend="chapter-bootscripts"/>, and the kernel and boot loader are set
     82  <xref linkend="chapter-system-config"/>, and the kernel and boot loader are set
    8183  up in <xref linkend="chapter-bootable"/>. <xref linkend="chapter-finalizing"/>
    8284  contains information on furthering the CLFS experience beyond this book.
  • BOOK/introduction/common/resources.xml

    r5c8e74d r350ab24  
    3232
    3333    <para><ulink url="http://www.mail-archive.com/index.php?hunt=clfs"/></para>
    34    
     34
    3535    <para>For information on the different lists, how to subscribe, archive
    3636    locations, and additional information, visit <ulink url="&clfs-wiki;wiki/lists"/>.</para>
  • BOOK/introduction/x86/changelog.xml

    r5c8e74d r350ab24  
    3333-->
    3434    <listitem>
     35      <para>27 April 2014</para>
     36      <itemizedlist>
     37        <listitem>
     38          <para>[Chris] - Removed obsolete CFLAGS from x86 Glibc configure
     39          commands.</para>
     40        </listitem>
     41      </itemizedlist>
     42    </listitem>
     43
     44    <listitem>
    3545      <para>11 April 2014</para>
    3646      <itemizedlist>
  • BOOK/introduction/x86_64-64/changelog.xml

    r5c8e74d r350ab24  
    3434-->
    3535    <listitem>
     36      <para>27 April 2014</para>
     37      <itemizedlist>
     38        <listitem>
     39          <para>[Chris] - Removed obsolete CFLAGS from x86 Glibc configure
     40          commands.</para>
     41        </listitem>
     42      </itemizedlist>
     43    </listitem>
     44
     45    <listitem>
    3646      <para>24 October 2013</para>
    3747      <itemizedlist>
  • BOOK/introduction/x86_64/changelog.xml

    r5c8e74d r350ab24  
    3434-->
    3535    <listitem>
     36      <para>27 April 2014</para>
     37      <itemizedlist>
     38        <listitem>
     39          <para>[Chris] - Removed obsolete CFLAGS from x86 Glibc configure
     40          commands.</para>
     41        </listitem>
     42      </itemizedlist>
     43    </listitem>
     44
     45    <listitem>
    3646      <para>08 November 2013</para>
    3747      <itemizedlist>
  • BOOK/materials/common/introduction.xml

    r5c8e74d r350ab24  
    4747
    4848  <para>You can download all needed packages and patches into this directory
    49 either by using the links on the following pages in this section, or by passing 
     49either by using the links on the following pages in this section, or by passing
    5050the <ulink url="../dl.list">download list</ulink> to <command>wget</command>:</para>
    5151
     
    6464
    6565<screen><userinput>pushd ${CLFS}/sources
    66 sha1sum -c SHA1SUMS 
     66sha1sum -c SHA1SUMS
    6767popd</userinput></screen>
    6868
  • BOOK/materials/common/packages.xml

    r5c8e74d r350ab24  
    8888
    8989    <varlistentry>
    90       <term>Bootscripts for CLFS (&bootscripts-clfs-version;) - <token>&bootscripts-clfs-size;</token>:</term>
    91       <listitem>
    92         <para>Home page: <ulink url="&bootscripts-clfs-home;"/></para>
    93         <para>Download: <ulink url="&bootscripts-clfs-url;"/></para>
    94         <para>MD5 sum: <literal>&bootscripts-clfs-md5;</literal></para>
     90      <term>Boot-scripts for CLFS (&boot-scripts-clfs-version;) - <token>&boot-scripts-clfs-size;</token>:</term>
     91      <listitem>
     92        <para>Home page: <ulink url="&boot-scripts-clfs-home;"/></para>
     93        <para>Download: <ulink url="&boot-scripts-clfs-url;"/></para>
     94        <para>MD5 sum: <literal>&boot-scripts-clfs-md5;</literal></para>
    9595      </listitem>
    9696    </varlistentry>
     
    608608    </varlistentry>
    609609
    610     <varlistentry> 
    611       <term>Time Zone Data (&tzdata-version;) - <token>&tzdata-size;</token>:</term> 
    612       <listitem> 
    613         <para>Home page: <ulink url="&tzdata-home;"/></para> 
    614         <para>Download: <ulink url="&tzdata-url;"/></para> 
    615         <para>MD5 sum: <literal>&tzdata-md5;</literal></para> 
    616       </listitem> 
     610    <varlistentry>
     611      <term>Time Zone Data (&tzdata-version;) - <token>&tzdata-size;</token>:</term>
     612      <listitem>
     613        <para>Home page: <ulink url="&tzdata-home;"/></para>
     614        <para>Download: <ulink url="&tzdata-url;"/></para>
     615        <para>MD5 sum: <literal>&tzdata-md5;</literal></para>
     616      </listitem>
    617617    </varlistentry>
    618618
     
    620620      <term>Util-linux (&util-linux-version;) - <token>&util-linux-size;</token>:</term>
    621621      <listitem>
    622         <para>Home page: <ulink url="&util-linux-home;"/></para>
    623622        <para>Download: <ulink url="&util-linux-url;"/></para>
    624623        <para>MD5 sum: <literal>&util-linux-md5;</literal></para>
  • BOOK/materials/common/patches.xml

    r5c8e74d r350ab24  
    2525        url="&patches-root;&bash-branch_update-patch;"/></para>
    2626        <para>MD5 sum: <literal>&bash-branch_update-patch-md5;</literal></para>
    27       </listitem>
    28     </varlistentry>
    29 
    30     <varlistentry>
    31       <term>Bootscripts Updates Patch - <token>&bootscripts-clfs-updates-patch-size;</token>:</term>
    32       <listitem>
    33         <para>Download: <ulink
    34         url="&patches-root;&bootscripts-clfs-updates-patch;"/></para>
    35         <para>MD5 sum: <literal>&bootscripts-clfs-updates-patch-md5;</literal></para>
    3627      </listitem>
    3728    </varlistentry>
  • BOOK/mips-index.xml

    r5c8e74d r350ab24  
    5959    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="testsuite-tools/mips-chapter.xml"/>
    6060    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="final-system/mips-chapter.xml"/>
    61     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootscripts/mips-chapter.xml"/>
     61    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="system-config/mips-chapter.xml"/>
    6262    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="network/mips-chapter.xml"/>
    6363    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootable/mips-chapter.xml"/>
  • BOOK/mips64-64-index.xml

    r5c8e74d r350ab24  
    5959    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="testsuite-tools/mips64-64-chapter.xml"/>
    6060    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="final-system/mips64-64-chapter.xml"/>
    61     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootscripts/mips64-64-chapter.xml"/>
     61    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="system-config/mips64-64-chapter.xml"/>
    6262    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="network/mips64-64-chapter.xml"/>
    6363    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootable/mips64-64-chapter.xml"/>
  • BOOK/mips64-index.xml

    r5c8e74d r350ab24  
    5959    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="testsuite-tools/mips64-chapter.xml"/>
    6060    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="final-system/mips64-chapter.xml"/>
    61     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootscripts/mips64-chapter.xml"/>
     61    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="system-config/mips64-chapter.xml"/>
    6262    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="network/mips64-chapter.xml"/>
    6363    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootable/mips64-chapter.xml"/>
  • BOOK/packages.ent

    r5c8e74d r350ab24  
    6868<!ENTITY bison-home "&gnu-software;bison">
    6969
    70 <!ENTITY bootscripts-clfs-version "2.1-pre1">
    71 <!ENTITY bootscripts-clfs-size "41 KB">
    72 <!-- <!ENTITY bootscripts-clfs-url "&packages-root;bootscripts-cross-lfs-&bootscripts-clfs-version;.tar.xz"> -->
    73 <!ENTITY bootscripts-clfs-url "http://cross-lfs.org/files/bootscripts-cross-lfs-&bootscripts-clfs-version;.tar.xz">
    74 <!ENTITY bootscripts-clfs-md5 "f474bf2efff744548a69d9049bad973f">
    75 <!ENTITY bootscripts-clfs-home " ">
     70<!ENTITY boot-scripts-clfs-version "3.0-pre1">
     71<!ENTITY boot-scripts-clfs-size "24 KB">
     72<!ENTITY boot-scripts-clfs-url "&packages-root;boot-scripts-cross-lfs-&boot-scripts-clfs-version;.tar.bz2">
     73<!ENTITY boot-scripts-clfs-md5 "a1e4752a9c9bb92cd14249e0bee97cb4">
     74<!ENTITY boot-scripts-clfs-home " ">
    7675
    7776<!ENTITY bzip2-version "1.0.6">
     
    244243<!ENTITY gzip-url "&gnu;gzip/gzip-&gzip-version;.tar.xz">
    245244<!ENTITY gzip-md5 "da981f86677d58a106496e68de6f8995">
    246 <!ENTITY gzip-home "http://www.gzip.org">
     245<!ENTITY gzip-home "http://www.gnu.org/software/gzip/gzip.html">
    247246
    248247<!ENTITY hfsutils-version "3.2.6">
     
    266265<!ENTITY intltool-home "http://freedesktop.org/wiki/Software/intltool">
    267266
    268 <!ENTITY iproute2-version "3.12.0">
    269 <!ENTITY iproute2-size "425 KB">
     267<!ENTITY iproute2-version "3.14.0">
     268<!ENTITY iproute2-size "436 KB">
    270269<!ENTITY iproute2-url "&kernel;linux/utils/net/iproute2/iproute2-&iproute2-version;.tar.xz">
    271 <!ENTITY iproute2-md5 "f87386aaaecafab95607fd10e8152c68">
     270<!ENTITY iproute2-md5 "bd9d7567bbb987c88120669f5e1a1092">
    272271<!ENTITY iproute2-home "http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2">
    273272
     
    316315<!ENTITY linux-dl-version "3.0">
    317316
    318 <!ENTITY linux-version "3.12.15">
    319 <!ENTITY linux-size "76,414 KB">
     317<!ENTITY linux-version "3.14.2">
     318<!ENTITY linux-size "78,400 KB">
    320319<!ENTITY linux-url "&kernel;linux/kernel/v&linux-dl-version;/linux-&linux-version;.tar.xz">
    321 <!ENTITY linux-md5 "4eb2b7f62fd504d07b77f54bcd3cb758">
     320<!ENTITY linux-md5 "28b68cde77997ddafab3c4e16cefae7d">
    322321<!ENTITY linux-home "http://www.kernel.org">
    323322
     
    339338<!ENTITY man-md5 "ba154d5796928b841c9c69f0ae376660">
    340339
    341 <!ENTITY man-pages-version "3.64">
    342 <!ENTITY man-pages-size "1,222 KB">
     340<!ENTITY man-pages-version "3.65">
     341<!ENTITY man-pages-size "1,228 KB">
    343342<!ENTITY man-pages-url "&kernel;linux/docs/man-pages/man-pages-&man-pages-version;.tar.xz">
    344 <!ENTITY man-pages-md5 "e39da1ac5a5effd4514809301bad47a8">
     343<!ENTITY man-pages-md5 "0f165e0ab25ff5687d2d0b237af77b74">
    345344<!ENTITY man-pages-home "http://www.win.tue.nl/~aeb/linux/man">
    346345
     
    466465<!ENTITY texinfo-home "&gnu-software;texinfo">
    467466
    468 <!ENTITY eudev-version "1.5.3">
    469 <!ENTITY eudev-size "1,724 KB">
     467<!ENTITY eudev-version "1.6">
     468<!ENTITY eudev-size "1,729 KB">
    470469<!ENTITY eudev-url "ftp://mirror.ovh.net/gentoo-distfiles/distfiles/eudev-&eudev-version;.tar.gz">
    471 <!ENTITY eudev-md5 "51380938b489385cc394f4ebabc048f0">
     470<!ENTITY eudev-md5 "">
    472471<!ENTITY eudev-home "http://www.gentoo.org/proj/en/eudev/">
    473472
     
    479478
    480479<!ENTITY util-linux-major-version "2.24">
    481 <!ENTITY util-linux-version "&util-linux-major-version;.1">
    482 <!ENTITY util-linux-size "3,544 KB">
     480<!ENTITY util-linux-version "&util-linux-major-version;.2">
     481<!ENTITY util-linux-size "3,587 KB">
    483482<!ENTITY util-linux-url "&kernel;linux/utils/util-linux/v&util-linux-major-version;/util-linux-&util-linux-version;.tar.xz">
    484 <!ENTITY util-linux-md5 "88d46ae23ca599ac5af9cf96b531590f">
     483<!ENTITY util-linux-md5 "3f191727a0d28f7204b755cf1b6ea0aa">
    485484<!ENTITY util-linux-blkid-id "1.1.0">
    486485<!ENTITY util-linux-uuid-id "1.3.0">
    487 <!ENTITY util-linux-home "http://userweb.kernel.org/~kzak/util-linux/">
    488486
    489487<!ENTITY vim-version "7.4">
  • BOOK/partitioning/alpha/creatingpartition.xml

    r5c8e74d r350ab24  
    3535
    3636<screen><userinput>fdisk /dev/[yyy]</userinput></screen>
    37  
     37
    3838 <para>Then use option b to create the bsd disklabel. Before you exit use
    3939 the w option to write the partition table.</para>
    40  
     40
    4141
    4242</sect1>
  • BOOK/patches.ent

    r5c8e74d r350ab24  
    55<!-- Start of Common Patches -->
    66
    7 <!ENTITY bash-branch_update-patch "bash-&bash-version;-branch_update-1.patch">
    8 <!ENTITY bash-branch_update-patch-md5 "a0ae18e2dc5c9c5e125e0ea3fa6febbe">
    9 <!ENTITY bash-branch_update-patch-size "9.002 KB">
    10 
    11 <!ENTITY bootscripts-clfs-updates-patch "bootscripts-cross-lfs-&bootscripts-clfs-version;-updates-1.patch">
    12 <!ENTITY bootscripts-clfs-updates-patch-md5 "b584450a0baf3b0d71f319071feba111">
    13 <!ENTITY bootscripts-clfs-updates-patch-size "17.030 KB">
     7<!ENTITY bash-branch_update-patch "bash-&bash-version;-branch_update-2.patch">
     8<!ENTITY bash-branch_update-patch-md5 "64c6b5961f538a6b3d4c92f5c65ce51a">
     9<!ENTITY bash-branch_update-patch-size "14.075 KB">
    1410
    1511<!-- Binutils branch update area
     
    6561<!ENTITY perl-libc-patch-size "1.657 KB">
    6662
    67 <!ENTITY readline-branch_update-patch "readline-&readline-version;-branch_update-1.patch">
    68 <!ENTITY readline-branch_update-patch-md5 "dbb0a021abfd0a0012b62c66e6943802">
    69 <!ENTITY readline-branch_update-patch-size "1.920 KB">
     63<!ENTITY readline-branch_update-patch "readline-&readline-version;-branch_update-2.patch">
     64<!ENTITY readline-branch_update-patch-md5 "72a60fac6699ee42f99ec78a5d74e4e1">
     65<!ENTITY readline-branch_update-patch-size "3.015 KB">
    7066
    7167<!ENTITY systemd-compat-patch "systemd-&systemd-version;-compat-1.patch">
     
    8379<!-- Vim branch update patch area -->
    8480
    85 <!ENTITY vim-branch_update-patch "vim-&vim-version;-branch_update-2.patch">
    86 <!ENTITY vim-branch_update-patch-md5 "aa2e7384582ddd94ce7e5d91bebce78f">
    87 <!ENTITY vim-branch_update-patch-size "2,740 KB">
     81<!ENTITY vim-branch_update-patch "vim-&vim-version;-branch_update-3.patch">
     82<!ENTITY vim-branch_update-patch-md5 "e7d43252db0a9c00faf2785f9a167516">
     83<!ENTITY vim-branch_update-patch-size "2,858 KB">
    8884
    8985<!-- Start of multilib patches -->
    9086
    9187<!ENTITY iproute2-libdir-patch "iproute2-&iproute2-version;-libdir-1.patch">
    92 <!ENTITY iproute2-libdir-patch-md5 "921ec1aea89499b109428618efa99c84">
    93 <!ENTITY iproute2-libdir-patch-size "1.9 KB">
     88<!ENTITY iproute2-libdir-patch-md5 "6b965a6f1017c47ab3111e9ae8fcdd3f">
     89<!ENTITY iproute2-libdir-patch-size "1.990 KB">
    9490
    9591<!ENTITY perl-multilib-patch "perl-&perl-version;-Configure_multilib-1.patch">
  • BOOK/ppc-index.xml

    r5c8e74d r350ab24  
    6161    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="testsuite-tools/ppc-chapter.xml"/>
    6262    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="final-system/ppc-chapter.xml"/>
    63     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootscripts/ppc-chapter.xml"/>
     63    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="system-config/ppc-chapter.xml"/>
    6464    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="network/ppc-chapter.xml"/>
    6565    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootable/ppc-chapter.xml"/>
  • BOOK/ppc64-64-index.xml

    r5c8e74d r350ab24  
    6161    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="testsuite-tools/ppc64-64-chapter.xml"/>
    6262    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="final-system/ppc64-64-chapter.xml"/>
    63     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootscripts/ppc64-64-chapter.xml"/>
     63    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="system-config/ppc64-64-chapter.xml"/>
    6464    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="network/ppc64-64-chapter.xml"/>
    6565    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootable/ppc64-64-chapter.xml"/>
  • BOOK/ppc64-index.xml

    r5c8e74d r350ab24  
    6161    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="testsuite-tools/ppc64-chapter.xml"/>
    6262    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="final-system/ppc64-chapter.xml"/>
    63     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootscripts/ppc64-chapter.xml"/>
     63    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="system-config/ppc64-chapter.xml"/>
    6464    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="network/ppc64-chapter.xml"/>
    6565    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootable/ppc64-chapter.xml"/>
  • BOOK/sparc-index.xml

    r5c8e74d r350ab24  
    6161    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="testsuite-tools/sparc-chapter.xml"/>
    6262    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="final-system/sparc-chapter.xml"/>
    63     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootscripts/sparc-chapter.xml"/>
     63    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="system-config/sparc-chapter.xml"/>
    6464    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="network/sparc-chapter.xml"/>
    6565    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootable/sparc-chapter.xml"/>
  • BOOK/sparc64-64-index.xml

    r5c8e74d r350ab24  
    6161    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="testsuite-tools/sparc64-64-chapter.xml"/>
    6262    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="final-system/sparc64-64-chapter.xml"/>
    63     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootscripts/sparc64-64-chapter.xml"/>
     63    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="system-config/sparc64-64-chapter.xml"/>
    6464    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="network/sparc64-64-chapter.xml"/>
    6565    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootable/sparc64-64-chapter.xml"/>
  • BOOK/sparc64-index.xml

    r5c8e74d r350ab24  
    6161    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="testsuite-tools/sparc64-chapter.xml"/>
    6262    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="final-system/sparc64-chapter.xml"/>
    63     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootscripts/sparc64-chapter.xml"/>
     63    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="system-config/sparc64-chapter.xml"/>
    6464    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="network/sparc64-chapter.xml"/>
    6565    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootable/sparc64-chapter.xml"/>
  • BOOK/temp-system/64/cloog.xml

    r5c8e74d r350ab24  
    1212
    1313  <indexterm zone="ch-temp-system-cloog">
    14     <primary sortas="a-MPFR">CLooG</primary>
     14    <primary sortas="a-CLooG">CLooG</primary>
    1515    <secondary>temporary system</secondary>
    1616  </indexterm>
     
    4646    href="../common/cloog.xml"
    4747    xpointer="xpointer(//*[@os='d'])"/>
    48        
     48
    4949    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    5050    href="../common/cloog.xml"
  • BOOK/temp-system/64/file.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-temp-system-file">
    1414    <primary sortas="a-File">File</primary>
     15    <secondary>temporary system</secondary>
    1516  </indexterm>
    1617
  • BOOK/temp-system/64/gmp.xml

    r5c8e74d r350ab24  
    5353    href="../common/gmp.xml"
    5454    xpointer="xpointer(//*[@os='d'])"/>
    55        
     55
    5656    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    5757    href="../common/gmp.xml"
  • BOOK/temp-system/64/isl.xml

    r5c8e74d r350ab24  
    3939    href="../common/isl.xml"
    4040    xpointer="xpointer(//*[@os='d'])"/>
    41        
     41
    4242    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    4343    href="../common/isl.xml"
  • BOOK/temp-system/64/mpc.xml

    r5c8e74d r350ab24  
    3838    href="../common/mpc.xml"
    3939    xpointer="xpointer(//*[@os='d'])"/>
    40        
     40
    4141    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    4242    href="../common/mpc.xml"
  • BOOK/temp-system/64/mpfr.xml

    r5c8e74d r350ab24  
    4646    href="../common/mpfr.xml"
    4747    xpointer="xpointer(//*[@os='d'])"/>
    48        
     48
    4949    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    5050    href="../common/mpfr.xml"
  • BOOK/temp-system/64/util-linux.xml

    r5c8e74d r350ab24  
    2222  <sect2 role="installation">
    2323    <title>Installation of Util-linux</title>
    24    
     24
    2525    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    2626    href="../common/util-linux.xml"
  • BOOK/temp-system/64/zlib.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-temp-system-zlib">
    1414    <primary sortas="a-Zlib">Zlib</primary>
    15     <secondary>boot</secondary>
     15    <secondary>temporary system</secondary>
    1616  </indexterm>
    1717
  • BOOK/temp-system/common/check.xml

    r5c8e74d r350ab24  
    8989          program</para>
    9090          <indexterm zone="ch-temp-system-check libcheck">
    91             <primary sortas="c-libcheck">libcheck.{a,so};</primary>
     91            <primary sortas="c-libcheck">libcheck.{a,so}</primary>
    9292          </indexterm>
    9393        </listitem>
  • BOOK/temp-system/common/texinfo.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-temp-system-texinfo">
    1414    <primary sortas="a-Texinfo">Texinfo</primary>
    15     <secondary>temporary tools</secondary>
     15    <secondary>temporary system</secondary>
    1616  </indexterm>
    1717
  • BOOK/temp-system/common/zlib.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-temp-system-zlib">
    1414    <primary sortas="a-Zlib">Zlib</primary>
    15     <secondary>boot</secondary>
     15    <secondary>temporary system</secondary>
    1616  </indexterm>
    1717
  • BOOK/temp-system/multilib/cloog.xml

    r5c8e74d r350ab24  
    4646    href="../common/cloog.xml"
    4747    xpointer="xpointer(//*[@os='d'])"/>
    48        
     48
    4949    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    5050    href="../common/cloog.xml"
  • BOOK/temp-system/multilib/gmp.xml

    r5c8e74d r350ab24  
    6161    href="../common/gmp.xml"
    6262    xpointer="xpointer(//*[@os='d'])"/>
    63        
     63
    6464    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    6565    href="../common/gmp.xml"
  • BOOK/temp-system/multilib/isl.xml

    r5c8e74d r350ab24  
    3939    href="../common/isl.xml"
    4040    xpointer="xpointer(//*[@os='d'])"/>
    41        
     41
    4242    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    4343    href="../common/isl.xml"
  • BOOK/temp-system/multilib/mpc.xml

    r5c8e74d r350ab24  
    3939    href="../common/mpc.xml"
    4040    xpointer="xpointer(//*[@os='d'])"/>
    41        
     41
    4242    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    4343    href="../common/mpc.xml"
  • BOOK/temp-system/multilib/mpfr.xml

    r5c8e74d r350ab24  
    4646    href="../common/mpfr.xml"
    4747    xpointer="xpointer(//*[@os='d'])"/>
    48        
     48
    4949    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    5050    href="../common/mpfr.xml"
  • BOOK/temp-system/multilib/sed.xml

    r5c8e74d r350ab24  
    3737    href="../common/sed.xml"
    3838    xpointer="xpointer(//*[@os='d'])"/>
    39        
     39
    4040    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    4141    href="../common/sed.xml"
  • BOOK/temp-system/multilib/util-linux.xml

    r5c8e74d r350ab24  
    2222  <sect2 role="installation">
    2323    <title>Installation of Util-linux</title>
    24    
     24
    2525    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    2626    href="../common/util-linux.xml"
  • BOOK/temp-system/multilib/zlib.xml

    r5c8e74d r350ab24  
    1313  <indexterm zone="ch-temp-system-zlib">
    1414    <primary sortas="a-Zlib">Zlib</primary>
    15     <secondary>boot</secondary>
     15    <secondary>temporary system</secondary>
    1616  </indexterm>
    1717
  • BOOK/testsuite-tools/common/introduction.xml

    r5c8e74d r350ab24  
    1313  <para>This chapter builds the tools needed by some packages to run the tests
    1414  that they have. I.e., <command>make check</command>. Tcl, Expect,
    15   and DejaGNU are needed for the GCC and Binutils testsuites. Check is needed
    16   for KBD tests. Installing four packages for testing purposes may seem
    17   excessive, but it is very reassuring, if not essential, to know that the most
    18   important tools are working properly.</para>
     15  and DejaGNU are needed for the GCC, Binutils, and Findutils testsuites.
     16  Installing three packages for testing purposes may seem excessive, but it is
     17  very reassuring, if not essential, to know that the most important tools are
     18  working properly.</para>
    1919
    2020</sect1>
  • BOOK/the-end/downloadclient.xml

    r5c8e74d r350ab24  
    6363}' > binary
    6464
    65 gawk '{q=p;p=$0}NR&gt;1{print q}END{ORS = ""; print p}' binary &gt; wget-1.14.tar.xz 
     65gawk '{q=p;p=$0}NR&gt;1{print q}END{ORS = ""; print p}' binary &gt; wget-1.14.tar.xz
    6666
    6767rm binary
     
    7979$response = $http->mirror('http://ftp.gnu.org/gnu/wget/wget-1.14.tar.xz', 'wget-1.14.tar.xz');
    8080die "Failed!\n" unless $response->{success};
    81 print "Unchanged!\n" if $response->{status} eq '304';     
     81print "Unchanged!\n" if $response->{status} eq '304';
    8282EOF</userinput></screen>
    8383      <para>Or use this:</para>
  • BOOK/x86-index.xml

    r5c8e74d r350ab24  
    6262    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="testsuite-tools/x86-chapter.xml"/>
    6363    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="final-system/x86-chapter.xml"/>
    64     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootscripts/x86-chapter.xml"/>
     64    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="system-config/x86-chapter.xml"/>
    6565    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="network/x86-chapter.xml"/>
    6666    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootable/x86-chapter.xml"/>
  • BOOK/x86_64-64-index.xml

    r5c8e74d r350ab24  
    6161    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="testsuite-tools/x86_64-64-chapter.xml"/>
    6262    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="final-system/x86_64-64-chapter.xml"/>
    63     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootscripts/x86_64-64-chapter.xml"/>
     63    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="system-config/x86_64-64-chapter.xml"/>
    6464    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="network/x86_64-64-chapter.xml"/>
    6565    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootable/x86_64-64-chapter.xml"/>
  • BOOK/x86_64-index.xml

    r5c8e74d r350ab24  
    6161    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="testsuite-tools/x86_64-chapter.xml"/>
    6262    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="final-system/x86_64-chapter.xml"/>
    63     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootscripts/x86_64-chapter.xml"/>
     63    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="system-config/x86_64-chapter.xml"/>
    6464    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="network/x86_64-chapter.xml"/>
    6565    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bootable/x86_64-chapter.xml"/>
Note: See TracChangeset for help on using the changeset viewer.