Changeset 9720145


Ignore:
Timestamp:
05/11/2003 05:03:47 PM (21 years ago)
Author:
Timothy Bauscher <timothy@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.0, 6.1, 6.1.1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, v5_0, v5_1, v5_1_1, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
d5d42d2
Parents:
b8770e4e
Message:

Added the rest of Zack's patches. Totally missed them before.

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

Files:
1 added
9 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    rb8770e4e r9720145  
    4040<listitem><para>binutils-2.13.2-libc.patch</para></listitem>
    4141<listitem><para>coreutils-5.0</para></listitem>
     42<listitem><para>coreutils-5.0-uname.patch</para></listitem>
    4243<listitem><para>dejagnu-1.4.3</para></listitem>
    4344<listitem><para>expect-5.38</para></listitem>
     
    6768</itemizedlist>
    6869</para></listitem>
     70
     71<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Install Coreutils:
     72Fix some functionality of the uname command with a patch.</para></listitem>
     73
     74<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing Net-tools:
     75Just do regular old "make install" instead of "make update". The latter
     76works fine now.</para></listitem>
     77
     78<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing GCC:
     79After installation, remove /usr/include/libiberty.h. It is not used
     80outside of the GCC build tree.</para></listitem>
    6981
    7082<listitem><para>May 11th, 2003 [winkie]: Upgraded to Bash 2.05b and
  • chapter04/packages.xml

    rb8770e4e r9720145  
    1515&c4-bzip2;
    1616&c4-coreutils;
     17&c4-coreutils-patch;
    1718&c4-dejagnu;
    1819&c4-diffutils;
  • chapter05/bzip2-inst.xml

    rb8770e4e r9720145  
    1010
    1111<para><screen><userinput>make -f Makefile-libbz2_so
     12make clean
    1213make
    1314make check
  • chapter06/bzip2-inst.xml

    rb8770e4e r9720145  
    66<para>Begin compiling the package:</para>
    77
    8 <para><screen><userinput>make -f Makefile-libbz2_so</userinput></screen></para>
     8<para><screen><userinput>make -f Makefile-libbz2_so &amp;&amp;
     9make clean</userinput></screen></para>
    910
    1011<para>The <emphasis>-f</emphasis> flag will cause bzip2 to be built
  • chapter06/coreutils-inst.xml

    rb8770e4e r9720145  
    44<title>Installation of Coreutils</title>
    55
    6 <para><screen><userinput>./configure --prefix=/usr
    7 make
    8 make install
    9 mv /usr/bin/{basename,cat,chgrp,chmod,chown,cp,dd,df} /bin &amp;&amp;
     6<para>Normally the functionality of uname is somewhat broken, in that
     7the -p switch always returns "unknown". This patch fixes that behaviour:</para>
     8
     9<para><screen><userinput>patch -Np1 -i ../coreutils-&coreutils-patch-version;.patch</userinput></screen></para>
     10
     11<para>Prepare Coreutils to be compiled:</para>
     12
     13<para><screen><userinput>./configure --prefix=/usr</userinput></screen></para>
     14
     15<para>Continue with compiling the package:</para>
     16
     17<para><screen><userinput>make</userinput></screen></para>
     18
     19<para>Install the package:</para>
     20
     21<para><screen><userinput>make install</userinput></screen></para>
     22
     23<para>Move files to their proper locations:</para>
     24
     25<para><screen><userinput>mv /usr/bin/{basename,cat,chgrp,chmod,chown,cp,dd,df} /bin &amp;&amp;
    1026mv /usr/bin/{dir,dircolors,du,date,echo,false,head} /bin &amp;&amp;
    1127mv /usr/bin/{install,ln,ls,mkdir,mkfifo,mknod,mv,pwd} /bin &amp;&amp;
    1228mv /usr/bin/{rm,rmdir,shred,sync,sleep,stty,su,test} /bin &amp;&amp;
    1329mv /usr/bin/{touch,true,uname,vdir} /bin
    14 mv /usr/bin/chroot /usr/sbin
    15 ln -s test /bin/[
     30mv /usr/bin/chroot /usr/sbin</userinput></screen></para>
     31
     32<para>Finally, create a few necessary symlinks</para>
     33
     34<para><screen><userinput>ln -s test /bin/[
    1635ln -s ../../bin/install /usr/bin</userinput></screen></para>
    17 
    1836
    1937</sect2>
  • chapter06/gcc-inst.xml

    rb8770e4e r9720145  
    7676
    7777<para><screen><userinput>rm /usr/lib/libiberty.a</userinput></screen></para>
     78<para><screen><userinput>rm /usr/include/libiberty.h</userinput></screen></para>
    7879
    7980</sect2>
  • chapter06/nettools-inst.xml

    rb8770e4e r9720145  
    2626<para>Finish installing the package:</para>
    2727
    28 <para><screen><userinput>make update</userinput></screen></para>
    29 
    30 <para>The <emphasis>update</emphasis> option to <userinput>make</userinput>
    31 works similarly to the <emphasis>install</emphasis> option, with one
    32 exception: it doesn't make backups of files it's replacing.</para>
    33 
    34 <para>If you decide to reinstall this package at some point in the
    35 future, a <userinput>make update</userinput> won't backup all the files
    36 from a previous net-tools installation.</para>
     28<para><screen><userinput>make install</userinput></screen></para>
    3729
    3830</sect2>
  • chapter06/zlib-inst.xml

    rb8770e4e r9720145  
    1515&nbsp;&nbsp;&nbsp;&nbsp;./configure --prefix=/usr --shared</userinput></screen></para>
    1616
     17         make clean
     18         ./configure --prefix=/usr
     19         make
     20         make install
     21
    1722<para>The <emphasis>-fPIC</emphasis> flag helps to assure
    1823quality in the dynamic zlib library.</para>
    1924
    20 <para>Some packages expect a static zlib library to be present
    21 on the system. To satisfy those programs, compile both the
    22 shared and static libraries:</para>
    23 
    24 <para><screen><userinput>make LIBS="libz.so.1.1.4 libz.a"</userinput></screen></para>
     25<para><screen><userinput>make</userinput></screen></para>
    2526
    2627<para>Install the libraries:</para>
    2728
    28 <para><screen><userinput>make LIBS="libz.so.1.1.4 libz.a" install</userinput></screen></para>
     29<para><screen><userinput>make install &amp;&amp;
     30make clean &amp;&amp;
     31./configure --prefix=/usr &amp;&amp;
     32make &amp;&amp;
     33make install</userinput></screen></para>
    2934
    3035<para>The shared zlib library should be installed in the
  • entities/coreutils.ent

    rb8770e4e r9720145  
    11<!ENTITY c4-coreutils SYSTEM "../chapter04/coreutils.xml">
     2<!ENTITY c4-coreutils-patch SYSTEM "../chapter04/coreutils-patch.xml">
    23
    34<!ENTITY c5-coreutils SYSTEM "../chapter05/coreutils.xml">
     
    1415
    1516<!ENTITY coreutils-version "5.0">
    16 <!ENTITY coreutils-depversion "3.1.0">
    17 <!ENTITY coreutils-contversion "3.1.1">
     17<!ENTITY coreutils-depversion "">
     18<!ENTITY coreutils-contversion "">
    1819<!ENTITY coreutils-size "1,831 KB">
    19 <!ENTITY coreutils-patch-size "1 KB">
    20 <!ENTITY coreutils-patch-version "3.1.1-3">
    2120<!ENTITY coreutils-dir "coreutils-&coreutils-version;">
    2221<!ENTITY coreutils-package "coreutils-&coreutils-version;.tar.bz2">
     22<!ENTITY coreutils-patch-size "1 KB">
     23<!ENTITY coreutils-patch-version "5.0-uname">
    2324
    2425<!ENTITY coreutils-compsize-static "17 MB">
Note: See TracChangeset for help on using the changeset viewer.