Changeset 6bd5f11


Ignore:
Timestamp:
07/08/2014 04:36:46 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.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:
87fd5ce
Parents:
e4429b7
Message:

Removed references to /lib/udev/devices.
Update to linux-3.15.4.
Removed systemd references in bootscripts.
Simlify lto instructions in chapter 6 gcc.
Update XML-Parser source location.
Update to eudev-1.9.
Update to kbd-2.0.2.

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

Files:
2 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/ChangeLog

    re4429b7 r6bd5f11  
     12014-06-29 Bruce Dubbs <bdubbs@linuxfromscratch.org>
     2   * Remove systemd references and files
     3
    142014-03-31 Bruce Dubbs <bdubbs@linuxfromscratch.org>
    25   * Changes made to be consistent with common systemd functions
  • bootscripts/Makefile

    re4429b7 r6bd5f11  
    22LIBDIR=${DESTDIR}/lib
    33SERVICEDIR=${LIBDIR}/services
    4 UNITDIR=${LIBDIR}/systemd/system
    54MAN8=${DESTDIR}/usr/share/man/man8
    65SBIN=${DESTDIR}/sbin
  • chapter01/changelog.xml

    re4429b7 r6bd5f11  
    3636    </listitem>
    3737-->
     38    <listitem>
     39      <para>2014-07-08</para>
     40      <itemizedlist>
     41        <listitem>
     42          <para>[bdubbs] - Removed references to /lib/udev/devices. Fixes
     43          <ulink url="&lfs-ticket-root;3620">#3620</ulink>.</para>
     44        </listitem>
     45        <listitem>
     46          <para>[bdubbs] - Update to linux-3.15.4. Fixes
     47          <ulink url="&lfs-ticket-root;3623">#3623</ulink>.</para>
     48        </listitem>
     49        <listitem>
     50          <para>[bdubbs] - Removed systemd references in bootscripts. Fixes
     51          <ulink url="&lfs-ticket-root;3624">#3624</ulink>.</para>
     52        </listitem>
     53        <listitem>
     54          <para>[bdubbs] - Simlify lto instructions in chapter 6 gcc. Fixes
     55          <ulink url="&lfs-ticket-root;3626">#3626</ulink>.</para>
     56        </listitem>
     57        <listitem>
     58          <para>[bdubbs] - Update XML-Parser source location. Fixes
     59          <ulink url="&lfs-ticket-root;3628">#3628</ulink>.</para>
     60        </listitem>
     61        <listitem>
     62          <para>[bdubbs] - Update to eudev-1.9. Fixes
     63          <ulink url="&lfs-ticket-root;3630">#3630</ulink>.</para>
     64        </listitem>
     65        <listitem>
     66          <para>[bdubbs] - Update to kbd-2.0.2. Fixes
     67          <ulink url="&lfs-ticket-root;3631">#3631</ulink>.</para>
     68        </listitem>
     69      </itemizedlist>
     70    </listitem>
     71
    3872    <listitem>
    3973      <para>2014-07-02</para>
  • chapter01/whatsnew.xml

    re4429b7 r6bd5f11  
    113113      <para>IPRoute2 &iproute2-version;</para>
    114114    </listitem>
    115     <!--<listitem>
     115    <listitem>
    116116      <para>Kbd &kbd-version;</para>
    117     </listitem>-->
     117    </listitem>
    118118    <listitem>
    119119      <para>Kmod &kmod-version;</para>
  • chapter06/eudev.xml

    re4429b7 r6bd5f11  
    7474will also be used as a part of installation:</para>
    7575
    76 <screen><userinput remap="install">mkdir -pv /lib/{firmware,udev/devices/pts}
     76<screen><userinput remap="install">mkdir -pv /lib/{firmware,udev}
    7777mkdir -pv /lib/udev/rules.d
    7878mkdir -pv /etc/udev/rules.d</userinput></screen>
  • chapter06/gcc.xml

    re4429b7 r6bd5f11  
    155155
    156156<screen><userinput remap="install">install -dm755 /usr/lib/bfd-plugins
    157 pushd /usr/lib/bfd-plugins
    158 
    159 if [ $(uname -m) == "i686" ]; then
    160    ln -sfv ../../libexec/gcc/i686-pc-linux-gnu/&gcc-version;/liblto_plugin.so
    161 else
    162    ln -sfv ../../libexec/gcc/x86_64-unknown-linux-gnu/&gcc-version;/liblto_plugin.so
    163 fi
    164 
    165 popd</userinput></screen>
     157ln -sfv ../../libexec/gcc/$(gcc -dumpmachine)/&gcc-version;/liblto_plugin.so</userinput></screen>
    166158
    167159    <para>Now that our final toolchain is in place, it is important to again ensure
  • chapter07/usage.xml

    re4429b7 r6bd5f11  
    210210  <sect2>
    211211    <title>Udev Bootscripts</title>
    212 
    213       <para>The first LFS bootscript,
    214       <filename>/etc/init.d/mountvirtfs</filename> will copy any devices
    215       located in <filename class="directory">/lib/udev/devices</filename> to
    216       <filename class="directory">/dev</filename>. This is necessary because
    217       some devices, directories, and symlinks are needed before the dynamic
    218       device handling processes are available during the early stages of
    219       booting a system, or are required by <command>udevd</command> itself.
    220       Creating static device nodes in <filename
    221       class="directory">/lib/udev/devices</filename> also provides an easy
    222       workaround for devices that are not supported by the dynamic device
    223       handling infrastructure.</para>
    224212
    225213      <para>The <filename>/etc/rc.d/init.d/udev</filename> initscript starts
  • general.ent

    re4429b7 r6bd5f11  
    1 <!ENTITY version         "SVN-20140702">
     1<!ENTITY version         "SVN-20140708">
    22<!ENTITY short-version   "svn">  <!-- Used in dbus chapter, change to x.y for release -->
    3 <!ENTITY releasedate     "July 02, 2014">
     3<!ENTITY releasedate     "July 8, 2014">
    44<!ENTITY copyrightdate   "1999-2014"><!-- jhalfs needs a literal dash, not &ndash; -->
    55<!ENTITY milestone       "7.6">
  • packages.ent

    re4429b7 r6bd5f11  
    148148<!ENTITY e2fsprogs-ch6-sbu "1.7 SBU">
    149149
    150 <!ENTITY eudev-version "1.8">
    151 <!ENTITY eudev-size "1,716 KB">
     150<!ENTITY eudev-version "1.9">
     151<!ENTITY eudev-size "1,722 KB">
    152152<!ENTITY eudev-url "http://dev.gentoo.org/~blueness/eudev/eudev-&eudev-version;.tar.gz">
    153 <!ENTITY eudev-md5 "4520cf7ba2ec4be1bd0ac5ff75c8b315">
     153<!ENTITY eudev-md5 "da8083b30b44177445b21e8299af23a1">
    154154<!ENTITY eudev-manpages-size "9 KB">
    155155<!ENTITY eudev-manpages-url "&anduin-other;eudev-&eudev-version;-manpages.tar.bz2">
     
    347347<!ENTITY iproute2-ch6-sbu "0.1 SBU">
    348348
    349 <!ENTITY kbd-version "2.0.1">
    350 <!ENTITY kbd-size "1,962 KB">
     349<!ENTITY kbd-version "2.0.2">
     350<!ENTITY kbd-size "2,105 KB">
    351351<!ENTITY kbd-url "https://www.kernel.org/pub/linux/utils/kbd/kbd-&kbd-version;.tar.gz">
    352 <!ENTITY kbd-md5 "e9f2b7046312c11cec9e52e22f307b6a">
     352<!ENTITY kbd-md5 "ba56fb5bfd44acea83fc5dac4a9b7f15">
    353353<!ENTITY kbd-home "http://ftp.altlinux.org/pub/people/legion/kbd">
    354354<!ENTITY kbd-ch6-du "20 MB">
     
    371371<!ENTITY less-ch6-sbu "less than 0.1 SBU">
    372372
    373 <!ENTITY lfs-bootscripts-version "20140511">              <!-- Scripts depend on this format -->
     373<!ENTITY lfs-bootscripts-version "20140629">              <!-- Scripts depend on this format -->
    374374<!ENTITY lfs-bootscripts-size "BOOTSCRIPTS-SIZE KB">         <!-- Updated in Makefile -->
    375375<!ENTITY lfs-bootscripts-url "&downloads-root;lfs-bootscripts-&lfs-bootscripts-version;.tar.bz2">
     
    408408<!ENTITY linux-major-version "3">
    409409<!ENTITY linux-minor-version "15">
    410 <!ENTITY linux-patch-version "1">
     410<!ENTITY linux-patch-version "4">
    411411<!ENTITY linux-version "&linux-major-version;.&linux-minor-version;.&linux-patch-version;">
    412412<!--<!ENTITY linux-version "&linux-major-version;.&linux-minor-version;">-->
    413 <!ENTITY linux-size "77,813 KB">
     413<!ENTITY linux-size "77,793 KB">
    414414<!ENTITY linux-url "&kernel;linux/kernel/v&linux-major-version;.x/linux-&linux-version;.tar.xz">
    415 <!ENTITY linux-md5 "72bd0bf0e773963217c89cddbf3e0048">
     415<!ENTITY linux-md5 "5525ef4f6f577682d7ea2bf992aa6bcf">
    416416<!ENTITY linux-home "http://www.kernel.org/">
    417417<!-- measured for 3.9.0 / gcc-4.8.0 on x86_64 : minimum is
     
    650650<!ENTITY xml-parser-version "2.42_01">
    651651<!ENTITY xml-parser-size "236 KB">
    652 <!ENTITY xml-parser-url "http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/XML-Parser-&xml-parser-version;.tar.gz">
     652<!ENTITY xml-parser-url "http://cpan.metacpan.org/authors/id/T/TO/TODDR/XML-Parser-&xml-parser-version;.tar.gz">
    653653<!ENTITY xml-parser-md5 "a4650aebcc464bb91113c2c356da8210">
    654654<!ENTITY xml-parser-home "https://github.com/chorny/XML-Parser">
Note: See TracChangeset for help on using the changeset viewer.