Author: bdubbs
Date: 2012-06-17 11:57:40 -0600 (Sun, 17 Jun 2012)
New Revision: 9883

Modified:
   trunk/BOOK/bootscripts/ChangeLog
   trunk/BOOK/bootscripts/lfs/init.d/mountfs
   trunk/BOOK/bootscripts/lfs/init.d/mountvirtfs
   trunk/BOOK/chapter01/changelog.xml
   trunk/BOOK/chapter06/automake.xml
   trunk/BOOK/chapter06/iproute2.xml
   trunk/BOOK/general.ent
   trunk/BOOK/packages.ent
Log:
Added a stronger note about automake teste time.

Updated boot scripts:
  Only mount /run in mountvirtfs if it is not already mounted
  (from an initrd).

  Force the /dev/shm->/run/shm symlink

  Skip making LVM virtual groups unavailable at shutdown
  because the / or swap partitions may be still in use.

Fix some whitespace in iproute2.


Modified: trunk/BOOK/bootscripts/ChangeLog
===================================================================
--- trunk/BOOK/bootscripts/ChangeLog    2012-06-11 00:18:58 UTC (rev 9882)
+++ trunk/BOOK/bootscripts/ChangeLog    2012-06-17 17:57:40 UTC (rev 9883)
@@ -1,3 +1,10 @@
+2012-06-17 Bruce Dubbs <[email protected]>
+   * Only mount /run in mountvirtfs if it is not already mounted
+     (from an initrd).
+   * Force the /dev/shm->/run/shm symlink
+   * Skip making LVM virtual groups unavailable at shutdown
+     because the / or swap partitions may be still in use.
+
 2012-05-30 Bruce Dubbs <[email protected]>
    * Copy all entries in /lib/udev/devices to /dev in mounvirtfs
 

Modified: trunk/BOOK/bootscripts/lfs/init.d/mountfs
===================================================================
--- trunk/BOOK/bootscripts/lfs/init.d/mountfs   2012-06-11 00:18:58 UTC (rev 
9882)
+++ trunk/BOOK/bootscripts/lfs/init.d/mountfs   2012-06-17 17:57:40 UTC (rev 
9883)
@@ -66,7 +66,8 @@
       evaluate_retval
 
       # Make all LVM volume groups unavailable, if appropriate
-      if [ -x /sbin/vgchange ]; then /sbin/vgchange -an > /dev/null; fi
+      # This fails if swap or / are on an LVM partition
+      #if [ -x /sbin/vgchange ]; then /sbin/vgchange -an > /dev/null; fi
       ;;
 
    *)

Modified: trunk/BOOK/bootscripts/lfs/init.d/mountvirtfs
===================================================================
--- trunk/BOOK/bootscripts/lfs/init.d/mountvirtfs       2012-06-11 00:18:58 UTC 
(rev 9882)
+++ trunk/BOOK/bootscripts/lfs/init.d/mountvirtfs       2012-06-17 17:57:40 UTC 
(rev 9883)
@@ -32,7 +32,10 @@
 case "${1}" in
    start)
       # Make sure /run/var is available before logging any messages
-      mount -n /run || failed=1
+      if ! mountpoint /sys >/dev/null; then
+         mount -n /run || failed=1
+      fi
+
       mkdir -p /run/var /run/lock /run/shm
       chmod 1777 /run/shm
 
@@ -56,7 +59,7 @@
       # Copy devices that Udev >= 155 doesn't handle to /dev
       cp -a /lib/udev/devices/* /dev
 
-      ln -s /run/shm /dev/shm
+      ln -sfn /run/shm /dev/shm
       
       (exit ${failed})
       evaluate_retval

Modified: trunk/BOOK/chapter01/changelog.xml
===================================================================
--- trunk/BOOK/chapter01/changelog.xml  2012-06-11 00:18:58 UTC (rev 9882)
+++ trunk/BOOK/chapter01/changelog.xml  2012-06-17 17:57:40 UTC (rev 9883)
@@ -37,6 +37,20 @@
 
 -->
     <listitem>
+      <para>2012-06-17</para>
+      <itemizedlist>
+         <listitem>
+           <para>[bdubbs] - Update rare issues in bootscripts when using LVM
+           or initramfs.</para>
+         </listitem>
+         <listitem>
+           <para>[bdubbs] - Add note about automake run time for tests. 
+           Fixes <ulink url="&lfs-ticket-root;3118">#3118</ulink>.</para>
+         </listitem>
+      </itemizedlist>
+    </listitem>
+
+    <listitem>
       <para>2012-06-10</para>
       <itemizedlist>
          <listitem>

Modified: trunk/BOOK/chapter06/automake.xml
===================================================================
--- trunk/BOOK/chapter06/automake.xml   2012-06-11 00:18:58 UTC (rev 9882)
+++ trunk/BOOK/chapter06/automake.xml   2012-06-17 17:57:40 UTC (rev 9883)
@@ -49,12 +49,13 @@
 
 <screen><userinput remap="make">make</userinput></screen>
 
+    <note><para>The tests take a very long time: over 30 SBUs.  Running
+    the tests is not recommended.</para></note>
+
     <para>To test the results, issue:</para>
 
 <screen><userinput remap="test">make check</userinput></screen>
 
-    <para>This takes a long time, about 10 SBUs.</para>
-
     <para>Install the package:</para>
 
 <screen><userinput remap="install">make install</userinput></screen>

Modified: trunk/BOOK/chapter06/iproute2.xml
===================================================================
--- trunk/BOOK/chapter06/iproute2.xml   2012-06-11 00:18:58 UTC (rev 9882)
+++ trunk/BOOK/chapter06/iproute2.xml   2012-06-17 17:57:40 UTC (rev 9883)
@@ -82,8 +82,7 @@
 
     <para>Install the package:</para>
 
-<screen><userinput remap="install">
-make DESTDIR=              \
+<screen><userinput remap="install">make DESTDIR=              \
      MANDIR=/usr/share/man \
      DOCDIR=/usr/share/doc/iproute2-&iproute2-version; 
install</userinput></screen>
 

Modified: trunk/BOOK/general.ent
===================================================================
--- trunk/BOOK/general.ent      2012-06-11 00:18:58 UTC (rev 9882)
+++ trunk/BOOK/general.ent      2012-06-17 17:57:40 UTC (rev 9883)
@@ -1,5 +1,5 @@
-<!ENTITY version "SVN-20120610">
-<!ENTITY releasedate "June 10, 2012">
+<!ENTITY version "SVN-20120617">
+<!ENTITY releasedate "June 17, 2012">
 <!ENTITY copyrightdate "1999-2012"><!-- jhalfs needs a literal dash, not 
&ndash; -->
 <!ENTITY milestone "7.2">
 <!ENTITY generic-version "development"> <!-- Use "development", "testing", or 
"x.y[-pre{x}]" -->

Modified: trunk/BOOK/packages.ent
===================================================================
--- trunk/BOOK/packages.ent     2012-06-11 00:18:58 UTC (rev 9882)
+++ trunk/BOOK/packages.ent     2012-06-17 17:57:40 UTC (rev 9883)
@@ -22,7 +22,7 @@
 <!ENTITY automake-md5 "036d79de6e443e02aec2be1df2b4f0ac">
 <!ENTITY automake-home "&gnu-software;automake/">
 <!ENTITY automake-ch6-du "28.8 MB">
-<!ENTITY automake-ch6-sbu "18.3 SBU">
+<!ENTITY automake-ch6-sbu "less than 0.1 SBU (without tests)">
 
 <!ENTITY bash-version "4.2">
 <!ENTITY bash-size "6,845 KB">
@@ -302,7 +302,7 @@
 <!ENTITY less-ch6-du "3.5 MB">
 <!ENTITY less-ch6-sbu "less than 0.1 SBU">
 
-<!ENTITY lfs-bootscripts-version "20120530">                 <!-- Scripts 
depend on this format -->
+<!ENTITY lfs-bootscripts-version "20120617">                 <!-- Scripts 
depend on this format -->
 <!ENTITY lfs-bootscripts-size "BOOTSCRIPTS-SIZE KB">         <!-- Updated in 
Makefile -->
 <!ENTITY lfs-bootscripts-url 
"&downloads-root;lfs-bootscripts-&lfs-bootscripts-version;.tar.bz2">
 <!ENTITY lfs-bootscripts-md5 "BOOTSCRIPTS-MD5SUM">           <!-- Updated in 
Makefile -->

-- 
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