Changeset bff5fef


Ignore:
Timestamp:
08/03/2014 08:28:50 PM (10 years ago)
Author:
Krejzi <krejzi@…>
Branches:
7.6-systemd, 7.7-systemd, 7.8-systemd, 7.9-systemd
Children:
cc440d3b
Parents:
a773230
Message:

Merged trunk.

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

Files:
18 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    ra773230 rbff5fef  
    3636    </listitem>
    3737-->
     38    <listitem>
     39      <para>2014-08-03</para>
     40      <itemizedlist>
     41        <listitem>
     42          <para>[krejzi] - Merged LFS SVN-20140803.</para>
     43        </listitem>
     44      </itemizedlist>
     45    </listitem>
     46
     47    <listitem>
     48      <para>2014-08-02</para>
     49      <itemizedlist>
     50        <listitem>
     51          <para>[bdubbs] - Move sed to be after acl. Fixes
     52          <ulink url="&lfs-ticket-root;3646">#3646</ulink>.</para>
     53        </listitem>
     54        <listitem>
     55          <para>[bdubbs] - Remove reference to obsolete /proc/ksyms in
     56          modules boot script.  Fixes
     57          <ulink url="&lfs-ticket-root;3644">#3644</ulink>.</para>
     58        </listitem>
     59        <listitem>
     60          <para>[bdubbs] - Change internal references to svn to an entitiy.</para>
     61        </listitem>
     62      </itemizedlist>
     63    </listitem>
     64
    3865    <listitem>
    3966      <para>2014-07-31</para>
  • chapter02/creatingpartition.xml

    ra773230 rbff5fef  
    6060  <note><para>For experienced users, other partitioning schemes are possible.
    6161  The new LFS system can be on a software <ulink
    62   url="&blfs-root;/view/svn/postlfs/raid.html">RAID</ulink> array or an <ulink
    63   url="&blfs-root;/view/svn/postlfs/aboutlvm.html">LVM</ulink> logical volume.
     62  url="&blfs-root;/view/&short-version;/postlfs/raid.html">RAID</ulink> array or an <ulink
     63  url="&blfs-root;/view/&short-version;/postlfs/aboutlvm.html">LVM</ulink> logical volume.
    6464  However, some of these options require an <ulink
    65   url="&blfs-root;/view/svn/postlfs/initramfs.html">initramfs</ulink>, which is
     65  url="&blfs-root;/view/&short-version;/postlfs/initramfs.html">initramfs</ulink>, which is
    6666  an advanced topic.  These partitioning methodologies are not recommended for
    6767  first time LFS users.</para></note>
  • chapter05/gcc-pass1.xml

    ra773230 rbff5fef  
    105105
    106106<screen><userinput remap="pre">sed -i '/k prot/agcc_cv_libc_provides_ssp=yes' gcc/configure</userinput></screen>
     107
     108    <para>Also fix a problem identified upstream:</para>
     109
     110<screen><userinput remap="pre">sed -i 's/if \((code.*))\)/if (\1 \&amp;\&amp; \!DEBUG_INSN_P (insn))/' gcc/sched-deps.c</userinput></screen>
    107111
    108112    <para>The GCC documentation recommends building GCC outside of the
  • chapter05/gcc-pass2.xml

    ra773230 rbff5fef  
    9595tar -xf ../mpc-&mpc-version;.tar.gz
    9696mv -v mpc-&mpc-version; mpc</userinput></screen>
     97
     98    <para>As in the first build of GCC, fix a problem identified upstream:</para>
     99
     100<screen><userinput remap="pre">sed -i 's/if \((code.*))\)/if (\1 \&amp;\&amp; \!DEBUG_INSN_P (insn))/' gcc/sched-deps.c</userinput></screen>
    97101
    98102    <para>Create a separate build directory again:</para>
  • chapter06/chapter06.xml

    ra773230 rbff5fef  
    2929  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="mpc.xml"/>
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gcc.xml"/>
    31   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="sed.xml"/>
    3231  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bzip2.xml"/>
    3332  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="pkgconfig.xml"/>
     
    3635  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="acl.xml"/>
    3736  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libcap.xml"/>
     37  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="sed.xml"/>
    3838  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="shadow.xml"/>
    3939  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="psmisc.xml"/>
  • chapter06/db.xml

    ra773230 rbff5fef  
    4343      need to build the RPC server or additional language bindings. The
    4444      additional language bindings will require additional packages to be
    45       installed. See <ulink url="&blfs-root;view/svn/server/databases.html#db"/>
     45      installed. See <ulink url="&blfs-root;view/&short-version;/server/databases.html#db"/>
    4646      for suggested installation instructions.</para>
    4747
     
    5353      benefits of using GDBM and wish to use it anyway, see the BLFS
    5454      instructions located at <ulink
    55       url="&blfs-root;view/svn/general/gdbm.html"/></para>
     55      url="&blfs-root;view/&short-version;/general/gdbm.html"/></para>
    5656
    5757    </tip>
  • chapter06/gcc.xml

    ra773230 rbff5fef  
    4141  <sect2 role="installation">
    4242    <title>Installation of GCC</title>
     43
     44    <para>As in Chapter 5, fix a problem identified upstream:</para>
     45
     46<screen><userinput remap="pre">sed -i 's/if \((code.*))\)/if (\1 \&amp;\&amp; \!DEBUG_INSN_P (insn))/' gcc/sched-deps.c</userinput></screen>
     47
    4348<!--
    4449    <para>First fix a problem identified upstream that causes some
     
    7883
    7984    <para>Note that for other languages, there are some prerequisites that
    80     are not available. See the BLFS Book for instructions on how to
    81     build all the GCC supported languages.</para>
     85    are not yet available. See the
     86    <ulink url="&blfs-root;view/&short-version;/general/gcc.html">BLFS Book</ulink>
     87    for instructions on how to build all of GCC's supported languages.</para>
    8288
    8389    <variablelist>
     
    130136
    131137    <para>A few unexpected failures cannot always be avoided. The GCC developers
    132     are usually aware of these issues, but have not resolved them yet. In
     138    are usually aware of these issues, but have not resolved them yet. <!-- In
    133139    particular, the <filename class="libraryfile">libmudflap</filename> tests
    134140    are known to be particularly problematic as a result of a bug in GCC
    135     (<ulink url="http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20003"/>).
     141    (<ulink url="http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20003"/>). -->
    136142    Unless the test results are vastly different from those at the above URL,
    137143    it is safe to continue.</para>
     
    321327        <seg>libasan.{a,so}, libatomic.{a,so}, libgcc.a, libgcc_eh.a,
    322328        libgcc_s.so, libgcov.a, libgomp.{a,so}, libiberty.a, libitm.{a,so},
    323         liblto_plugin.so, libmudflap.{a,so}, libmudflapth.{a,so},
     329        liblto_plugin.so,
    324330        libquadmath.{a,so}, libssp.{a,so},
    325331        libssp_nonshared.a, libstdc++.{a,so}, libsupc++.a and libtsan.{a,so}</seg>
     
    501507        </listitem>
    502508      </varlistentry>
    503 
     509<!--
    504510      <varlistentry id="libmudflap">
    505511        <term><filename class="libraryfile">libmudflap</filename></term>
     
    512518        </listitem>
    513519      </varlistentry>
    514 
     520-->
    515521      <varlistentry id="libquadmath">
    516522        <term><filename class="libraryfile">libquadmath</filename></term>
  • chapter06/iproute2.xml

    ra773230 rbff5fef  
    4747    DB by applying the commands below.  If the <command>arpd</command> binary is
    4848    needed, instructions for compiling Berkeley DB can be found in the BLFS Book
    49     at <ulink url="&blfs-root;view/svn/server/databases.html#db"/>.
     49    at <ulink url="&blfs-root;view/&short-version;/server/databases.html#db"/>.
    5050    </para>
    5151
  • chapter06/perl.xml

    ra773230 rbff5fef  
    4848<screen><userinput remap="pre">echo "127.0.0.1 localhost $(hostname)" &gt; /etc/hosts</userinput></screen>
    4949
    50     <para>This version of Perl now builds the Compress::Raw::Zlib ane
     50    <para>This version of Perl now builds the Compress::Raw::Zlib and
    5151    Compress::Raw::BZip2 modules. By
    5252    default Perl will use an internal copy of the sources for the build.
  • chapter06/pkgmgt.xml

    ra773230 rbff5fef  
    5252    <itemizedlist>
    5353      <listitem>
    54         <para>If one of the toolchain packages (Glibc, GCC or Binutils) needs
    55         to be upgraded to a newer minor version, it is safer to rebuild LFS.
    56         Though you <emphasis>may</emphasis> be able to get by rebuilding all
    57         the packages in their dependency order, we do not recommend it. For
    58         example, if glibc-2.2.x needs to be updated to glibc-2.3.x, it is safer
    59         to rebuild. For micro version updates, a simple reinstallation usually
    60         works, but is not guaranteed. For example, upgrading from glibc-2.3.4
    61         to glibc-2.3.5 will not usually cause any problems.</para>
     54        <para>If Glibc needs to be upgraded to a newer version, (e.g.  from
     55        glibc-2.19 to glibc-2.20, it is safer to rebuild LFS.  Though you
     56        <emphasis>may</emphasis> be able to rebuild all the packages in their
     57        dependency order, we do not recommend it.  </para>
    6258      </listitem>
    6359
  • chapter06/shadow.xml

    ra773230 rbff5fef  
    4444    <note>
    4545      <para>If you would like to enforce the use of strong passwords, refer to
    46       <ulink url="&blfs-root;view/svn/postlfs/cracklib.html"/> for installing
     46      <ulink url="&blfs-root;view/&short-version;/postlfs/cracklib.html"/> for installing
    4747      CrackLib prior to building Shadow. Then add
    4848      <parameter>--with-libcrack</parameter> to the <command>configure</command>
  • chapter06/vim.xml

    ra773230 rbff5fef  
    3535      <para>If you prefer another editor&mdash;such as Emacs, Joe, or
    3636      Nano&mdash;please refer to <ulink
    37       url="&blfs-root;view/svn/postlfs/editors.html"/> for suggested
     37      url="&blfs-root;view/&short-version;/postlfs/editors.html"/> for suggested
    3838      installation instructions.</para>
    3939    </tip>
     
    120120    process, refer to the Vim documentation and the Vim installation page
    121121    in the BLFS book at <ulink
    122     url="&blfs-root;view/svn/postlfs/vim.html"/>.</para>
     122    url="&blfs-root;view/&short-version;/postlfs/vim.html"/>.</para>
    123123
    124124  </sect2>
  • chapter07/locale.xml

    ra773230 rbff5fef  
    148148  <para>UTF-8 based locales are not supported well by many programs.
    149149  Work is in progress to document and, if possible, fix such problems, see
    150   <ulink url="&blfs-root;view/svn/introduction/locale-issues.html"/>.</para>
     150  <ulink url="&blfs-root;view/&short-version;/introduction/locale-issues.html"/>.</para>
    151151
    152152</sect1>
  • chapter07/symlinks.xml

    ra773230 rbff5fef  
    2525    The case of network cards is covered separately in
    2626    <xref linkend="ch-scripts-network"/>, and sound card configuration can
    27     be found in <ulink url="&blfs-root;view/svn/postlfs/devices.html">BLFS</ulink>.</para>
     27    be found in <ulink url="&blfs-root;view/&short-version;/postlfs/devices.html">BLFS</ulink>.</para>
    2828
    2929    <para>For each of your devices that is likely to have this problem
  • chapter08/grub.xml

    ra773230 rbff5fef  
    3232    below to work, you need to jump ahead to BLFS and install
    3333    <userinput>xorriso</userinput> from the <ulink
    34     url="http://www.linuxfromscratch.org/blfs/view/svn/multimedia/libisoburn.html">
     34    url="http://www.linuxfromscratch.org/blfs/view/&short-version;/multimedia/libisoburn.html">
    3535    libisoburn</ulink> package.</para>
    3636
  • chapter08/kernel.xml

    ra773230 rbff5fef  
    6262    regarding particular kernel configuration requirements of packages outside
    6363    of LFS at <ulink
    64     url="&blfs-root;view/svn/longindex.html#kernel-config-index"/>.  Additional
     64    url="&blfs-root;view/&short-version;/longindex.html#kernel-config-index"/>.  Additional
    6565    information about configuring and building the kernel can be found at
    6666    <ulink url="http://www.kroah.com/lkn/"/> </para>
  • chapter09/reboot.xml

    ra773230 rbff5fef  
    2222
    2323    <listitem><para>A text mode browser such as <ulink
    24     url='&blfs-root;/view/svn/basicnet/lynx.html'>Lynx</ulink>
     24    url='&blfs-root;/view/&short-version;/basicnet/lynx.html'>Lynx</ulink>
    2525    will allow you to easily view the BLFS book in one virtual terminal, while
    2626    building packages in another.</para></listitem>
    2727
    2828    <listitem><para>The <ulink
    29     url='&blfs-root;/view/svn/general/gpm.html'>GPM</ulink> package will allow
     29    url='&blfs-root;/view/&short-version;/general/gpm.html'>GPM</ulink> package will allow
    3030    you to perform copy/paste actions in your virtual
    3131    terminals.</para></listitem>
     
    3333    <listitem><para>If you are in a situation where static IP configuration
    3434    does not meet your networking requirements, installing a package
    35     such as <ulink url='&blfs-root;/view/svn/basicnet/dhcpcd.html'>dhcpcd</ulink>
     35    such as <ulink url='&blfs-root;/view/&short-version;/basicnet/dhcpcd.html'>dhcpcd</ulink>
    3636    or the client portion of <ulink
    37     url='&blfs-root;/view/svn/basicnet/dhcp.html'>dhcp</ulink> may be
     37    url='&blfs-root;/view/&short-version;/basicnet/dhcp.html'>dhcp</ulink> may be
    3838    useful.</para></listitem>
    3939
    4040    <listitem><para>Installing <ulink
    41     url='&blfs-root;/view/svn/postlfs/sudo.html'>sudo</ulink> may be useful for
     41    url='&blfs-root;/view/&short-version;/postlfs/sudo.html'>sudo</ulink> may be useful for
    4242    building packages as a non-root user and easily installing the resulting
    4343    packages in your new system.  </para></listitem>
     
    4545    <listitem><para>If you want to access your new system from a remote system
    4646    within a comfortable GUI environment, install <ulink
    47     url='&blfs-root;/view/svn/postlfs/openssh.html'>openssh</ulink> and its
     47    url='&blfs-root;/view/&short-version;/postlfs/openssh.html'>openssh</ulink> and its
    4848    prerequsite, <ulink
    49     url='&blfs-root;/view/svn/postlfs/openssl.html'>openssl</ulink>.
     49    url='&blfs-root;/view/&short-version;/postlfs/openssl.html'>openssl</ulink>.
    5050    </para></listitem>
    5151
    5252    <listitem><para>To make fetching files over the internet easier, install
    53     <ulink url='&blfs-root;/view/svn/basicnet/wget.html'>wget</ulink>.
     53    <ulink url='&blfs-root;/view/&short-version;/basicnet/wget.html'>wget</ulink>.
    5454    </para></listitem>
    5555
    5656    <listitem><para>If one or more of your disk drives have a GUID partition
    5757    table (GPT), either <ulink
    58     url='&blfs-root;/view/svn/postlfs/gptfdisk.html'>gptfdisk</ulink> or <ulink
    59     url='&blfs-root;/view/svn/postlfs/parted.html'>parted</ulink> will be useful.
     58    url='&blfs-root;/view/&short-version;/postlfs/gptfdisk.html'>gptfdisk</ulink> or <ulink
     59    url='&blfs-root;/view/&short-version;/postlfs/parted.html'>parted</ulink> will be useful.
    6060    </para></listitem>
    6161
  • general.ent

    ra773230 rbff5fef  
    1 <!ENTITY version         "20140731-systemd">
    2 <!ENTITY short-version   "svn">  <!-- Used in dbus chapter, change to x.y for release -->
    3 <!ENTITY releasedate     "July 31, 2014">
     1<!ENTITY version         "20140803-systemd">
     2<!ENTITY short-version   "systemd">  <!-- Used in dbus chapter, change to x.y for release -->
     3<!ENTITY releasedate     "August 03, 2014">
    44<!ENTITY copyrightdate   "1999-2014"><!-- jhalfs needs a literal dash, not &ndash; -->
    55<!ENTITY milestone       "7.6">
Note: See TracChangeset for help on using the changeset viewer.