Changeset d4fdde6
- Timestamp:
- 05/31/2020 07:38:18 PM (3 years ago)
- Branches:
- multilib-10.1, multilib-before-cross
- Children:
- 37e35d2, f26ffa96
- Parents:
- 0e9d60e
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
chapter01/changelog.xml
r0e9d60e rd4fdde6 46 46 --> 47 47 <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 << EOF, and 54 explicitely defining stdin (with help from thomas and bdubbs).</para> 55 </listitem> 56 </itemizedlist> 57 </listitem> 58 59 <listitem> 48 60 <para>2020-05-29</para> 49 61 <itemizedlist> -
chapter06/bash.xml
r0e9d60e rd4fdde6 81 81 class="username">tester</systemitem> user:</para> 82 82 83 <screen><userinput remap="test">su tester -c "PATH=$PATH make tests"</userinput></screen> 83 <screen><userinput remap="test">su tester << EOF 84 PATH=$PATH make tests < $(tty) 85 EOF</userinput></screen> 84 86 85 87 <para>The <systemitem class="username">tester</systemitem> -
chapter06/coreutils.xml
r0e9d60e rd4fdde6 117 117 user <systemitem class="username">tester</systemitem> a part of it:</para> 118 118 119 <screen><userinput remap="test">echo "dummy:x:10 00:tester" >> /etc/group</userinput></screen>119 <screen><userinput remap="test">echo "dummy:x:102:tester" >> /etc/group</userinput></screen> 120 120 121 121 <para>Fix some of the permissions so that the non-root user can compile and -
chapter06/createfiles.xml
r0e9d60e rd4fdde6 40 40 software has been installed:</para> 41 41 42 <screen><userinput>ln -sv /tools/bin/{bash,cat,chmod,dd,echo, ln,mkdir,pwd,rm,stty,touch} /bin42 <screen><userinput>ln -sv /tools/bin/{bash,cat,chmod,dd,echo,false,ln,ls,mkdir,pwd,rm,stty,touch} /bin 43 43 ln -sv /tools/bin/{env,install,perl,printf} /usr/bin 44 44 ln -sv /tools/lib/libgcc_s.so{,.1} /usr/lib 45 45 ln -sv /tools/lib/libstdc++.{a,so{,.6}} /usr/lib 46 ln -sv /tools/lib/libfl.so* /usr/lib47 46 48 47 ln -sv bash /bin/sh … … 195 194 <listitem> 196 195 <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 to206 build enhanced versions of ar and ranlib.</para>207 196 </listitem> 208 197 </varlistentry> … … 368 357 user here and delete this account at the end of the chapter.</para> 369 358 370 <screen><userinput>echo "tester:x: 101:101::/home/tester:/bin/bash" >> /etc/passwd359 <screen><userinput>echo "tester:x:$(ls -n $(tty) | cut -d" " -f3):101::/home/tester:/bin/bash" >> /etc/passwd 371 360 echo "tester:x:101:" >> /etc/group 372 361 install -o tester -d /home/tester</userinput></screen> -
general.ent
r0e9d60e rd4fdde6 1 <!ENTITY version "SVN-202005 29">1 <!ENTITY version "SVN-20200531"> 2 2 <!ENTITY short-version "svn"> <!-- Used below in &blfs-book; 3 3 Change to x.y for release but not -rc releases --> 4 4 <!ENTITY generic-version "development"> <!-- Use "development" or "x.y[-pre{x}]" --> 5 5 6 <!ENTITY versiond "202005 29-systemd">6 <!ENTITY versiond "20200531-systemd"> 7 7 <!ENTITY short-versiond "systemd"> 8 8 <!ENTITY generic-versiond "systemd"> 9 9 10 <!ENTITY releasedate "May 29th, 2020">10 <!ENTITY releasedate "May 31st, 2020"> 11 11 12 12 <!ENTITY copyrightdate "1999-2020"><!-- jhalfs needs a literal dash, not – -->
Note:
See TracChangeset
for help on using the changeset viewer.