Changeset b1169eb


Ignore:
Timestamp:
07/18/2024 10:30:10 PM (7 weeks ago)
Author:
Thomas Trepl <thomas@…>
Branches:
multilib
Children:
08de18a
Parents:
38c03e1 (diff), eeee0749 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Automatic merge of trunk into multilib

Files:
9 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/ChangeLog

    r38c03e1 rb1169eb  
     12024-07-12 Xi Ruoyao <xry111@xry111.site>
     2   * In mountvirtfs, recreate /dev/fd correctly if it's already created
     3     by the initramfs.
     4
    152024-07-06 Bruce Dubbs <bdubbs@linuxfromscratch.org>
    26   * Add logic to init-functions to only print escape sequences
  • bootscripts/lfs/init.d/mountvirtfs

    r38c03e1 rb1169eb  
    8484
    8585      log_info_msg2 " ${INFO}/dev/fd"
    86       ln -sf /proc/self/fd   /dev/fd     || failed=1
     86      ln -sfn /proc/self/fd  /dev/fd     || failed=1
    8787
    8888      if [ -e /proc/kcore ]; then
  • chapter03/packages.xml

    r38c03e1 rb1169eb  
    724724
    725725    <varlistentry>
    726       <term>Systemd Man Pages(&systemd-version;) - <token>&systemd-man-size;</token>:</term>
     726      <term>Systemd Man Pages (&systemd-version;) - <token>&systemd-man-size;</token>:</term>
    727727      <listitem>
    728728        <para>Home page: <ulink url="&systemd-home;"/></para>
  • chapter05/binutils-pass1.xml

    r38c03e1 rb1169eb  
    7777             --enable-gprofng=no \
    7878             --disable-werror    \
     79             --enable-new-dtags  \
    7980             --enable-default-hash-style=gnu</userinput></screen>
    8081<screen arch="ml_32,ml_x32,ml_all"><userinput remap="configure">../configure --prefix=$LFS/tools       \
     
    143144
    144145      <varlistentry>
     146        <term><parameter>--enable-new-dtags</parameter></term>
     147        <listitem>
     148          <para>This makes the linker use the <quote>runpath</quote> tag for
     149          embedding library search paths into executables and shared libraries,
     150          instead of the traditional <quote>rpath</quote> tag.  It makes
     151          debugging dynamically linked executables easier and works around
     152          potential issues in the test suite of some packages.</para>
     153        </listitem>
     154      </varlistentry>
     155
     156      <varlistentry>
    145157        <term><parameter>--enable-default-hash-style=gnu</parameter></term>
    146158        <listitem>
  • chapter06/binutils-pass2.xml

    r38c03e1 rb1169eb  
    7474    --disable-werror           \
    7575    --enable-64-bit-bfd        \
     76    --enable-new-dtags         \
    7677    --enable-default-hash-style=gnu</userinput></screen>
    7778<screen arch="ml_32,ml_x32,ml_all"><userinput remap="configure">../configure                   \
  • chapter08/binutils.xml

    r38c03e1 rb1169eb  
    5858             --disable-werror    \
    5959             --enable-64-bit-bfd \
     60             --enable-new-dtags  \
    6061             --with-system-zlib  \
    6162             --enable-default-hash-style=gnu</userinput></screen>
  • chapter08/cleanup.xml

    r38c03e1 rb1169eb  
    1313  <para>Finally, clean up some extra files left over from running tests:</para>
    1414
    15 <screen><userinput>rm -rf /tmp/*</userinput></screen>
     15  <screen><userinput>rm -rf /tmp/{*,.*}</userinput></screen>
    1616
    1717  <para>There are also several files in the /usr/lib and /usr/libexec
  • chapter08/systemd.xml

    r38c03e1 rb1169eb  
    226226    <!-- test-namespace needs /run/systemd/inaccessible/sock, which only exists
    227227         after initializing the system with systemd.  -->
    228     <para>Three tests: <literal>systemd:core / test-namespace</literal>,
    229                        <literal>test-loopback</literal>, and
    230                        <literal>test-copy</literal>,
    231     are known to fail in the LFS chroot environment.  Some other tests may
     228    <para>One test named <literal>systemd:core / test-namespace</literal>
     229    is known to fail in the LFS chroot environment.  Some other tests may
    232230    fail because they depend on various kernel configuration options.</para>
    233231
  • packages.ent

    r38c03e1 rb1169eb  
    392392<!ENTITY less-fin-sbu "less than 0.1 SBU">
    393393
    394 <!ENTITY lfs-bootscripts-version "20240706">      <!-- Scripts depend on this format -->
     394<!ENTITY lfs-bootscripts-version "20240717">      <!-- Scripts depend on this format -->
    395395<!ENTITY lfs-bootscripts-size "BOOTSCRIPTS-SIZE KB">
    396396<!ENTITY lfs-bootscripts-url "&downloads-root;lfs-bootscripts-&lfs-bootscripts-version;.tar.xz">
Note: See TracChangeset for help on using the changeset viewer.