Changeset 811b5a39


Ignore:
Timestamp:
03/31/2021 10:41:39 AM (3 years ago)
Author:
Xℹ Ruoyao <xry111@…>
Branches:
ml-11.0, multilib
Children:
6dfcfecc
Parents:
6451cd1
git-author:
Thomas Trepl <thomas@…> (05/31/2020 07:38:18 PM)
git-committer:
Xℹ Ruoyao <xry111@…> (03/31/2021 10:41:39 AM)
Message:

MultiLib: Merge changes 11880:HEAD

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

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r6451cd1 r811b5a39  
    4646    -->
    4747    <listitem>
     48      <para>2020-05-31</para>
     49      <itemizedlist>
     50        <listitem>
     51          <para>[pierre] - Fix bash tests: add a couple of symlinks
     52          from /bin to /tools, create the tester user with the uid of
     53          the tty owner, run the bash tests with su &lt;&lt; EOF, and
     54          explicitely defining stdin (with help from thomas and bdubbs).</para>
     55        </listitem>
     56      </itemizedlist>
     57    </listitem>
     58
     59    <listitem>
    4860      <para>2020-05-29</para>
    4961      <itemizedlist>
  • chapter06/bash.xml

    r6451cd1 r811b5a39  
    8181    class="username">tester</systemitem> user:</para>
    8282
    83 <screen><userinput remap="test">su tester -c "PATH=$PATH make tests"</userinput></screen>
     83<screen><userinput remap="test">su tester &lt;&lt; EOF
     84PATH=$PATH make tests &lt; $(tty)
     85EOF</userinput></screen>
    8486
    8587    <para>The <systemitem class="username">tester</systemitem>
  • chapter06/coreutils.xml

    r6451cd1 r811b5a39  
    117117    user <systemitem class="username">tester</systemitem> a part of it:</para>
    118118
    119 <screen><userinput remap="test">echo "dummy:x:1000:tester" &gt;&gt; /etc/group</userinput></screen>
     119<screen><userinput remap="test">echo "dummy:x:102:tester" &gt;&gt; /etc/group</userinput></screen>
    120120
    121121    <para>Fix some of the permissions so that the non-root user can compile and
  • chapter06/createfiles.xml

    r6451cd1 r811b5a39  
    4040  software has been installed:</para>
    4141
    42 <screen><userinput>ln -sv /tools/bin/{bash,cat,chmod,dd,echo,ln,mkdir,pwd,rm,stty,touch} /bin
     42<screen><userinput>ln -sv /tools/bin/{bash,cat,chmod,dd,echo,false,ln,ls,mkdir,pwd,rm,stty,touch} /bin
    4343ln -sv /tools/bin/{env,install,perl,printf}         /usr/bin
    4444ln -sv /tools/lib/libgcc_s.so{,.1}                  /usr/lib
    4545ln -sv /tools/lib/libstdc++.{a,so{,.6}}             /usr/lib
    46 ln -sv /tools/lib/libfl.so*                         /usr/lib
    4746
    4847ln -sv bash /bin/sh
     
    195194      <listitem>
    196195        <para>Many shell scripts hard-code <filename>/bin/sh</filename>.</para>
    197       </listitem>
    198     </varlistentry>
    199 
    200     <varlistentry>
    201       <term>
    202         <parameter><filename>/usr/lib/libfl.so*</filename></parameter>
    203       </term>
    204       <listitem>
    205         <para>This link allows binutils to find the flex library, and to
    206         build enhanced versions of ar and ranlib.</para>
    207196      </listitem>
    208197    </varlistentry>
     
    368357  user here and delete this account at the end of the chapter.</para>
    369358
    370 <screen><userinput>echo "tester:x:101:101::/home/tester:/bin/bash" &gt;&gt; /etc/passwd
     359<screen><userinput>echo "tester:x:$(ls -n $(tty) | cut -d" " -f3):101::/home/tester:/bin/bash" &gt;&gt; /etc/passwd
    371360echo "tester:x:101:" &gt;&gt; /etc/group
    372361install -o tester -d /home/tester</userinput></screen>
  • general.ent

    r6451cd1 r811b5a39  
    1 <!ENTITY version         "SVN-20200529">
     1<!ENTITY version         "SVN-20200531">
    22<!ENTITY short-version   "svn">  <!-- Used below in &blfs-book;
    33                                      Change to x.y for release but not -rc releases -->
    44<!ENTITY generic-version "development"> <!-- Use "development"  or "x.y[-pre{x}]" -->
    55
    6 <!ENTITY versiond        "20200529-systemd">
     6<!ENTITY versiond        "20200531-systemd">
    77<!ENTITY short-versiond  "systemd">
    88<!ENTITY generic-versiond "systemd">
    99
    10 <!ENTITY releasedate     "May 29th, 2020">
     10<!ENTITY releasedate     "May 31st, 2020">
    1111
    1212<!ENTITY copyrightdate   "1999-2020"><!-- jhalfs needs a literal dash, not &ndash; -->
Note: See TracChangeset for help on using the changeset viewer.