Changeset acbde0b


Ignore:
Timestamp:
04/22/2008 04:26:58 PM (16 years ago)
Author:
Jeremy Huntwork <jhuntwork@…>
Children:
8051b535
Parents:
c8dcc44
Message:

Merged r8517, r8518, r8519, r8520 & r8521 from trunk to jh branch

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    rc8dcc44 racbde0b  
    3838
    3939    <listitem>
     40      <para>2008-04-11</para>
     41      <itemizedlist>
     42        <listitem>
     43          <para>[bdubbs] - Updated host requirments to check for
     44          symbolic links from sh, awk, and yacc.</para>
     45        </listitem>
     46      </itemizedlist>
     47    </listitem>
     48
     49    <listitem>
    4050      <para>2008-04-03</para>
    4151      <itemizedlist>
     
    4656        <listitem>
    4757          <para>[jhuntwork] - Upgraded to iana-etc-2.30. Fixes #2174.</para>
     58        </listitem>
     59        <listitem>
     60          <para>[jhuntwork] - Added patch for 256-byte inode support in GRUB.
     61          Fixes #2161.</para>
    4862        </listitem>
    4963      </itemizedlist>
     
    91105        </listitem>
    92106        <listitem>
    93           <para>[ken] - Updated Kbd to 1.13.</para>
     107          <para>[ken] - Updated Kbd to 1.13.</para>
    94108        </listitem>
    95109      </itemizedlist>
     
    115129        <listitem>
    116130          <para>[ken] - Updated Grep to 2.5.3, thanks to Matthew for the fix
    117           for automated builds.</para>
    118         </listitem>
    119         <listitem>
    120           <para>[ken] - Updated Flex to 2.5.34.</para>
    121         </listitem>
    122         <listitem>
    123           <para>[ken] - Updated Module-Init-Tools to 3.4.</para>
     131          for automated builds.</para>
     132        </listitem>
     133        <listitem>
     134          <para>[ken] - Updated Flex to 2.5.34.</para>
     135        </listitem>
     136        <listitem>
     137          <para>[ken] - Updated Module-Init-Tools to 3.4.</para>
    124138        </listitem>
    125139      </itemizedlist>
  • general.ent

    rc8dcc44 racbde0b  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    2 <!ENTITY version "SVN-JH-20080403">
    3 <!ENTITY releasedate "April 3, 2008">
     2<!ENTITY version "SVN-JH-20080412">
     3<!ENTITY releasedate "April 12, 2008">
    44<!ENTITY milestone "7.0">
    55<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->
  • prologue/bookinfo.xml

    rc8dcc44 racbde0b  
    2020
    2121  <copyright id="copyright">
    22     <year>1999&ndash;2007</year>
     22    <year>1999&ndash;2008</year>
    2323    <holder>Gerard Beekmans</holder>
    2424  </copyright>
  • prologue/hostreqs.xml

    rc8dcc44 racbde0b  
    2222
    2323    <listitem>
    24       <para><emphasis role="strong">Bash-2.05a</emphasis></para>
     24      <para><emphasis role="strong">Bash-2.05a</emphasis> (/bin/sh
     25      must be a symbolic or hard link to bash)</para>
    2526    </listitem>
    2627
     
    3233
    3334    <listitem>
    34       <para><emphasis role="strong">Bison-1.875</emphasis></para>
     35      <para><emphasis role="strong">Bison-1.875</emphasis> (/usr/bin/yacc
     36      must be a link to bison or small script that executes bison)</para>
    3537    </listitem>
    3638
     
    5355
    5456    <listitem>
    55       <para><emphasis role="strong">Gawk-3.0</emphasis></para>
     57      <para><emphasis role="strong">Gawk-3.0</emphasis> (/usr/bin/awk
     58      must be a link to gawk)</para>
    5659    </listitem>
    5760
     
    135138
    136139bash --version | head -n1 | cut -d" " -f2-4
     140echo "/bin/sh -> `readlink -f /bin/sh`"
    137141echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3-
    138142bison --version | head -n1
     143if [ -e /usr/bin/yacc ]; then echo "/usr/bin/yacc -> `readlink -f /usr/bin/yacc`";
     144  else echo "yacc not found"; fi
    139145bzip2 --version 2&gt;&amp;1 &lt; /dev/null | head -n1 | cut -d" " -f1,6-
    140146echo -n "Coreutils: "; chown --version | head -n1 | cut -d")" -f2
     
    142148find --version | head -n1
    143149gawk --version | head -n1
     150if [ -e /usr/bin/awk ]; then echo "/usr/bin/awk -> `readlink -f /usr/bin/awk`";
     151  else echo "awk not found"; fi
    144152gcc --version | head -n1
    145153/lib/libc.so.6 | head -n1 | cut -d" " -f1-7
     
    151159sed --version | head -n1
    152160tar --version | head -n1
    153 makeinfo --version | head -n1</literal>
    154 
     161makeinfo --version | head -n1
     162</literal>
    155163EOF
    156164
Note: See TracChangeset for help on using the changeset viewer.