Changeset afbe6d9


Ignore:
Timestamp:
05/12/2005 10:07:33 PM (19 years ago)
Author:
Matthew Burgess <matthew@…>
Branches:
6.1, 6.1.1
Children:
b9248a9
Parents:
e750af1
Message:

Merge r5317 and 5318 (wording and tagging corrections) to the testing branch

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

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    re750af1 rafbe6d9  
    1313mirrors via <ulink url="&lfs-root;"/>.</para>
    1414
    15 <para>Below is a list of changes made since the previous release of the book,
    16 first a summary, then a detailed log.</para>
     15<para>Below is a list of changes made since the previous release of the book.
     16First a summary, then a detailed log.</para>
    1717
    1818<itemizedlist>
     
    8484</listitem>
    8585
     86<listitem><para>May 12th, 2005 [matt]: More wording and tagging improvements
     87(thanks to Peter Ennis and Tony Morgan)</para></listitem>
     88
     89<listitem><para>May 12th, 2005 [matt]: Minor wording improvements (thanks to
     90Peter Ennis)</para></listitem>
     91
    8692<listitem><para>April 27th, 2005 [archaic]: Added a patch to fix 2 glibc
    8793testsuite failures when the running kernel is 2.6.11.x.</para></listitem>
     
    133139</listitem>
    134140
    135 <listitem><para>April 4, 2005 [matt]: Fix E2fsprogs compile problem (Ken Moffat
     141<listitem><para>April 4, 2005 [matt]: Fix e2fsprogs compile problem (Ken Moffat
    136142&amp; Greg Schafer)</para></listitem>
    137143
     
    193199</listitem>
    194200
    195 <listitem><para>March 14, 2005 [jim]: Added /var/log/hotplug for capturing
     201<listitem><para>March 14, 2005 [jim]: Added <filename class="directory">/var/log/hotplug</filename> for capturing
    196202of hotplug events. Added /lib/firmware for firmware loading with hotplug</para></listitem>
    197203
     
    239245</para></listitem>
    240246
    241 <listitem><para>February 28, 2005 [matt]: Move /usr/bin/logger to /bin
    242 as the bootscripts need it there.  Fixes bug 1035.</para>
     247<listitem><para>February 28, 2005 [matt]: Move <filename>/usr/bin/logger</filename>
     248to <filename class="directory">/bin</filename> as the bootscripts need it there.  Fixes bug 1035.</para>
    243249</listitem>
    244250
     
    275281
    276282<listitem><para>February 19, 2005 [jeremy]: Added correction to chapter 5
    277 glibc build to correct the disabling of selinux functionality.  Thanks to
     283glibc build to fix the disabling of selinux functionality.  Thanks to
    278284Bobson on IRC (bobson@bobson.net) for pointing this out.  Closes bugzilla
    2792851034.</para></listitem>
     
    360366from version 5.1.</para></listitem>
    361367
    362 <listitem><para>December 20, 2004 [manuel]: Made Grub's configuration location
     368<listitem><para>December 20, 2004 [manuel]: Made grub's configuration location
    363369FHS compliant.</para></listitem>
    364370
  • chapter02/creatingfilesystem.xml

    re750af1 rafbe6d9  
    1010<para>Now that a blank partition has been set up, the file system can
    1111be created. The most widely-used system in the Linux world is the
    12 second extended file system (ext2), but with the newer high-capacity
    13 hard disks, the journaling file systems are becoming increasingly
    14 popular.  Here we will create an ext2 file system, but build
     12second extended file system (ext2), but with newer high-capacity
     13hard disks, journaling file systems are becoming increasingly
     14popular.  We will create an ext2 file system, however build
    1515instructions for other file systems can be found at <ulink
    1616url="&blfs-root;view/svn/postlfs/filesystems.html"><phrase
     
    5252
    5353<para>If a swap partition was created, it will need to be initialized
    54 as a swap partition too (also known as formatting, as described above
    55 with <command>mke2fs</command>) by running the following. If you are using an existing
     54as a swap partition by using the command below. If you are using an existing
    5655swap partition, there is no need to format it.</para>
    5756
  • chapter02/creatingpartition.xml

    re750af1 rafbe6d9  
    88<?dbhtml filename="creatingpartition.html"?>
    99
    10 <!--Edit Me-->
    1110<para>Like most other operating systems, LFS is usually installed on
    12 a dedicated partition.  If you have an empty partition or enough
    13 unpartitioned space on one of your hard disks to make one, using this
    14 for your LFS installation is recommended. However, an LFS system (in
     11a dedicated partition.  The recommended approach to building an LFS
     12system is to use an available empty partition or, if you have enough
     13unpartitioned space, to create one. However, an LFS system (in
    1514fact even multiple LFS systems) may also be installed on a partition
    1615already occupied by another operating system and the different systems
     
    2019explains how to implement this, whereas this book discusses the method of
    2120using a fresh partition for the installation.</para>
    22 <!--End Edit Me-->
    2321
    2422<para>A minimal system requires a partition of around 1.3 gigabytes
     
    2725Linux system, additional software will probably be installed which
    2826will require additional space (2 or 3 GB). The LFS system itself will
    29 not take up this much space. A large portion of this required amount
    30 of space is to provide sufficient free temporary space. Compiling
     27not take up this much room. A large portion of this requirement
     28is to provide sufficient free temporary storage. Compiling
    3129packages can require a lot of disk space which will be reclaimed after
    3230the package is installed.</para>
     
    3432<para>Because there is not always enough Random Access Memory (RAM)
    3533available for compilation processes, it is a good idea to use a small
    36 disk partition as swap space.  This space is used by the kernel to
    37 store seldom-used data to make room in memory for active processes.
     34disk partition as swap space.  This is used by the kernel to
     35store seldom-used data and leave more memory available for active processes.
    3836The swap partition for an LFS system can be the same as the one used
    39 by the host system, so another swap partition will not need to be
    40 created if your host system already has one setup.</para>
     37by the host system, in which case it is not necessary to create another
     38one.</para>
    4139
    4240<para>Start a disk partitioning program such as
  • chapter05/glibc.xml

    re750af1 rafbe6d9  
    145145importance, please see <xref linkend="ch-system-glibc" role="."/></para>
    146146
    147 <para>In this chapter, some tests can be adversely effected by
     147<para>In this chapter, some tests can be adversely affected by
    148148existing tools or environmental issues on the host system. Glibc test
    149149suite failures in this chapter are typically not worrisome. The Glibc
  • chapter05/toolchaintechnotes.xml

    re750af1 rafbe6d9  
    6767
    6868<listitem><para>Careful manipulation of <command>gcc</command>'s
    69 <filename>specs</filename> file tell the compiler which target dynamic
     69<filename>specs</filename> file tells the compiler which target dynamic
    7070linker will be used</para></listitem>
    7171</itemizedlist>
     
    7878result in a subtly broken toolchain, where the impact of such breakage
    7979might not show up until near the end of the build of an entire
    80 distribution. A test suite failure will usually alert this error
     80distribution. A test suite failure will usually highlight this error
    8181before too much additional work is performed.</para>
    8282
  • general.ent

    re750af1 rafbe6d9  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    2 <!ENTITY version "TESTING-20050428">
    3 <!ENTITY releasedate "April 28, 2005">
     2<!ENTITY version "TESTING-20050512">
     3<!ENTITY releasedate "May 12, 2005">
    44<!ENTITY milestone "6.1">
    55
Note: See TracChangeset for help on using the changeset viewer.