[Clfs-commits] [Cross-LFS]Cross-LFS Book branch, master, updated. clfs-2.0.0-209-gca6350c

git git at cross-lfs.org
Sun Aug 4 13:00:43 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  ca6350c1e97577fb8ffdd34f9e33dd49b0c5e5ce (commit)
       via  ceb1b8f35f021670859478a2cb574cbbbb2d4058 (commit)
       via  e2e6aae80ea89a386c133a11b12e39055b78097f (commit)
       via  019605fd91345e03cf77fe5ceb53a31bba1f9b6e (commit)
      from  a5e06c00881bf3f784af3bbcc0f055986a90bcd5 (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 ca6350c1e97577fb8ffdd34f9e33dd49b0c5e5ce
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Sun Aug 4 15:00:40 2013 -0500

    Add boot method shadow entry to master changelog for c_cv_func_setpgrp_void.

diff --git a/BOOK/introduction/common/changelog.xml b/BOOK/introduction/common/changelog.xml
index 208570c..a0f84b2 100644
--- a/BOOK/introduction/common/changelog.xml
+++ b/BOOK/introduction/common/changelog.xml
@@ -44,6 +44,10 @@
         <listitem>
           <para>[William Harrington] - Update boot method KMOD to support xz and zlib.</para>
         </listitem>
+        <listitem>
+          <para>[William Harrington] - Remove unneeded config cache entry for c_cv_func_setpgrp_void during boot method shadow cross compilation.</para>
+        </listitem>
+
       </itemizedlist>
     </listitem>
 

commit ceb1b8f35f021670859478a2cb574cbbbb2d4058
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Sun Aug 4 14:59:16 2013 -0500

    Remove unneeded config.cache entry for cross-compile.

diff --git a/BOOK/boot/64/shadow.xml b/BOOK/boot/64/shadow.xml
index 1317153..a259d41 100644
--- a/BOOK/boot/64/shadow.xml
+++ b/BOOK/boot/64/shadow.xml
@@ -32,14 +32,6 @@
 
     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     href="../common/shadow.xml"
-    xpointer="xpointer(//*[@os='t1'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/shadow.xml"
-    xpointer="xpointer(//*[@os='t2'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/shadow.xml"
     xpointer="xpointer(//*[@os='d'])"/>
 
 <screen os="e"><userinput>CC="${CC} ${BUILD64}" ./configure --prefix=/tools \
diff --git a/BOOK/boot/common/shadow.xml b/BOOK/boot/common/shadow.xml
index 9b823fe..66b3ca5 100644
--- a/BOOK/boot/common/shadow.xml
+++ b/BOOK/boot/common/shadow.xml
@@ -28,11 +28,6 @@
 <screen os="c"><userinput>cp -v src/Makefile.in{,.orig}
 sed -e 's/groups$(EXEEXT) //' src/Makefile.in.orig > src/Makefile.in</userinput></screen>
 
-    <para os="t1">The following cache entries set the values for tests that do
-    not run while cross-compiling:</para>
-
-<screen os="t2"><userinput>echo "ac_cv_func_setpgrp_void=yes" > config.cache</userinput></screen>
-
     <para os="d">Prepare Shadow for compilation:</para>
 
 <screen os="e"><userinput>./configure --prefix=/tools \

commit e2e6aae80ea89a386c133a11b12e39055b78097f
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Sun Aug 4 14:58:42 2013 -0500

    Add lzma and zlib support to boot method kmod.

diff --git a/BOOK/boot/common/kmod.xml b/BOOK/boot/common/kmod.xml
index 86b8ad9..527a422 100644
--- a/BOOK/boot/common/kmod.xml
+++ b/BOOK/boot/common/kmod.xml
@@ -26,8 +26,11 @@
     href="../../final-system/common/kmod.xml"
     xpointer="xpointer(//*[@os='a'])"/>
 
-<screen os="b"><userinput>./configure --prefix=/tools --bindir=/bin \
-    --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
+<screen os="b"><userinput>liblzma_CFLAGS="-I/tools/include" liblzma_LIBS="-L/tools/lib -llzma" \
+zlib_CFLAGS="-I/tools/include" zlib_LIBS="-L/tools/lib -lz" \
+./configure --prefix=/tools --bindir=/bin \
+    --build=${CLFS_HOST} --host=${CLFS_TARGET} --with-xz --with-zlib \
+    --disable-manpages</userinput></screen>
 
     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     href="../../final-system/common/kmod.xml"
diff --git a/BOOK/boot/multilib/kmod.xml b/BOOK/boot/multilib/kmod.xml
index 3d7d4bb..015d98c 100644
--- a/BOOK/boot/multilib/kmod.xml
+++ b/BOOK/boot/multilib/kmod.xml
@@ -26,9 +26,11 @@
     href="../../final-system/common/kmod.xml"
     xpointer="xpointer(//*[@os='a'])"/>
 
-<screen os="b"><userinput>CC="${CC} ${BUILD64}" ./configure --prefix=/tools \
+<screen os="b"><userinput>liblzma_CFLAGS="-I/tools/include" liblzma_LIBS="-L/tools/lib64 -llzma" \
+zlib_CFLAGS="-I/tools/include" zlib_LIBS="-L/tools/lib64 -lz" \
+CC="${CC} ${BUILD64}" ./configure --prefix=/tools \
     --bindir=/bin --build=${CLFS_HOST} --host=${CLFS_TARGET} \
-    --libdir=/tools/lib64</userinput></screen>
+    --libdir=/tools/lib64 --with-xz --with-zlib --disable-manpages</userinput></screen>
 
     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     href="../../final-system/common/kmod.xml"
diff --git a/BOOK/boot/x86_64-64/kmod.xml b/BOOK/boot/x86_64-64/kmod.xml
index 146d931..4d13996 100644
--- a/BOOK/boot/x86_64-64/kmod.xml
+++ b/BOOK/boot/x86_64-64/kmod.xml
@@ -26,8 +26,11 @@
     href="../../final-system/common/kmod.xml"
     xpointer="xpointer(//*[@os='a'])"/>
 
-<screen os="b"><userinput>CC="${CC} ${BUILD64}" ./configure --prefix=/tools \
-    --bindir=/bin --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
+<screen os="b"><userinput>liblzma_CFLAGS="-I/tools/include" liblzma_LIBS="-L/tools/lib -llzma" \
+zlib_CFLAGS="-I/tools/include" zlib_LIBS="-L/tools/lib -lz" \
+CC="${CC} ${BUILD64}" ./configure --prefix=/tools --bindir=/bin \
+    --build=${CLFS_HOST} --host=${CLFS_TARGET} --with-xz --with-zlib \
+    --disable-manpages</userinput></screen>
 
     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     href="../../final-system/common/kmod.xml"

commit 019605fd91345e03cf77fe5ceb53a31bba1f9b6e
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Sun Aug 4 14:58:05 2013 -0500

    Add kmod boot method update entry to master changelog.

diff --git a/BOOK/introduction/common/changelog.xml b/BOOK/introduction/common/changelog.xml
index 1d41dbe..208570c 100644
--- a/BOOK/introduction/common/changelog.xml
+++ b/BOOK/introduction/common/changelog.xml
@@ -41,6 +41,9 @@
         <listitem>
           <para>[William Harrington] - Update Vim updates to last 1314 patch level.</para>
         </listitem>
+        <listitem>
+          <para>[William Harrington] - Update boot method KMOD to support xz and zlib.</para>
+        </listitem>
       </itemizedlist>
     </listitem>
 

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

Summary of changes:
 BOOK/boot/64/shadow.xml                |    8 --------
 BOOK/boot/common/kmod.xml              |    7 +++++--
 BOOK/boot/common/shadow.xml            |    5 -----
 BOOK/boot/multilib/kmod.xml            |    6 ++++--
 BOOK/boot/x86_64-64/kmod.xml           |    7 +++++--
 BOOK/introduction/common/changelog.xml |    7 +++++++
 6 files changed, 21 insertions(+), 19 deletions(-)


hooks/post-receive
-- 
Cross-LFS Book



More information about the Clfs-commits mailing list