Author: jhuntwork
Date: 2008-04-22 10:26:58 -0600 (Tue, 22 Apr 2008)
New Revision: 8528

Modified:
   branches/jh/BOOK/chapter01/changelog.xml
   branches/jh/BOOK/general.ent
   branches/jh/BOOK/prologue/bookinfo.xml
   branches/jh/BOOK/prologue/hostreqs.xml
Log:
Merged r8517, r8518, r8519, r8520 & r8521 from trunk to jh branch

Modified: branches/jh/BOOK/chapter01/changelog.xml
===================================================================
--- branches/jh/BOOK/chapter01/changelog.xml    2008-04-22 15:27:23 UTC (rev 
8527)
+++ branches/jh/BOOK/chapter01/changelog.xml    2008-04-22 16:26:58 UTC (rev 
8528)
@@ -37,6 +37,16 @@
 -->
 
     <listitem>
+      <para>2008-04-11</para>
+      <itemizedlist>
+        <listitem>
+          <para>[bdubbs] - Updated host requirments to check for
+          symbolic links from sh, awk, and yacc.</para>
+        </listitem>
+      </itemizedlist>
+    </listitem>
+
+    <listitem>
       <para>2008-04-03</para>
       <itemizedlist>
         <listitem>
@@ -46,6 +56,10 @@
         <listitem>
           <para>[jhuntwork] - Upgraded to iana-etc-2.30. Fixes #2174.</para>
         </listitem>
+        <listitem>
+          <para>[jhuntwork] - Added patch for 256-byte inode support in GRUB.
+          Fixes #2161.</para>
+        </listitem>
       </itemizedlist>
     </listitem>
 
@@ -90,7 +104,7 @@
           <para>[ken] - Corrected typo in name of ru-ms keymap.</para>
         </listitem>
         <listitem>
-         <para>[ken] - Updated Kbd to 1.13.</para>
+          <para>[ken] - Updated Kbd to 1.13.</para>
         </listitem>
       </itemizedlist>
     </listitem>
@@ -114,13 +128,13 @@
       <itemizedlist>
         <listitem>
           <para>[ken] - Updated Grep to 2.5.3, thanks to Matthew for the fix
-         for automated builds.</para>
+          for automated builds.</para>
         </listitem>
         <listitem>
-         <para>[ken] - Updated Flex to 2.5.34.</para>
+          <para>[ken] - Updated Flex to 2.5.34.</para>
         </listitem>
         <listitem>
-         <para>[ken] - Updated Module-Init-Tools to 3.4.</para>
+          <para>[ken] - Updated Module-Init-Tools to 3.4.</para>
         </listitem>
       </itemizedlist>
     </listitem>

Modified: branches/jh/BOOK/general.ent
===================================================================
--- branches/jh/BOOK/general.ent        2008-04-22 15:27:23 UTC (rev 8527)
+++ branches/jh/BOOK/general.ent        2008-04-22 16:26:58 UTC (rev 8528)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
-<!ENTITY version "SVN-JH-20080403">
-<!ENTITY releasedate "April 3, 2008">
+<!ENTITY version "SVN-JH-20080412">
+<!ENTITY releasedate "April 12, 2008">
 <!ENTITY milestone "7.0">
 <!ENTITY generic-version "development"> <!-- Use "development", "testing", or 
"x.y[-pre{x}]" -->
 

Modified: branches/jh/BOOK/prologue/bookinfo.xml
===================================================================
--- branches/jh/BOOK/prologue/bookinfo.xml      2008-04-22 15:27:23 UTC (rev 
8527)
+++ branches/jh/BOOK/prologue/bookinfo.xml      2008-04-22 16:26:58 UTC (rev 
8528)
@@ -19,7 +19,7 @@
 
 
   <copyright id="copyright">
-    <year>1999&ndash;2007</year>
+    <year>1999&ndash;2008</year>
     <holder>Gerard Beekmans</holder>
   </copyright>
 

Modified: branches/jh/BOOK/prologue/hostreqs.xml
===================================================================
--- branches/jh/BOOK/prologue/hostreqs.xml      2008-04-22 15:27:23 UTC (rev 
8527)
+++ branches/jh/BOOK/prologue/hostreqs.xml      2008-04-22 16:26:58 UTC (rev 
8528)
@@ -21,7 +21,8 @@
   <itemizedlist spacing="compact">
 
     <listitem>
-      <para><emphasis role="strong">Bash-2.05a</emphasis></para>
+      <para><emphasis role="strong">Bash-2.05a</emphasis> (/bin/sh
+      must be a symbolic or hard link to bash)</para>
     </listitem>
 
     <listitem>
@@ -31,7 +32,8 @@
     </listitem>
 
     <listitem>
-      <para><emphasis role="strong">Bison-1.875</emphasis></para>
+      <para><emphasis role="strong">Bison-1.875</emphasis> (/usr/bin/yacc
+      must be a link to bison or small script that executes bison)</para>
     </listitem>
 
     <listitem>
@@ -52,7 +54,8 @@
     </listitem>
 
     <listitem>
-      <para><emphasis role="strong">Gawk-3.0</emphasis></para>
+      <para><emphasis role="strong">Gawk-3.0</emphasis> (/usr/bin/awk
+      must be a link to gawk)</para>
     </listitem>
 
     <listitem>
@@ -134,13 +137,18 @@
 # Simple script to list version numbers of critical development tools
 
 bash --version | head -n1 | cut -d" " -f2-4
+echo "/bin/sh -> `readlink -f /bin/sh`"
 echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3-
 bison --version | head -n1
+if [ -e /usr/bin/yacc ]; then echo "/usr/bin/yacc -> `readlink -f 
/usr/bin/yacc`"; 
+  else echo "yacc not found"; fi
 bzip2 --version 2&gt;&amp;1 &lt; /dev/null | head -n1 | cut -d" " -f1,6-
 echo -n "Coreutils: "; chown --version | head -n1 | cut -d")" -f2
 diff --version | head -n1
 find --version | head -n1
 gawk --version | head -n1
+if [ -e /usr/bin/awk ]; then echo "/usr/bin/awk -> `readlink -f 
/usr/bin/awk`"; 
+  else echo "awk not found"; fi
 gcc --version | head -n1
 /lib/libc.so.6 | head -n1 | cut -d" " -f1-7
 grep --version | head -n1
@@ -150,8 +158,8 @@
 patch --version | head -n1
 sed --version | head -n1
 tar --version | head -n1
-makeinfo --version | head -n1</literal>
-
+makeinfo --version | head -n1
+</literal>
 EOF
 
 bash version-check.sh</userinput></screen>

-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-book
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page

Reply via email to