[Clfs-commits] [Cross-LFS]Cross-LFS Book branch, master, updated. clfs-2.0.0-187-g080f66f

git git at cross-lfs.org
Tue Jul 30 19:42:08 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  080f66f4bc6155013e78f2337421714d035f6ec8 (commit)
       via  8c30aa44ff6fc7c1cd63177c386025c2fdde8d00 (commit)
       via  328ee369019e1ae6c7cd65b293f4ca383ca31a50 (commit)
      from  2eeeba739a3705f1b9e92ab1f1c9959a9e69e275 (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 080f66f4bc6155013e78f2337421714d035f6ec8
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Tue Jul 30 21:42:04 2013 -0500

    Update linux headers install commands for final-system.

diff --git a/BOOK/final-system/common/linux-headers.xml b/BOOK/final-system/common/linux-headers.xml
index 2d5d7e7..aaa82ab 100644
--- a/BOOK/final-system/common/linux-headers.xml
+++ b/BOOK/final-system/common/linux-headers.xml
@@ -29,10 +29,8 @@
 
     <para os="b">Install the kernel header files:</para>
 
-<screen os="c"><userinput>make mrproper
-make headers_check
-make INSTALL_HDR_PATH=dest headers_install
-cp -rv dest/include/* /usr/include
+<screen os="c"><userinput>make headers_check
+make INSTALL_HDR_PATH=/usr headers_install
 find /usr/include -name .install -or -name ..install.cmd | xargs rm -fv</userinput></screen>
 
     <variablelist os="d">
@@ -54,13 +52,10 @@ find /usr/include -name .install -or -name ..install.cmd | xargs rm -fv</userinp
       </varlistentry>
 
       <varlistentry os="d3">
-        <term><parameter>make INSTALL_HDR_PATH=dest headers_install</parameter></term>
+        <term><parameter>make INSTALL_HDR_PATH=/usr headers_install</parameter></term>
         <listitem>
-          <para>Normally the headers_install target removes the entire
-          destination directory (default
-          <filename class="directory">/usr/include</filename>) before
-          installing the headers. To prevent this, we tell the kernel to
-          install the headers to a directory inside the source dir.</para>
+          <para>This will install the kernel headers into
+          <filename class="directory">/usr/include</filename>.</para>
         </listitem>
       </varlistentry>
 

commit 8c30aa44ff6fc7c1cd63177c386025c2fdde8d00
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Tue Jul 30 21:41:52 2013 -0500

    Update linux headers install commands in cross-tools.

diff --git a/BOOK/cross-tools/alpha/linux-headers.xml b/BOOK/cross-tools/alpha/linux-headers.xml
index 099a914..acf57d0 100644
--- a/BOOK/cross-tools/alpha/linux-headers.xml
+++ b/BOOK/cross-tools/alpha/linux-headers.xml
@@ -30,11 +30,9 @@
     href="../../final-system/common/linux-headers.xml"
     xpointer="xpointer(//*[@os='b'])"/>
 
-<screen os="c"><userinput>install -dv /tools/include
-make mrproper
+<screen os="c"><userinput>make mrproper
 make ARCH=alpha headers_check
-make ARCH=alpha INSTALL_HDR_PATH=dest headers_install
-cp -rv dest/include/* /tools/include</userinput></screen>
+make ARCH=alpha INSTALL_HDR_PATH=/tools headers_install</userinput></screen>
 
     <variablelist os="d">
       <title>The meaning of the make commands:</title>
@@ -52,13 +50,10 @@ cp -rv dest/include/* /tools/include</userinput></screen>
       </varlistentry>
 
       <varlistentry os="d3">
-        <term><parameter>make ARCH=alpha INSTALL_HDR_PATH=dest headers_install</parameter></term>
+        <term><parameter>make ARCH=alpha INSTALL_HDR_PATH=/tools headers_install</parameter></term>
         <listitem>
-          <para>Normally the headers_install target removes the entire
-          destination directory (default
-          <filename class="directory">/usr/include</filename>) before
-          installing the headers. To prevent this, we tell the kernel to
-          install the headers to a directory inside the source dir.</para>
+          <para>This will install the kernel headers into
+          <filename class="directory">/tools/include</filename>.</para>
         </listitem>
       </varlistentry>
 
diff --git a/BOOK/cross-tools/mips/linux-headers.xml b/BOOK/cross-tools/mips/linux-headers.xml
index 07d5776..1f93d99 100644
--- a/BOOK/cross-tools/mips/linux-headers.xml
+++ b/BOOK/cross-tools/mips/linux-headers.xml
@@ -30,11 +30,9 @@
     href="../../final-system/common/linux-headers.xml"
     xpointer="xpointer(//*[@os='b'])"/>
 
-<screen os="c"><userinput>install -dv /tools/include
-make mrproper
+<screen os="c"><userinput>make mrproper
 make ARCH=mips headers_check
-make ARCH=mips INSTALL_HDR_PATH=dest headers_install
-cp -rv dest/include/* /tools/include</userinput></screen>
+make ARCH=mips INSTALL_HDR_PATH=/tools headers_install</userinput></screen>
 
     <variablelist os="d">
       <title>The meaning of the make commands:</title>
@@ -52,13 +50,10 @@ cp -rv dest/include/* /tools/include</userinput></screen>
       </varlistentry>
 
       <varlistentry os="d3">
-        <term><parameter>make ARCH=mips INSTALL_HDR_PATH=dest headers_install</parameter></term>
+        <term><parameter>make ARCH=mips INSTALL_HDR_PATH=/tools headers_install</parameter></term>
         <listitem>
-          <para>Normally the headers_install target removes the entire
-          destination directory (default
-          <filename class="directory">/usr/include</filename>) before
-          installing the headers. To prevent this, we tell the kernel to
-          install the headers to a directory inside the source dir.</para>
+          <para>This will install the kernel headers into
+          <filename class="directory">/tools/include</filename>.</para>
         </listitem>
       </varlistentry>
 
diff --git a/BOOK/cross-tools/ppc/linux-headers.xml b/BOOK/cross-tools/ppc/linux-headers.xml
index 5c08e2e..849482d 100644
--- a/BOOK/cross-tools/ppc/linux-headers.xml
+++ b/BOOK/cross-tools/ppc/linux-headers.xml
@@ -30,11 +30,9 @@
     href="../../final-system/common/linux-headers.xml"
     xpointer="xpointer(//*[@os='b'])"/>
 
-<screen os="c"><userinput>install -dv /tools/include
-make mrproper
+<screen os="c"><userinput>make mrproper
 make ARCH=powerpc headers_check
-make ARCH=powerpc INSTALL_HDR_PATH=dest headers_install
-cp -rv dest/include/* /tools/include</userinput></screen>
+make ARCH=powerpc INSTALL_HDR_PATH=/tools headers_install</userinput></screen>
 
     <variablelist os="d">
       <title>The meaning of the make commands:</title>
@@ -52,13 +50,10 @@ cp -rv dest/include/* /tools/include</userinput></screen>
       </varlistentry>
 
       <varlistentry os="d3">
-        <term><parameter>make ARCH=powerpc INSTALL_HDR_PATH=dest headers_install</parameter></term>
+        <term><parameter>make ARCH=powerpc INSTALL_HDR_PATH=/tools headers_install</parameter></term>
         <listitem>
-          <para>Normally the headers_install target removes the entire
-          destination directory (default
-          <filename class="directory">/usr/include</filename>) before
-          installing the headers. To prevent this, we tell the kernel to
-          install the headers to a directory inside the source dir.</para>
+          <para>This will install the kernel headers into
+          <filename class="directory">/tools/include</filename>.</para>
         </listitem>
       </varlistentry>
 
diff --git a/BOOK/cross-tools/sparc/linux-headers.xml b/BOOK/cross-tools/sparc/linux-headers.xml
index 7c3eea5..23ad793 100644
--- a/BOOK/cross-tools/sparc/linux-headers.xml
+++ b/BOOK/cross-tools/sparc/linux-headers.xml
@@ -30,11 +30,9 @@
     href="../../final-system/common/linux-headers.xml"
     xpointer="xpointer(//*[@os='b'])"/>
 
-<screen os="c"><userinput>install -dv /tools/include
-make mrproper
+<screen os="c"><userinput>make mrproper
 make ARCH=sparc headers_check
-make ARCH=sparc INSTALL_HDR_PATH=dest headers_install
-cp -rv dest/include/* /tools/include</userinput></screen>
+make ARCH=sparc INSTALL_HDR_PATH=/tools headers_install</userinput></screen>
 
     <variablelist os="d">
       <title>The meaning of the make commands:</title>
@@ -52,13 +50,10 @@ cp -rv dest/include/* /tools/include</userinput></screen>
       </varlistentry>
 
       <varlistentry os="d3">
-        <term><parameter>make ARCH=sparc INSTALL_HDR_PATH=dest headers_install</parameter></term>
+        <term><parameter>make ARCH=sparc INSTALL_HDR_PATH=/tools headers_install</parameter></term>
         <listitem>
-          <para>Normally the headers_install target removes the entire
-          destination directory (default
-          <filename class="directory">/usr/include</filename>) before
-          installing the headers. To prevent this, we tell the kernel to
-          install the headers to a directory inside the source dir.</para>
+          <para>This will install the kernel headers into
+          <filename class="directory">/tools/include</filename>.</para>
         </listitem>
       </varlistentry>
 
diff --git a/BOOK/cross-tools/sparc64/linux-headers.xml b/BOOK/cross-tools/sparc64/linux-headers.xml
index 1f3f05e..a61757f 100644
--- a/BOOK/cross-tools/sparc64/linux-headers.xml
+++ b/BOOK/cross-tools/sparc64/linux-headers.xml
@@ -30,11 +30,9 @@
     href="../../final-system/common/linux-headers.xml"
     xpointer="xpointer(//*[@os='b'])"/>
 
-<screen os="c"><userinput>install -dv /tools/include
-make mrproper
+<screen os="c"><userinput>make mrproper
 make ARCH=sparc64 headers_check
-make ARCH=sparc64 INSTALL_HDR_PATH=dest headers_install
-cp -rv dest/include/* /tools/include</userinput></screen>
+make ARCH=sparc64 INSTALL_HDR_PATH=/tools headers_install</userinput></screen>
 
     <variablelist os="d">
       <title>The meaning of the make commands:</title>
@@ -52,13 +50,10 @@ cp -rv dest/include/* /tools/include</userinput></screen>
       </varlistentry>
 
       <varlistentry os="d3">
-        <term><parameter>make ARCH=sparc64 INSTALL_HDR_PATH=dest headers_install</parameter></term>
+        <term><parameter>make ARCH=sparc64 INSTALL_HDR_PATH=/tools headers_install</parameter></term>
         <listitem>
-          <para>Normally the headers_install target removes the entire
-          destination directory (default
-          <filename class="directory">/usr/include</filename>) before
-          installing the headers. To prevent this, we tell the kernel to
-          install the headers to a directory inside the source dir.</para>
+          <para>This will install the kernel headers into
+          <filename class="directory">/tools/include</filename>.</para>
         </listitem>
       </varlistentry>
 
diff --git a/BOOK/cross-tools/x86/linux-headers.xml b/BOOK/cross-tools/x86/linux-headers.xml
index be780d9..7db269a 100644
--- a/BOOK/cross-tools/x86/linux-headers.xml
+++ b/BOOK/cross-tools/x86/linux-headers.xml
@@ -30,11 +30,9 @@
     href="../../final-system/common/linux-headers.xml"
     xpointer="xpointer(//*[@os='b'])"/>
 
-<screen os="c"><userinput>install -dv /tools/include
-make mrproper
+<screen os="c"><userinput>make mrproper
 make ARCH=i386 headers_check
-make ARCH=i386 INSTALL_HDR_PATH=dest headers_install
-cp -rv dest/include/* /tools/include</userinput></screen>
+make ARCH=i386 INSTALL_HDR_PATH=/tools headers_install</userinput></screen>
 
     <variablelist os="d">
       <title>The meaning of the make commands:</title>
@@ -52,13 +50,10 @@ cp -rv dest/include/* /tools/include</userinput></screen>
       </varlistentry>
 
       <varlistentry os="d3">
-        <term><parameter>make ARCH=i386 INSTALL_HDR_PATH=dest headers_install</parameter></term>
+        <term><parameter>make ARCH=i386 INSTALL_HDR_PATH=/tools headers_install</parameter></term>
         <listitem>
-          <para>Normally the headers_install target removes the entire
-          destination directory (default
-          <filename class="directory">/usr/include</filename>) before
-          installing the headers. To prevent this, we tell the kernel to
-          install the headers to a directory inside the source dir.</para>
+          <para>This will install the kernel headers into
+          <filename class="directory">/tools/include</filename>.</para>
         </listitem>
       </varlistentry>
 
diff --git a/BOOK/cross-tools/x86_64/linux-headers.xml b/BOOK/cross-tools/x86_64/linux-headers.xml
index d7441e7..7253dd0 100644
--- a/BOOK/cross-tools/x86_64/linux-headers.xml
+++ b/BOOK/cross-tools/x86_64/linux-headers.xml
@@ -30,11 +30,9 @@
     href="../../final-system/common/linux-headers.xml"
     xpointer="xpointer(//*[@os='b'])"/>
 
-<screen os="c"><userinput>install -dv /tools/include
-make mrproper
+<screen os="c"><userinput>make mrproper
 make ARCH=x86_64 headers_check
-make ARCH=x86_64 INSTALL_HDR_PATH=dest headers_install
-cp -rv dest/include/* /tools/include</userinput></screen>
+make ARCH=x86_64 INSTALL_HDR_PATH=/tools headers_install</userinput></screen>
 
     <variablelist os="d">
       <title>The meaning of the make commands:</title>
@@ -52,13 +50,10 @@ cp -rv dest/include/* /tools/include</userinput></screen>
       </varlistentry>
 
       <varlistentry os="d3">
-        <term><parameter>make ARCH=x86_64 INSTALL_HDR_PATH=dest headers_install</parameter></term>
+        <term><parameter>make ARCH=x86_64 INSTALL_HDR_PATH=/tools headers_install</parameter></term>
         <listitem>
-          <para>Normally the headers_install target removes the entire
-          destination directory (default
-          <filename class="directory">/usr/include</filename>) before
-          installing the headers. To prevent this, we tell the kernel to
-          install the headers to a directory inside the source dir.</para>
+          <para>This will install the kernel headers into
+          <filename class="directory">/tools/include</filename>.</para>
         </listitem>
       </varlistentry>
 

commit 328ee369019e1ae6c7cd65b293f4ca383ca31a50
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Tue Jul 30 21:41:31 2013 -0500

    Add linxu kernel header update entry.

diff --git a/BOOK/introduction/common/changelog.xml b/BOOK/introduction/common/changelog.xml
index e403f42..5b288a9 100644
--- a/BOOK/introduction/common/changelog.xml
+++ b/BOOK/introduction/common/changelog.xml
@@ -35,7 +35,16 @@
       </itemizedlist>
     </listitem>
 -->
-   <listitem>
+    <listitem>
+      <para>30 July 2013</para>
+      <itemizedlist>
+        <listitem>
+          <para>[William Harrington] - Remove unneeded commands from linux header installation commands and adjust INSTALL_HDR_PATH variable.</para>
+        </listitem>
+      </itemizedlist>
+    </listitem>
+
+    <listitem>
       <para>29 July 2013</para>
       <itemizedlist>
         <listitem>
@@ -47,7 +56,7 @@
       </itemizedlist>
     </listitem>
 
-   <listitem>
+    <listitem>
       <para>27 July 2013</para>
       <itemizedlist>
         <listitem>
@@ -59,7 +68,7 @@
       </itemizedlist>
     </listitem>
 
-   <listitem>
+    <listitem>
       <para>25 July 2013</para>
       <itemizedlist>
         <listitem>

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

Summary of changes:
 BOOK/cross-tools/alpha/linux-headers.xml   |   15 +++++----------
 BOOK/cross-tools/mips/linux-headers.xml    |   15 +++++----------
 BOOK/cross-tools/ppc/linux-headers.xml     |   15 +++++----------
 BOOK/cross-tools/sparc/linux-headers.xml   |   15 +++++----------
 BOOK/cross-tools/sparc64/linux-headers.xml |   15 +++++----------
 BOOK/cross-tools/x86/linux-headers.xml     |   15 +++++----------
 BOOK/cross-tools/x86_64/linux-headers.xml  |   15 +++++----------
 BOOK/final-system/common/linux-headers.xml |   15 +++++----------
 BOOK/introduction/common/changelog.xml     |   15 ++++++++++++---
 9 files changed, 52 insertions(+), 83 deletions(-)


hooks/post-receive
-- 
Cross-LFS Book



More information about the Clfs-commits mailing list