[Clfs-commits] [Cross-LFS]Cross-LFS Book branch, master, updated. clfs-2.0.0-417-ge96c16e

git git at cross-lfs.org
Sat Oct 5 22:07:09 PDT 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cross-LFS Book".

The branch, master has been updated
       via  e96c16ecde1c394af11dc5ea0a73f1266a7d08dc (commit)
       via  c6b94dad69e13bd1f515690874e7f189a2bdbbad (commit)
       via  58a30f90013099345603ac3180ff2614c92f7887 (commit)
      from  97c391c464d97721563c7f872b154ce5fab6b7c8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit e96c16ecde1c394af11dc5ea0a73f1266a7d08dc
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Sun Oct 6 00:06:58 2013 -0500

    Add master changelog entry for umount of /dev/shm in reboot of the-end section.

diff --git a/BOOK/introduction/common/changelog.xml b/BOOK/introduction/common/changelog.xml
index 7e417bf..493c35a 100644
--- a/BOOK/introduction/common/changelog.xml
+++ b/BOOK/introduction/common/changelog.xml
@@ -57,6 +57,15 @@
     </listitem>
 -->
     <listitem>
+      <para>06 October 2013</para>
+      <itemizedlist>
+        <listitem>
+          <para>[William Harrington] - Fix shm umount during end section reboot.</para>
+        </listitem>
+      </itemizedlist>
+    </listitem>
+
+    <listitem>
       <para>24 September 2013</para>
       <itemizedlist>
         <listitem>

commit c6b94dad69e13bd1f515690874e7f189a2bdbbad
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Sun Oct 6 00:06:35 2013 -0500

    Fix umount command for /dev/shm. It should be almost like kernfs mount of /dev/shm as in the chroot section.

diff --git a/BOOK/the-end/reboot.xml b/BOOK/the-end/reboot.xml
index e1636af..37718cf 100644
--- a/BOOK/the-end/reboot.xml
+++ b/BOOK/the-end/reboot.xml
@@ -37,7 +37,15 @@
   <para>Then unmount the virtual file systems:</para>
 
 <screen><userinput>umount ${CLFS}/dev/pts
-umount ${CLFS}/dev/shm
+
+if [ -h ${CLFS}/dev/shm ]; then
+  link=$(readlink ${CLFS}/dev/shm)
+  umount -v ${CLFS}/$link
+  unset link
+else
+  umount -v ${CLFS}/dev/shm
+fi
+
 umount ${CLFS}/dev
 umount ${CLFS}/proc
 umount ${CLFS}/sys</userinput></screen>

commit 58a30f90013099345603ac3180ff2614c92f7887
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Sun Oct 6 00:05:55 2013 -0500

    Update date.

diff --git a/BOOK/general.ent b/BOOK/general.ent
index c719ed0..9b572d3 100644
--- a/BOOK/general.ent
+++ b/BOOK/general.ent
@@ -2,7 +2,7 @@
 
 <!ENTITY month "10"> <!-- Use two digits -->
 <!ENTITY month_name "October">
-<!ENTITY day "01"> <!-- Use two digits -->
+<!ENTITY day "06"> <!-- Use two digits -->
 <!ENTITY year "2013"> <!-- Use four digits -->
 
 <!ENTITY releasedate "&month_name; &day;, &year;">

-----------------------------------------------------------------------

Summary of changes:
 BOOK/general.ent                       |    2 +-
 BOOK/introduction/common/changelog.xml |    9 +++++++++
 BOOK/the-end/reboot.xml                |   10 +++++++++-
 3 files changed, 19 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Cross-LFS Book



More information about the Clfs-commits mailing list