Changeset 0e9d60e
- Timestamp:
- 05/30/2020 09:12:12 PM (3 years ago)
- Branches:
- multilib-10.1, multilib-before-cross
- Children:
- d4fdde6
- Parents:
- 777c890
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
appendices/dependencies.xml
r777c890 r0e9d60e 781 781 782 782 <seglistitem> 783 <seg> None</seg>783 <seg>Binutils, IProute2, Kbd, Kmod, and Man-DB</seg> 784 784 </seglistitem> 785 785 </segmentedlist> … … 838 838 <seg>Bash, Binutils, Coreutils, Diffutils, Findutils, Gawk, GCC, 839 839 Gettext, Glibc, GMP, Grep, M4, Make, MPC, MPFR, Patch, Perl, Sed, Tar, 840 and Texinfo</seg>840 Texinfo, and Zstd</seg> 841 841 </seglistitem> 842 842 </segmentedlist> … … 2787 2787 2788 2788 <seglistitem> 2789 <seg> None</seg>2789 <seg>GCC</seg> 2790 2790 </seglistitem> 2791 2791 </segmentedlist> -
chapter05/chapter05.xml
r777c890 r0e9d60e 30 30 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bash.xml"/> 31 31 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bison.xml"/> 32 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="flex.xml"/>33 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bzip2.xml"/>34 32 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="coreutils.xml"/> 35 33 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="diffutils.xml"/> -
chapter06/chapter06.xml
r777c890 r0e9d60e 29 29 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bzip2.xml"/> 30 30 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="xz.xml"/> 31 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="zstd.xml"/> 31 32 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="file.xml"/> 32 33 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="readline.xml"/> 33 34 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="m4.xml"/> 34 35 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bc.xml"/> 36 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="flex.xml"/> 35 37 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="binutils.xml"/> 36 38 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gmp.xml"/> … … 50 52 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gettext.xml"/> 51 53 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bison.xml"/> 52 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="flex.xml"/>53 54 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="grep.xml"/> 54 55 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bash.xml"/> … … 79 80 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="less.xml"/> 80 81 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gzip.xml"/> 81 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="zstd.xml"/>82 82 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="iproute2.xml"/> 83 83 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="kbd.xml"/> -
chapter06/coreutils.xml
r777c890 r0e9d60e 117 117 user <systemitem class="username">tester</systemitem> a part of it:</para> 118 118 119 <screen><userinput remap="test">echo " tester:x:1000:nogroup" >> /etc/group</userinput></screen>119 <screen><userinput remap="test">echo "dummy:x:1000:tester" >> /etc/group</userinput></screen> 120 120 121 121 <para>Fix some of the permissions so that the non-root user can compile and … … 133 133 passes if run at the end of this chapter. The test program tty.sh is 134 134 also known to fail.</para> 135 --> 135 136 136 137 <para>Remove the temporary group:</para> 137 138 138 139 <screen><userinput remap="test">sed -i '/dummy/d' /etc/group</userinput></screen> 139 -->140 140 <para>Install the package:</para> 141 141 -
chapter06/createfiles.xml
r777c890 r0e9d60e 369 369 370 370 <screen><userinput>echo "tester:x:101:101::/home/tester:/bin/bash" >> /etc/passwd 371 echo "tester:x:101: dummy" >> /etc/group371 echo "tester:x:101:" >> /etc/group 372 372 install -o tester -d /home/tester</userinput></screen> 373 373 -
chapter06/kbd.xml
r777c890 r0e9d60e 61 61 <para>Prepare Kbd for compilation:</para> 62 62 63 <screen><userinput remap="configure"> PKG_CONFIG_PATH=/tools/lib/pkgconfig./configure --prefix=/usr --disable-vlock</userinput></screen>63 <screen><userinput remap="configure">./configure --prefix=/usr --disable-vlock</userinput></screen> 64 64 65 65 <variablelist> -
chapter06/make.xml
r777c890 r0e9d60e 57 57 results, issue:</para> 58 58 59 <screen><userinput remap="test">make PERL5LIB=$PWD/tests/check</userinput></screen>59 <screen><userinput remap="test">make check</userinput></screen> 60 60 61 61 <para>Install the package:</para> -
chapter06/revisedchroot.xml
r777c890 r0e9d60e 52 52 53 53 <screen><userinput>rm -f /usr/lib/lib{bfd,opcodes}.a 54 rm -f /usr/lib/libctf{,-nobfd}.a 54 55 rm -f /usr/lib/libbz2.a 55 56 rm -f /usr/lib/lib{com_err,e2p,ext2fs,ss}.a -
chapter06/sed.xml
r777c890 r0e9d60e 57 57 58 58 <screen><userinput remap="test">chown -Rv tester . 59 su -c "PATH=$PATH make check"</userinput></screen>59 su tester -c "PATH=$PATH make check"</userinput></screen> 60 60 61 61 <para>Install the package and its documentation:</para>
Note:
See TracChangeset
for help on using the changeset viewer.