Changeset e043985


Ignore:
Timestamp:
02/19/2014 10:21:37 PM (10 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 7.5, 7.6, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
4e8a532
Parents:
b83d43e
Message:

Spelling and other general cleanup.
Use better method for installing kmod man pages.

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

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    rb83d43e re043985  
    8282        </listitem>
    8383        <listitem>
    84           <para>[bdubbs] - Update automake tests to accomodate util-linux
     84          <para>[bdubbs] - Update automake tests to accommodate util-linux
    8585          in /tools and to speed the test up.
    8686          </para>
     
    201201          <para>[bdubbs] - Add an environment variable to util-linux
    202202          in Chapter 5 to prevent an installation error for
    203           hosts that have unneeded capabilities availible.</para>
     203          hosts that have unneeded capabilities available.</para>
    204204        </listitem>
    205205      </itemizedlist>
     
    301301        <listitem>
    302302          <para>[bdubbs] - Update to inetutils-1.9.2 and remove
    303           referece to old BLFS page. Fixes
     303          reference to old BLFS page. Fixes
    304304          <ulink url="&lfs-ticket-root;3471">#3471</ulink> and
    305305          <ulink url="&lfs-ticket-root;3473">#3473</ulink>.</para>
     
    453453        <listitem>
    454454          <para>[bdubbs] - Enable building sulogin in util-linux.
    455           Supress installing sysvinit's sulogin.
     455          Suppress installing sysvinit's sulogin.
    456456          Fixes
    457457          <ulink url="&lfs-ticket-root;3435">#3435</ulink>.</para>
    458458        </listitem>
    459459        <listitem>
    460           <para>[bdubbs] - Supress installing sysvinit's mesg and last
     460          <para>[bdubbs] - Suppress installing sysvinit's mesg and last
    461461          that overwrite the versions installed by util-linux.
    462462          Thanks to Chris Staub.  Fixes
  • chapter05/gettext.xml

    rb83d43e re043985  
    4545
    4646    <para>For our temporary set of tools, we only need to build and install
    47     one binary from Gettext.</para>
     47    three programs from Gettext.</para>
    4848
    4949    <para>Prepare Gettext for compilation:</para>
     
    7777
    7878<screen><userinput remap="make">make -C gnulib-lib
    79 make -C src msgfmt</userinput></screen>
     79make -C src msgfmt
     80make -C src msgmerge
     81make -C src xgettext</userinput></screen>
    8082
    81     <para>As only one binary has been compiled, it is not possible to run the
     83    <para>As only three prograsm have been compiled, it is not possible to run the
    8284    test suite without compiling additional support libraries from the Gettext
    8385    package. It is therefore not recommended to attempt to run the test suite at
    8486    this stage.</para>
    8587
    86     <para>Install the <command>msgfmt</command> binary:</para>
     88    <para>Install the <command>msgfmt</command>, <command>msgmerge</command> and
     89    <command>xgettext</command> programs:</para>
    8790
    88 <screen><userinput remap="install">cp -v src/msgfmt /tools/bin</userinput></screen>
     91<screen><userinput remap="install">cp -v src/{msgfmt,msgmerge,xgettext} /tools/bin</userinput></screen>
    8992
    9093  </sect2>
  • chapter05/util-linux.xml

    rb83d43e re043985  
    7676          features that may be available on the host. Note that the location
    7777          shown for setting this environment variable is different from other
    78           LFS sections where variables are set preceeding the command.  This
     78          LFS sections where variables are set preceding the command.  This
    7979          location is shown to demonstrate an alternative way of setting an
    8080          environment variable when using configure.</para>
  • chapter06/findutils.xml

    rb83d43e re043985  
    9090    <segmentedlist>
    9191      <segtitle>Installed programs</segtitle>
    92       <segtitle>Installed directory</segtitle>
    9392
    9493      <seglistitem>
    9594        <seg>bigram, code, find, frcode, locate, oldfind, updatedb, and xargs</seg>
    96         <seg>/usr/lib/findutils</seg>
    9795      </seglistitem>
    9896    </segmentedlist>
  • chapter06/kmod.xml

    rb83d43e re043985  
    8989<screen><userinput remap="test">make check</userinput></screen>
    9090
    91     <para>Install the package, create symlinks for compatibility with
    92     Module-Init-Tools (the package that previously handled Linux kernel
    93     modules), and manually install the man pages.  Also make sure that all
    94     libraries are in the correct directory: </para>
     91    <para>Install the package, man pages, and create symlinks for
     92    compatibility with Module-Init-Tools (the package that previously handled
     93    Linux kernel modules).  Also make sure that all libraries are in the
     94    correct directory: </para>
    9595
    9696<screen><userinput remap="install">make install
     97make -C man install
    9798
    9899for target in depmod insmod modinfo modprobe rmmod; do
     
    100101done
    101102
    102 ln -sv kmod /bin/lsmod
    103 
    104 cp -v man/*.5 /usr/share/man/man5
    105 cp -v man/*.8 /usr/share/man/man8</userinput></screen>
     103ln -sv kmod /bin/lsmod</userinput></screen>
    106104
    107105  </sect2>
  • prologue/architecture.xml

    rb83d43e re043985  
    1313<para>The primary target architectures of LFS are the AMD/Intel x86 (32-bit)
    1414and x86_64 (64-bit) CPUs.  On the other hand, the instructions in this book are
    15 also known to work, with some modifications, with the Power PC CPU. To build a
    16 system that utilizes one of these CPUs, the main prerequisite, in addition to
    17 those on the next few pages, is an existing Linux system such as an earlier LFS
    18 installation, Ubuntu, Red Hat/Fedora, SuSE, or other distribution that targets
    19 the architecture that you have. Also note that a 32-bit distribution can be
    20 installed and used as a host system on a 64-bit AMD/Intel computer.</para>
     15also known to work, with some modifications, with the Power PC and ARM CPUs. To
     16build a system that utilizes one of these CPUs, the main prerequisite, in
     17addition to those on the next few pages, is an existing Linux system such as an
     18earlier LFS installation, Ubuntu, Red Hat/Fedora, SuSE, or other distribution
     19that targets the architecture that you have. Also note that a 32-bit
     20distribution can be installed and used as a host system on a 64-bit AMD/Intel
     21computer.</para>
    2122
    2223<para>Some other facts about 64-bit systems need to be added here. When
Note: See TracChangeset for help on using the changeset viewer.