Author: jim
Date: 2005-04-24 01:24:42 -0600 (Sun, 24 Apr 2005)
New Revision: 5053
Removed:
branches/cross-lfs/BOOK/temp-system/linux-libc-headers-alpha.xml
branches/cross-lfs/BOOK/temp-system/linux-libc-headers-ppc.xml
branches/cross-lfs/BOOK/temp-system/linux-libc-headers-raq2.xml
branches/cross-lfs/BOOK/temp-system/linux-libc-headers.xml
Modified:
branches/cross-lfs/BOOK/cross-tools/binutils.xml
branches/cross-lfs/BOOK/cross-tools/gcc-final.xml
branches/cross-lfs/BOOK/cross-tools/gcc-shared.xml
branches/cross-lfs/BOOK/cross-tools/gcc-static.xml
branches/cross-lfs/BOOK/cross-tools/glibc-startfiles.xml
branches/cross-lfs/BOOK/cross-tools/glibc.xml
branches/cross-lfs/BOOK/final-preps/creatingtoolsdir.xml
branches/cross-lfs/BOOK/final-system/bash.xml
branches/cross-lfs/BOOK/general.ent
branches/cross-lfs/BOOK/introduction/changelog.xml
branches/cross-lfs/BOOK/materials/patches.xml
branches/cross-lfs/BOOK/temp-system/binutils.xml
branches/cross-lfs/BOOK/temp-system/chapter.xml
branches/cross-lfs/BOOK/temp-system/gcc.xml
Log:
Fixes courtesy of Jeremy Utley and Ryan Oliver
Modified: branches/cross-lfs/BOOK/cross-tools/binutils.xml
===================================================================
--- branches/cross-lfs/BOOK/cross-tools/binutils.xml 2005-04-23 17:13:50 UTC
(rev 5052)
+++ branches/cross-lfs/BOOK/cross-tools/binutils.xml 2005-04-24 07:24:42 UTC
(rev 5053)
@@ -4,7 +4,7 @@
%general-entities;
]>
<sect1 id="ch-cross-tools-binutils" role="wrap">
-<title>Binutils-&binutils-version; - Cross Compiled</title>
+<title>Cross Binutils-&binutils-version;</title>
<?dbhtml filename="binutils.html"?>
<indexterm zone="ch-cross-tools-binutils">
@@ -29,7 +29,7 @@
</sect2>
<sect2 role="installation">
-<title>Installation of Cross Compiled Binutils</title>
+<title>Installation of Cross Binutils</title>
<para>Create a separate build directory again:</para>
@@ -40,7 +40,7 @@
<screen><userinput>../binutils-&binutils-version;/configure
--prefix=/cross-tools \
--target=${LFS_TARGET} --host=${LFS_HOST} \
- --with-lib-path=/cross-tools/lib --disable-nls \
+ --with-lib-path=/tools/lib --disable-nls \
--enable-shared -enable-64-bit-bfd</userinput></screen>
<para>The meaning of the new configure option:</para>
Modified: branches/cross-lfs/BOOK/cross-tools/gcc-final.xml
===================================================================
--- branches/cross-lfs/BOOK/cross-tools/gcc-final.xml 2005-04-23 17:13:50 UTC
(rev 5052)
+++ branches/cross-lfs/BOOK/cross-tools/gcc-final.xml 2005-04-24 07:24:42 UTC
(rev 5053)
@@ -30,10 +30,9 @@
<para>Unpack only the gcc-core tarball because neither the C++
compiler nor the test suite will be needed here.</para>
-<para>First correct a known problem and make an essential adjustment:</para>
+<para>First we make an essential adjustment:</para>
-<screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-no_fixincludes-1.patch
-patch -Np1 -i ../gcc-&gcc-version;-specs-2.patch</userinput></screen>
+<screen><userinput>patch -Np1 -i
../gcc-&gcc-version;-specs-2.patch</userinput></screen>
<para>Now we will need to setup our StartFile Spec to the correct library
location:</para>
@@ -42,6 +41,11 @@
#undef STARTFILE_PREFIX_SPEC
#define STARTFILE_PREFIX_SPEC \"/tools/lib/\"" >>
gcc/config/linux.h</userinput></screen>
+<para>Now we will change gcc's search path to look into /tools only:</para>
+
+<screen><userinput>sed -i "[EMAIL PROTECTED](^CROSS_SYSTEM_HEADER_DIR
=\)[EMAIL PROTECTED] /tools/[EMAIL PROTECTED]" \
+gcc/Makefile.in</userinput></screen>
+
<para>The GCC documentation recommends building GCC outside of the
source directory in a dedicated build directory:</para>
Modified: branches/cross-lfs/BOOK/cross-tools/gcc-shared.xml
===================================================================
--- branches/cross-lfs/BOOK/cross-tools/gcc-shared.xml 2005-04-23 17:13:50 UTC
(rev 5052)
+++ branches/cross-lfs/BOOK/cross-tools/gcc-shared.xml 2005-04-24 07:24:42 UTC
(rev 5053)
@@ -4,12 +4,12 @@
%general-entities;
]>
<sect1 id="ch-cross-tools-gcc-shared" role="wrap">
-<title>GCC-&gcc-version; - Cross Compiler Shared</title>
+<title>Cross GCC-&gcc-version; with Shared libgcc</title>
<?dbhtml filename="gcc-shared.html"?>
<indexterm zone="ch-cross-tools-gcc-shared">
<primary sortas="a-GCC">GCC</primary>
-<secondary>cross-tools, shared</secondary></indexterm>
+<secondary>cross gcc, shared libgcc</secondary></indexterm>
<sect2 role="package"><title/>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
href="../final-system/gcc.xml" xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
@@ -25,15 +25,14 @@
</sect2>
<sect2 role="installation">
-<title>Installation of GCC Cross Compiler</title>
+<title>Installation of Cross GCC with Shared libgcc</title>
<para>Unpack only the gcc-core tarball because neither the C++
compiler nor the test suite will be needed here.</para>
-<para>First correct a known problem and make an essential adjustment:</para>
+<para>First we make an essential adjustment:</para>
-<screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-no_fixincludes-1.patch
-patch -Np1 -i ../gcc-&gcc-version;-specs-2.patch</userinput></screen>
+<screen><userinput>patch -Np1 -i
../gcc-&gcc-version;-specs-2.patch</userinput></screen>
<para>Now we will need to setup our StartFile Spec to the correct library
location:</para>
Modified: branches/cross-lfs/BOOK/cross-tools/gcc-static.xml
===================================================================
--- branches/cross-lfs/BOOK/cross-tools/gcc-static.xml 2005-04-23 17:13:50 UTC
(rev 5052)
+++ branches/cross-lfs/BOOK/cross-tools/gcc-static.xml 2005-04-24 07:24:42 UTC
(rev 5053)
@@ -4,12 +4,12 @@
%general-entities;
]>
<sect1 id="ch-cross-tools-gcc-static" role="wrap">
-<title>GCC-&gcc-version; - Cross Compiler Static</title>
+<title>Cross GCC-&gcc-version; - Static libgcc</title>
<?dbhtml filename="gcc-static.html"?>
<indexterm zone="ch-cross-tools-gcc-static">
<primary sortas="a-GCC">GCC</primary>
-<secondary>cross-tools, static</secondary></indexterm>
+<secondary>cross gcc, static libgcc</secondary></indexterm>
<sect2 role="package"><title/>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
href="../final-system/gcc.xml" xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
@@ -25,15 +25,14 @@
</sect2>
<sect2 role="installation">
-<title>Installation of GCC Cross Compiler</title>
+<title>Installation of Cross GCC Compiler with Static libgcc</title>
<para>Unpack only the gcc-core tarball because neither the C++
compiler nor the test suite will be needed here.</para>
-<para>First correct a known problem and make an essential adjustment:</para>
+<para>First correct we make an essential adjustment:</para>
-<screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-no_fixincludes-1.patch
-patch -Np1 -i ../gcc-&gcc-version;-specs-2.patch</userinput></screen>
+<screen><userinput>patch -Np1 -i
../gcc-&gcc-version;-specs-2.patch</userinput></screen>
<para>Now we will need to setup our StartFile Spec to the correct library
location:</para>
Modified: branches/cross-lfs/BOOK/cross-tools/glibc-startfiles.xml
===================================================================
--- branches/cross-lfs/BOOK/cross-tools/glibc-startfiles.xml 2005-04-23
17:13:50 UTC (rev 5052)
+++ branches/cross-lfs/BOOK/cross-tools/glibc-startfiles.xml 2005-04-24
07:24:42 UTC (rev 5053)
@@ -63,7 +63,7 @@
--without-cvs --disable-profile --enable-add-ons \
--with-tls --enable-kernel=2.6.0 --with-__thread \
--with-binutils=/cross-tools/bin --with-headers=/tools/include \
- --disable-selinux --cache-file=config.cache</userinput></screen>
+ --cache-file=config.cache</userinput></screen>
<para arch="raq2">To create Linuxthread Startfiles using the following
configure line:</para>
@@ -72,8 +72,7 @@
../glibc-&glibc-version;/configure --prefix=/tools \
--host=${LFS_TARGET} --build=${LFS_HOST} \
--without-cvs --disable-profile --enable-add-ons \
- --with-binutils=/cross-tools/bin --with-headers=/tools/include \
- --disable-selinux</userinput></screen>
+ --with-binutils=/cross-tools/bin
--with-headers=/tools/include</userinput></screen>
<para>The meaning of the configure options:</para>
Modified: branches/cross-lfs/BOOK/cross-tools/glibc.xml
===================================================================
--- branches/cross-lfs/BOOK/cross-tools/glibc.xml 2005-04-23 17:13:50 UTC
(rev 5052)
+++ branches/cross-lfs/BOOK/cross-tools/glibc.xml 2005-04-24 07:24:42 UTC
(rev 5053)
@@ -72,7 +72,7 @@
--disable-profile --enable-add-ons \
--enable-kernel=2.6.0 --with-binutils=/cross-tools/bin \
--without-gd --with-headers=/tools/include \
- --disable-selinux --cache-file=config.cache</userinput></screen>
+ --cache-file=config.cache</userinput></screen>
<screen arch="raq2"><userinput>CC="${LFS_TARGET}-gcc" AR="${LFS_TARGET}-ar" \
RANLIB="${LFS_TARGET}-ranlib" \
@@ -80,8 +80,7 @@
--host=${LFS_HOST} --build=${LFS_TARGET} \
--disable-profile --enable-add-ons \
--enable-kernel=2.6.0 --with-binutils=/cross-tools/bin \
- --without-gd --with-headers=/tools/include \
- --disable-selinux</userinput></screen>
+ --without-gd --with-headers=/tools/include</userinput></screen>
<para>The meaning of the configure options:</para>
Modified: branches/cross-lfs/BOOK/final-preps/creatingtoolsdir.xml
===================================================================
--- branches/cross-lfs/BOOK/final-preps/creatingtoolsdir.xml 2005-04-23
17:13:50 UTC (rev 5052)
+++ branches/cross-lfs/BOOK/final-preps/creatingtoolsdir.xml 2005-04-24
07:24:42 UTC (rev 5053)
@@ -23,12 +23,6 @@
<screen><userinput>install -d $LFS/tools</userinput></screen>
-<para>Grant <emphasis>lfs</emphasis> full access to
-<filename class="directory">$LFS/tools</filename> and
-<emphasis>lfs</emphasis> the directory owner:</para>
-
-<screen><userinput>chown lfs $LFS/tools</userinput></screen>
-
<para>The next step is to create a <filename class="symlink">/tools</filename>
symlink on the host system. This will point to the newly-created directory on
the LFS partition. Run this command as <emphasis>root</emphasis> as
Modified: branches/cross-lfs/BOOK/final-system/bash.xml
===================================================================
--- branches/cross-lfs/BOOK/final-system/bash.xml 2005-04-23 17:13:50 UTC
(rev 5052)
+++ branches/cross-lfs/BOOK/final-system/bash.xml 2005-04-24 07:24:42 UTC
(rev 5053)
@@ -32,7 +32,7 @@
<para>The following patch fixes various issues, including a problem where Bash
will sometimes only show 33 characters on a line, then wrap to the next:</para>
-<screen><userinput>patch -Np1 -i
../bash-&bash-version;-fixes-1.patch</userinput></screen>
+<screen><userinput>patch -Np1 -i
../bash-&bash-version;-fixes-3.patch</userinput></screen>
<para>Bash also has issues when compiled against newer versions of Glibc. The
following patch resolves this problem:</para>
Modified: branches/cross-lfs/BOOK/general.ent
===================================================================
--- branches/cross-lfs/BOOK/general.ent 2005-04-23 17:13:50 UTC (rev 5052)
+++ branches/cross-lfs/BOOK/general.ent 2005-04-24 07:24:42 UTC (rev 5053)
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
-<!ENTITY version "7.0-cross-lfs-20050423">
+<!ENTITY version "7.0-cross-lfs-20050424">
<!ENTITY version-x86 "&version;-x86">
<!ENTITY version-alpha "&version;-alpha">
<!ENTITY version-ppc "&version;-PowerPC">
<!ENTITY version-raq2 "&version;-RaQ2">
-<!ENTITY releasedate "April 23, 2005">
+<!ENTITY releasedate "April 24, 2005">
<!ENTITY milestone "7.0">
<!ENTITY lfs-root "http://www.linuxfromscratch.org/">
Modified: branches/cross-lfs/BOOK/introduction/changelog.xml
===================================================================
--- branches/cross-lfs/BOOK/introduction/changelog.xml 2005-04-23 17:13:50 UTC
(rev 5052)
+++ branches/cross-lfs/BOOK/introduction/changelog.xml 2005-04-24 07:24:42 UTC
(rev 5053)
@@ -94,8 +94,19 @@
-->
<itemizedlist>
-<listitem><para>Date [jim]</para>
+<listitem><para>April 24, 2005 [jim]</para>
<itemizedlist>
+<listitem><para>Fixed binutils in cross-tools to prevent borkage in final gcc,
thanx Ryan Oliver.</para></listitem>
+<listitem><para>Fixed up wording based on Ryan's input.</para></listitem>
+<listitem><para>Updated bash patch, thanx Jeremy Utley.</para></listitem>
+<listitem><para>Removed bad setting /tools to LFS user, thanx Jeremy
Utley.</para></listitem>
+</itemizedlist>
+</listitem>
+</itemizedlist>
+<itemizedlist>
+
+<listitem><para>April 23, 2005 [jim]</para>
+<itemizedlist>
<listitem><para>Removed uneeded perl-pass1.xml.</para></listitem>
<listitem><para>Updated commands in gcc for cross-tools.</para></listitem>
</itemizedlist>
Modified: branches/cross-lfs/BOOK/materials/patches.xml
===================================================================
--- branches/cross-lfs/BOOK/materials/patches.xml 2005-04-23 17:13:50 UTC
(rev 5052)
+++ branches/cross-lfs/BOOK/materials/patches.xml 2005-04-24 07:24:42 UTC
(rev 5053)
@@ -18,7 +18,7 @@
<varlistentry>
<term>Bash Various Fixes - 21 KB:</term>
<listitem>
-<para><ulink
url="&patches-root;bash/bash-&bash-version;-fixes-2.patch"/></para>
+<para><ulink
url="&patches-root;bash/bash-&bash-version;-fixes-3.patch"/></para>
</listitem>
</varlistentry>
Modified: branches/cross-lfs/BOOK/temp-system/binutils.xml
===================================================================
--- branches/cross-lfs/BOOK/temp-system/binutils.xml 2005-04-23 17:13:50 UTC
(rev 5052)
+++ branches/cross-lfs/BOOK/temp-system/binutils.xml 2005-04-24 07:24:42 UTC
(rev 5053)
@@ -57,7 +57,8 @@
<screen><userinput>../binutils-&binutils-version;/configure \
--prefix=/tools --build=${LFS_HOST) --target=${LFS_TARGET} \
- --disable-nls --enable-shared --enable-64-bit-bfd</userinput></screen>
+ --disable-nls --enable-shared --enable-64-bit-bfd \
+ --with-lib-patch=/tools/lib</userinput></screen>
<para>The meaning of the configure options:</para>
Modified: branches/cross-lfs/BOOK/temp-system/chapter.xml
===================================================================
--- branches/cross-lfs/BOOK/temp-system/chapter.xml 2005-04-23 17:13:50 UTC
(rev 5052)
+++ branches/cross-lfs/BOOK/temp-system/chapter.xml 2005-04-24 07:24:42 UTC
(rev 5053)
@@ -12,10 +12,6 @@
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="variables.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="binutils.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="gcc.xml"/>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
href="linux-libc-headers.xml"/> <!-- x86 -->
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
href="linux-libc-headers-alpha.xml"/> <!-- alpha -->
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
href="linux-libc-headers-ppc.xml"/> <!-- ppc -->
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
href="linux-libc-headers-raq2.xml"/> <!-- raq2 -->
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="zlib.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="gawk.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="coreutils.xml"/>
Modified: branches/cross-lfs/BOOK/temp-system/gcc.xml
===================================================================
--- branches/cross-lfs/BOOK/temp-system/gcc.xml 2005-04-23 17:13:50 UTC (rev
5052)
+++ branches/cross-lfs/BOOK/temp-system/gcc.xml 2005-04-24 07:24:42 UTC (rev
5053)
@@ -34,10 +34,12 @@
<para>First correct a known problem and make an essential adjustment:</para>
-<screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-no_fixincludes-1.patch
-patch -Np1 -i ../gcc-&gcc-version;-specs-2.patch
-patch -Np1 -i
../gcc-&gcc-version;-fix_configure_for_target_native-1.patch</userinput></screen>
+<screen><userinput>patch -Np1 -i
../gcc-&gcc-version;-specs-2.patch</userinput></screen>
+<!-- This patch may or may not be needed testing needs to be done
+patch -Np1 -i ../gcc-&gcc-version;-fix_configure_for_target_native-1.patch
+-->
+
<para>The first patch disables the GCC <command>fixincludes</command>
script. This was briefly mentioned earlier, but a more in-depth
explanation of the fixincludes process is warranted here. Under normal
Deleted: branches/cross-lfs/BOOK/temp-system/linux-libc-headers-alpha.xml
===================================================================
--- branches/cross-lfs/BOOK/temp-system/linux-libc-headers-alpha.xml
2005-04-23 17:13:50 UTC (rev 5052)
+++ branches/cross-lfs/BOOK/temp-system/linux-libc-headers-alpha.xml
2005-04-24 07:24:42 UTC (rev 5053)
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
- <!ENTITY % general-entities SYSTEM "../general.ent">
- %general-entities;
-]>
-<sect1 id="ch-temp-system-linux-libc-headers" role="wrap" arch="alpha">
-<title>Linux-Libc-Headers-&linux-libc-headers-alpha-version;</title>
-<?dbhtml filename="linux-libc-headers.html"?>
-
-<indexterm zone="ch-temp-system-linux-libc-headers">
-<primary sortas="a-Linux-Libc-Headers">Linux-Libc-Headers</primary>
-<secondary>tools, headers</secondary></indexterm>
-
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
- href="linux-libc-headers.xml"
- xpointer="xpointer(/sect1/[EMAIL PROTECTED]'package'])"/>
-
-<sect2 role="installation">
-<title>Installation of Linux-Libc-Headers</title>
-
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
- href="linux-libc-headers.xml"
- xpointer="xpointer(/sect1/[EMAIL PROTECTED]'installation']/para[1])"/>
-
-<para>Install the header files:</para>
-
-<screen><userinput>cp -R include/asm-alpha /tools/include/asm
-cp -R include/linux /tools/include</userinput></screen>
-
-</sect2>
-
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
- href="linux-libc-headers.xml"
- xpointer="xpointer(/sect1/[EMAIL PROTECTED]'content'])"/>
-
-</sect1>
-
Deleted: branches/cross-lfs/BOOK/temp-system/linux-libc-headers-ppc.xml
===================================================================
--- branches/cross-lfs/BOOK/temp-system/linux-libc-headers-ppc.xml
2005-04-23 17:13:50 UTC (rev 5052)
+++ branches/cross-lfs/BOOK/temp-system/linux-libc-headers-ppc.xml
2005-04-24 07:24:42 UTC (rev 5053)
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
- <!ENTITY % general-entities SYSTEM "../general.ent">
- %general-entities;
-]>
-<sect1 id="ch-temp-system-linux-libc-headers" role="wrap" arch="ppc">
-<title>Linux-Libc-Headers-&linux-libc-headers-ppc-version;</title>
-<?dbhtml filename="linux-libc-headers.html"?>
-
-<indexterm zone="ch-temp-system-linux-libc-headers">
-<primary sortas="a-Linux-Libc-Headers">Linux-Libc-Headers</primary>
-<secondary>tools, headers</secondary></indexterm>
-
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
- href="linux-libc-headers.xml"
- xpointer="xpointer(/sect1/[EMAIL PROTECTED]'package'])"/>
-
-<sect2 role="installation">
-<title>Installation of Linux-Libc-Headers</title>
-
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
- href="linux-libc-headers.xml"
- xpointer="xpointer(/sect1/[EMAIL PROTECTED]'installation']/para[1])"/>
-
-<para>Install the header files:</para>
-
-<screen><userinput>cp -R include/asm-ppc /tools/include/asm
-cp -R include/linux /tools/include</userinput></screen>
-
-</sect2>
-
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
- href="linux-libc-headers.xml"
- xpointer="xpointer(/sect1/[EMAIL PROTECTED]'content'])"/>
-
-</sect1>
-
Deleted: branches/cross-lfs/BOOK/temp-system/linux-libc-headers-raq2.xml
===================================================================
--- branches/cross-lfs/BOOK/temp-system/linux-libc-headers-raq2.xml
2005-04-23 17:13:50 UTC (rev 5052)
+++ branches/cross-lfs/BOOK/temp-system/linux-libc-headers-raq2.xml
2005-04-24 07:24:42 UTC (rev 5053)
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
- <!ENTITY % general-entities SYSTEM "../general.ent">
- %general-entities;
-]>
-<sect1 id="ch-temp-system-linux-libc-headers" role="wrap" arch="raq2">
-<title>Linux-Libc-Headers-&linux-libc-headers-raq2-version;</title>
-<?dbhtml filename="linux-libc-headers.html"?>
-
-<indexterm zone="ch-temp-system-linux-libc-headers">
-<primary sortas="a-Linux-Libc-Headers">Linux-Libc-Headers</primary>
-<secondary>tools, headers</secondary></indexterm>
-
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
- href="linux-libc-headers.xml"
- xpointer="xpointer(/sect1/[EMAIL PROTECTED]'package'])"/>
-
-<sect2 role="installation">
-<title>Installation of Linux-Libc-Headers</title>
-
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
- href="linux-libc-headers.xml"
- xpointer="xpointer(/sect1/[EMAIL PROTECTED]'installation']/para[1])"/>
-
-<para>Install the header files:</para>
-
-<screen><userinput>cp -R include/asm-mips /tools/include/asm
-cp -R include/linux /tools/include</userinput></screen>
-
-</sect2>
-
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
- href="linux-libc-headers.xml"
- xpointer="xpointer(/sect1/[EMAIL PROTECTED]'content'])"/>
-
-</sect1>
-
Deleted: branches/cross-lfs/BOOK/temp-system/linux-libc-headers.xml
===================================================================
--- branches/cross-lfs/BOOK/temp-system/linux-libc-headers.xml 2005-04-23
17:13:50 UTC (rev 5052)
+++ branches/cross-lfs/BOOK/temp-system/linux-libc-headers.xml 2005-04-24
07:24:42 UTC (rev 5053)
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
- <!ENTITY % general-entities SYSTEM "../general.ent">
- %general-entities;
-]>
-<sect1 id="ch-temp-system-linux-libc-headers" role="wrap" arch="x86">
-<title>Linux-Libc-Headers-&linux-libc-headers-version;</title>
-<?dbhtml filename="linux-libc-headers.html"?>
-
-<indexterm zone="ch-temp-system-linux-libc-headers">
-<primary sortas="a-Linux-Libc-Headers">Linux-Libc-Headers</primary>
-<secondary>tools, headers</secondary></indexterm>
-
-<sect2 role="package"><title/>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
- href="../temp-tools/linux-libc-headers.xml"
- xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
-
-<segmentedlist>
-<segtitle>&buildtime;</segtitle>
-<segtitle>&diskspace;</segtitle>
-<seglistitem><seg>0.1 SBU</seg><seg>22 MB</seg></seglistitem>
-</segmentedlist>
-
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
- href="../temp-tools/linux-libc-headers.xml"
- xpointer="xpointer(/sect1/sect2[1]/segmentedlist[2])"/>
-
-
-</sect2>
-
-<sect2 role="installation">
-<title>Installation of Linux-Libc-Headers</title>
-
-<para>Install the header files:</para>
-
-<screen><userinput>cp -R include/asm-i386 /tools/include/asm
-cp -R include/linux /tools/include</userinput></screen>
-
-</sect2>
-
-<sect2 role="content"><title/>
-<para>Details on this package are located in <xref
-linkend="contents-linux-libc-headers" role="."/></para>
-</sect2>
-
-</sect1>
-
--
http://linuxfromscratch.org/mailman/listinfo/lfs-book
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page