Changeset 8518

Show
Ignore:
Timestamp:
04/11/08 13:48:05 (8 months ago)
Author:
bdubbs
Message:

Updated host requirments to check for symlinks

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/BOOK/chapter01/changelog.xml

    r8514 r8518  
    1 <?xml version="1.0" encoding="ISO-8859-1"?> 
     1e?xml version="1.0" encoding="ISO-8859-1"?> 
    22<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" 
    33  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ 
     
    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> 
     
    4959        <listitem> 
    5060          <para>[jhuntwork] - Added patch for 256-byte inode support in GRUB. 
    51          Fixes #2161.</para> 
     61          Fixes #2161.</para> 
    5262        </listitem> 
    5363      </itemizedlist> 
     
    95105        </listitem> 
    96106        <listitem> 
    97          <para>[ken] - Updated Kbd to 1.13.</para> 
     107          <para>[ken] - Updated Kbd to 1.13.</para> 
    98108        </listitem> 
    99109      </itemizedlist> 
     
    119129        <listitem> 
    120130          <para>[ken] - Updated Grep to 2.5.3, thanks to Matthew for the fix 
    121          for automated builds.</para> 
    122         </listitem> 
    123         <listitem> 
    124          <para>[ken] - Updated Flex to 2.5.34.</para> 
    125         </listitem> 
    126         <listitem> 
    127          <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> 
    128138        </listitem> 
    129139      </itemizedlist> 
  • trunk/BOOK/general.ent

    r8508 r8518  
    11<?xml version="1.0" encoding="ISO-8859-1"?> 
    2 <!ENTITY version "SVN-20080403"> 
    3 <!ENTITY releasedate "April 3, 2008"> 
     2<!ENTITY version "SVN-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}]" --> 
  • trunk/BOOK/prologue/hostreqs.xml

    r8453 r8518  
    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 
     140ls -l `which sh` 
    137141echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3- 
    138142bison --version | head -n1 
     143ls -l `which yacc` 
    139144bzip2 --version 2&gt;&amp;1 &lt; /dev/null | head -n1 | cut -d" " -f1,6- 
    140145echo -n "Coreutils: "; chown --version | head -n1 | cut -d")" -f2 
     
    142147find --version | head -n1 
    143148gawk --version | head -n1 
     149ls -l `which awk` 
    144150gcc --version | head -n1 
    145151/lib/libc.so.6 | head -n1 | cut -d" " -f1-7 
     
    151157sed --version | head -n1 
    152158tar --version | head -n1 
    153 makeinfo --version | head -n1</literal> 
     159makeinfo --version | head -n1 
     160 
     161</literal> 
    154162 
    155163EOF