Changes in / [e67fb9b:a9cb92d] in clfs-embedded


Ignore:
Files:
13 added
5 deleted
25 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified .gitignore

    re67fb9b ra9cb92d  
    11*.swp
    2 \#*#
    3 *~
  • TabularUnified BOOK/beyond-clfs/common/dropbear.xml

    re67fb9b ra9cb92d  
    3636    <para os="a">Configure dropbear:</para>
    3737
    38 <screen os="b"><userinput>CC="${CC} -Os" ./configure --prefix=/usr --host=${CLFS_TARGET}</userinput></screen>
     38<screen os="b"><userinput>CC="${CC} ${BUILD} -Os" ./configure --prefix=/usr --host=${CLFS_TARGET}</userinput></screen>
    3939
    4040    <para os="c">Now we will utilize /dev/urandom instead of /dev/random. To allow
  • TabularUnified BOOK/beyond-clfs/common/iptables.xml

    re67fb9b ra9cb92d  
    3232    <para os="a">Configure IPTables:</para>
    3333
    34 <screen os="b"><userinput>CC="${CC} -Os" ./configure --prefix=/usr --host=${CLFS_TARGET} \
     34<screen os="b"><userinput>CC="${CC} ${BUILD} -Os" ./configure --prefix=/usr --host=${CLFS_TARGET} \
    3535  --libexecdir=/lib/iptables --without-kernel -enable-libipq --enable-shared</userinput></screen>
    3636
  • TabularUnified BOOK/beyond-clfs/common/libnl.xml

    re67fb9b ra9cb92d  
    3131    <para os="a">Configure libnl:</para>
    3232
    33 <screen os="b"><userinput>CC="${CC} -Os" ./configure --prefix=/usr --host=${CLFS_TARGET}</userinput></screen>
     33<screen os="b"><userinput>CC="${CC} ${BUILD} -Os" ./configure --prefix=/usr --host=${CLFS_TARGET}</userinput></screen>
    3434
    3535    <para os="c">Compile the package:</para>
  • TabularUnified BOOK/bootscripts/common/network.xml

    re67fb9b ra9cb92d  
    110110    Create a sample udhcpc.conf:</para>
    111111
    112 <screen><userinput>cat &gt; ${CLFS}/etc/udhcpc.conf &lt;&lt; "EOF"
     112<screen><userinput>mkdir ${CLFS}/etc/network.d &amp;&amp;
     113cat &gt; ${CLFS}/etc/network.d/interface.eth0 &lt;&lt; "EOF"
    113114<literal>#!/bin/sh
    114115# udhcpc Interface Configuration
  • TabularUnified BOOK/cross-tools/arm/abi.xml

    re67fb9b ra9cb92d  
    1111  <title>ABI Variables</title>
    1212
    13   <para os="a">On the ARM architecture, there are two major ABI types to choose
    14   from: EABI and OABI.  There is also a Thumb ABI and an Intel IWMMX specific
    15   ABI.</para>
    16 
    17   <para os="b">The EABI (Embedded ABI) is newer and supports additional
    18   features, faster software floating point operations, and Thumb interworking,
    19   but is only compatible with ARMv4t and newer cores.  The EABI has
    20   sub-ABIs of: aapcs-linux and aapcs.  aapcs-linux has standard Linux 4 byte
    21   enums while aapcs has variable length enums.</para>
    22 
    23   <para os="c">The OABI (old ABI) is called apcs-gnu and supports ARMv4 and
    24   older cores.</para>
    25 
    2613  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    27   href="../common/abi.xml"
     14  href="../x86/abi.xml"
    2815  xpointer="xpointer(//*[@os='a'])"/>
    2916
    3017  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    31   href="../common/abi.xml"
     18  href="../x86/abi.xml"
    3219  xpointer="xpointer(//*[@os='b'])"/>
    3320
    3421  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    35   href="../common/abi.xml"
     22  href="../x86/abi.xml"
    3623  xpointer="xpointer(//*[@os='c'])"/>
    3724
     
    4936        <row>
    5037          <entry>ABI</entry>
    51           <entry>CLFS_ABI=Value</entry>
     38          <entry>BUILD=Value</entry>
    5239          <entry>Note</entry>
    5340        </row>
     
    5744        <row>
    5845          <entry>apcs-gnu</entry>
    59           <entry>apcs-gnu</entry>
     46          <entry>-mabi=apcs-gnu</entry>
    6047          <entry>Legacy ABI, arm4 and older</entry>
    6148        </row>
    6249        <row>
    6350          <entry>atpcs</entry>
    64           <entry>atpcs</entry>
     51          <entry>-mabi=atpcs</entry>
    6552          <entry>Thumb ABI</entry>
    6653        </row>
    6754        <row>
    6855          <entry>aapcs</entry>
    69           <entry>aapcs</entry>
     56          <entry>-mabi=aapcs</entry>
    7057          <entry>EABI w/ variable size enums</entry>
    7158        </row>
    7259        <row>
    7360          <entry>aapcs-linux</entry>
    74           <entry>aapcs-linux</entry>
     61          <entry>-mabi=aapcs-linux</entry>
    7562          <entry>EABI w/ standard Linux 32 bit (int) enums</entry>
    7663        </row>
    7764        <row>
    7865          <entry>iwmmxt</entry>
    79           <entry>iwmmxt</entry>
     66          <entry>-mabi=iwmmxt</entry>
    8067          <entry>Supports Intel XScale MMX extensions</entry>
    8168        </row>
  • TabularUnified BOOK/cross-tools/arm/variables.xml

    re67fb9b ra9cb92d  
    1313  <bridgehead renderas="sect4">Setting Host and Target</bridgehead>
    1414
    15   <para os="a">During the building of the cross-compile tools you will need to
    16   set a few variables that will be dependent on your particular needs.
    17   You will need to set the target triplet for the target architecture and CPU
    18   endianess. If you do not know what triplet or endianess you want,
    19   you can use the table at the bottom of this page as a reference. Set
    20   the command using the method listed below:</para>
     15  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     16  href="../x86/variables.xml"
     17  xpointer="xpointer(//*[@os='a'])"/>
    2118
    2219  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    23   href="../common/variables.xml"
     20  href="../x86/variables.xml"
    2421  xpointer="xpointer(//*[@os='b'])"/>
    2522
    2623  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    27   href="../common/variables.xml"
     24  href="../x86/variables.xml"
    2825  xpointer="xpointer(//*[@os='c'])"/>
    2926
     
    3229
    3330  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    34   href="../common/variables.xml"
     31  href="../x86/variables.xml"
    3532  xpointer="xpointer(//*[@os='g'])"/>
    3633
    3734  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    38   href="../common/variables.xml"
     35  href="../x86/variables.xml"
    3936  xpointer="xpointer(//*[@os='h'])"/>
    4037
    4138  <table os="i">
    42     <title>Processor Type, ABI, and  Target Triplets</title>
    43     <?dbfo table-width="7in" ?>
     39    <title>Processor Type and  Target Triplets</title>
     40    <?dbfo table-width="5in" ?>
    4441
    4542    <tgroup cols="2">
    4643
    4744      <colspec colnum="1" colwidth="2.5in" colname="Processor"/>
    48       <colspec colnum="2" colwidth="1in" colname="Endian"/>
    49       <colspec colnum="3" colwidth="1in" colname="ABI"/>
    50       <colspec colnum="4" colwidth="2.5in" colname="Triplet"/>
     45      <colspec colnum="2" colwidth="2.5in" colname="Triplet"/>
    5146
    5247      <thead>
    5348        <row>
    5449          <entry>Processor</entry>
    55           <entry>Endian</entry>
    56           <entry>ABI</entry>
     50          <entry>Endianess</entry>
    5751          <entry>Target Triplet</entry>
    5852        </row>
     
    6357          <entry>Generic arm</entry>
    6458          <entry>little</entry>
    65           <entry>OABI</entry>
    6659          <entry>arm-unknown-linux-uclibc</entry>
    67         </row>
    68         <row>
    69           <entry>Generic arm, version 4</entry>
    70           <entry>little</entry>
    71           <entry>OABI</entry>
    72           <entry>armv4-unknown-linux-uclibc</entry>
    7360        </row>
    7461        <row>
    7562          <entry>Generic arm, version 5</entry>
    7663          <entry>little</entry>
    77           <entry>EABI</entry>
    78           <entry>armv5l-unknown-linux-uclibcgnueabi</entry>
     64          <entry>armv5l-unknown-linux-uclibc</entry>
    7965        </row>
    8066        <row>
    8167          <entry>Generic arm, version 5</entry>
    8268          <entry>big</entry>
    83           <entry>EABI</entry>
    84           <entry>armv5b-unknown-linux-uclibcgnueabi</entry>
    85         </row>
    86         <row>
    87           <entry>Generic arm</entry>
    88           <entry>little</entry>
    89           <entry>EABI</entry>
    90           <entry>arm-unknown-linux-uclibcgnueabi</entry>
    91         </row>
    92         <row>
    93           <entry>Generic arm, version 7-a </entry>
    94           <entry>little</entry>
    95           <entry>EABI</entry>
    96           <entry>armv7a-unknown-linux-uclibcgnueabi</entry>
     69          <entry>armv5b-unknown-linux-uclibc</entry>
    9770        </row>
    9871      </tbody>
  • TabularUnified BOOK/cross-tools/common/gcc-final.xml

    re67fb9b ra9cb92d  
    4040  --with-sysroot=${CLFS} --disable-nls --enable-shared \
    4141  --enable-languages=c --enable-c99 --enable-long-long \
    42   --with-mpfr=${CLFS}/cross-tools --with-gmp=${CLFS}/cross-tools \
    43   --with-mpc=${CLFS}/cross-tools --with-abi=${CLFS_ABI}</userinput></screen>
     42  --with-mpfr=${CLFS}/cross-tools --with-gmp=${CLFS}/cross-tools</userinput></screen>
    4443
    4544    <variablelist os="af">
    46       <title>The meaning of the configure options not used previously:</title>
     45      <title>The meaning of the new configure options:</title>
    4746
    4847      <varlistentry os="af1">
    49         <term><parameter>--enable-shared</parameter></term>
     48        <term><parameter>--enable-languages=c</parameter></term>
    5049        <listitem>
    51           <para>Enables the creation of the shared libraries.</para>
     50          <para>This option ensures that only the C compiler is built.</para>
    5251        </listitem>
    5352      </varlistentry>
  • TabularUnified BOOK/cross-tools/common/gcc-static.xml

    re67fb9b ra9cb92d  
    4343  --with-mpc=${CLFS}/cross-tools --without-headers --with-newlib \
    4444  --disable-decimal-float --disable-libgomp --disable-libmudflap \
    45   --disable-libssp --disable-threads --enable-languages=c \
    46   --with-abi=${CLFS_ABI}</userinput></screen>
     45  --disable-libssp --disable-threads --enable-languages=c</userinput></screen>
    4746
    4847    <variablelist os="af">
     
    207206      </varlistentry>
    208207
    209       <varlistentry os="af19">
    210         <term><parameter>--with-abi=${CLFS_ABI}</parameter></term>
    211         <listitem>
    212           <para>This option sets the ABI selected earlier.</para>
    213         </listitem>
    214       </varlistentry>
    215 
    216208    </variablelist>
    217209
  • TabularUnified BOOK/cross-tools/common/gmp.xml

    re67fb9b ra9cb92d  
    3636<screen os="d"><userinput>make</userinput></screen>
    3737
    38     <note os="e">
    39       <para>Some versions of GCC (notably 4.3.2 which ships with Debian
    40       5) will compile GMP without errors but in a subtly broken way.  To ensure
    41       GMP is compiled and functioning correctly, optionally run the test suite:</para>
     38    <para os="e">Install the package:</para>
    4239
    43 <screen><userinput>make check</userinput></screen>
    44     </note>
    45 
    46     <para os="f">Install the package:</para>
    47 
    48 <screen os="g"><userinput>make install</userinput></screen>
     40<screen os="f"><userinput>make install</userinput></screen>
    4941
    5042  </sect2>
  • TabularUnified BOOK/cross-tools/mips/abi.xml

    re67fb9b ra9cb92d  
    1212
    1313  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    14   href="../common/abi.xml"
     14  href="../x86/abi.xml"
    1515  xpointer="xpointer(//*[@os='a'])"/>
    1616
    1717  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    18   href="../common/abi.xml"
     18  href="../x86/abi.xml"
    1919  xpointer="xpointer(//*[@os='b'])"/>
    2020
    2121  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    22   href="../common/abi.xml"
     22  href="../x86/abi.xml"
    2323  xpointer="xpointer(//*[@os='c'])"/>
    2424
     
    3535        <row>
    3636          <entry>ABI</entry>
    37           <entry>CLFS_ABI=Value</entry>
     37          <entry>BUILD=Value</entry>
    3838        </row>
    3939      </thead>
     
    4242        <row>
    4343          <entry>32-Bit</entry>
    44           <entry>32</entry>
     44          <entry>-mabi=32</entry>
    4545        </row>
    4646        <row>
    4747          <entry>N32</entry>
    48           <entry>n32</entry>
     48          <entry>-mabi=n32</entry>
    4949        </row>
    5050        <row>
    5151          <entry>64-Bit</entry>
    52           <entry>64</entry>
     52          <entry>-mabi=64</entry>
    5353        </row>
    5454      </tbody>
  • TabularUnified BOOK/cross-tools/mips/variables.xml

    re67fb9b ra9cb92d  
    1313  <bridgehead renderas="sect4">Setting Host and Target</bridgehead>
    1414
    15   <para os="a">During the building of the cross-compile tools you will need to
    16   set a few variables that will be dependent on your particular needs.
    17   You will need to set the target triplet for the target architecture, the MIPS
    18   level, and CPU endianess. If you do not know what triplet or level you want,
    19   you can use the table at the bottom of this page as a reference. Set
    20   the command using the method listed below:</para>
     15  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     16  href="../x86/variables.xml"
     17  xpointer="xpointer(//*[@os='a'])"/>
    2118
    2219  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    23   href="../common/variables.xml"
     20  href="../x86/variables.xml"
    2421  xpointer="xpointer(//*[@os='b'])"/>
    2522
    2623  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    27   href="../common/variables.xml"
     24  href="../x86/variables.xml"
    2825  xpointer="xpointer(//*[@os='c'])"/>
    2926
     
    3936
    4037  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    41   href="../common/variables.xml"
     38  href="../x86/variables.xml"
    4239  xpointer="xpointer(//*[@os='g'])"/>
    4340
  • TabularUnified BOOK/cross-tools/x86-chapter.xml

    re67fb9b ra9cb92d  
    1414  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/introduction.xml"/>
    1515  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/cflags.xml"/>
     16  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="x86/abi.xml"/>
    1617  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="x86/variables.xml"/>
    1718  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/linux-headers.xml"/>
     
    2021  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/mpc.xml"/>
    2122  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/binutils.xml"/>
    22   <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="x86/gcc-static.xml"/>
     23  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/gcc-static.xml"/>
    2324  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/uclibc.xml"/>
    24   <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="x86/gcc-final.xml"/>
     25  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/gcc-final.xml"/>
    2526
    2627</chapter>
  • TabularUnified BOOK/cross-tools/x86/variables.xml

    re67fb9b ra9cb92d  
    1515  <para os="a">During the building of the cross-compile tools you will need to
    1616  set a few variables that will be dependent on your particular needs.
    17   You will need to set the target triplet for the target architecture, the CPU
    18   type, and CPU endianess. If you do not know what triplet or CPU type you want,
     17  You will need to set the target triplet for the target architecture. As well
     18  as the CPUs type and endianess. If you do not know what triplet you want,
    1919  you can use the table at the bottom of this page as a reference. Set
    2020  the command using the method listed below:</para>
    2121
    2222<screen os="b"><userinput>export CLFS_HOST=$(echo ${MACHTYPE} | sed "s/-[^-]*/-cross/")
    23 export CLFS_TARGET=<replaceable>[target triplet]</replaceable>
    24 export CLFS_CPU=<replaceable>[cpu type]</replaceable></userinput></screen>
     23export CLFS_TARGET=<replaceable>[target triplet]</replaceable></userinput></screen>
    2524
    2625  <para os="c">Now we will set the architecture and endianess of the CPU based
     
    3635echo export CLFS_TARGET=\""${CLFS_TARGET}\"" &gt;&gt; ~/.bashrc
    3736echo export CLFS_ARCH=\""${CLFS_ARCH}\"" &gt;&gt; ~/.bashrc
    38 echo export CLFS_ENDIAN=\""${CLFS_ENDIAN}\"" &gt;&gt; ~/.bashrc
    39 echo export CLFS_ENDIAN=\""${CLFS_CPU}\"" &gt;&gt; ~/.bashrc</userinput></screen>
     37echo export CLFS_ENDIAN=\""${CLFS_ENDIAN}\"" &gt;&gt; ~/.bashrc</userinput></screen>
    4038
    4139  <table os="i">
    4240    <title>Processor Type and  Target Triplets</title>
    43     <?dbfo table-width="7.5in" ?>
     41    <?dbfo table-width="4.5in" ?>
    4442
    4543    <tgroup cols="2">
     
    4745      <colspec colnum="1" colwidth="2.5in"   colname="Processor"/>
    4846      <colspec colnum="2" colwidth="2in" colname="Triplet"/>
    49       <colspec colnum="3" colwidth="0.5in" colname="CPU Type"/>
    50       <colspec colnum="4" colwidth="2.5in" colname="Note"/>
    5147
    5248      <thead>
     
    5450          <entry>Processor</entry>
    5551          <entry>Target Triplet</entry>
    56           <entry>CPU Type</entry>
    57           <entry>Note</entry>
    5852        </row>
    5953      </thead>
     
    6357          <entry>486 Compatibles</entry>
    6458          <entry>i486-pc-linux-uclibc</entry>
    65           <entry>i486</entry>
    66           <entry>Intel's i486</entry>
    6759        </row>
    6860        <row>
    6961          <entry>Pentium, K6, 586 Compatibles</entry>
    7062          <entry>i586-pc-linux-uclibc</entry>
    71           <entry>i586</entry>
    72           <entry>Intel Pentium without MMX</entry>
    7363        </row>
    7464        <row>
    7565          <entry>Pentium II, Pentium III, Pentium 4</entry>
    7666          <entry>i686-pc-linux-uclibc</entry>
    77           <entry>i686</entry>
    78           <entry>PentiumPro instruction set</entry>
    7967        </row>
    8068        <row>
    81           <entry>Athlon</entry>
     69          <entry>Athlon, Duron</entry>
    8270          <entry>i686-pc-linux-uclibc</entry>
    83           <entry>athlon</entry>
    84           <entry>AMD 32 bit Athlon</entry>
    8571        </row>
    8672        <row>
    87           <entry>Opteron</entry>
     73          <entry>x86_64</entry>
    8874          <entry>x86_64-unknown-linux-uclibc</entry>
    89           <entry>k8</entry>
    90           <entry>AMD K8 processors with x86-64</entry>
    9175        </row>
    9276      </tbody>
  • TabularUnified BOOK/final-system/common/e2fsprogs.xml

    re67fb9b ra9cb92d  
    3737    <para os="c">Prepare E2fsprogs for compilation:</para>
    3838
    39 <screen os="d"><userinput>CC="${CC} -Os" ../configure --prefix=/usr \
     39<screen os="d"><userinput>CC="${CC} ${BUILD} -Os" ../configure --prefix=/usr \
    4040    --with-root-prefix="" --host=${CLFS_TARGET} --disable-tls \
    4141    --disable-debugfs --disable-e2initrd-helper --disable-nls</userinput></screen>
  • TabularUnified BOOK/final-system/common/iana-etc.xml

    re67fb9b ra9cb92d  
    2626    <title>Installation of Iana-Etc</title>
    2727
    28     <para os="a">Iana-Etc comes with outdated data and IANA has changed the
    29     download location used to obtain up-to-date data.  Apply the following patch
    30     to use more up to date data and to correct the download location:</para>
    31 
    32 <screen os="b"><userinput>patch -Np1 -i ../&iana-etc-update-patch;</userinput></screen>
    33 
    34     <note os="c">
    35       <para>If you have an internet connection and would like even more up-to-date
    36       data to be used when building Iana-Etc, execute:
    37 <screen><userinput>make get</userinput></screen>
    38       </para>
    39     </note>
    40 
    41     <para os="d">The following command converts the raw data provided by IANA into
     28    <para os="a">The following command converts the raw data provided by IANA into
    4229    the correct formats for the <filename>/etc/protocols</filename> and
    4330    <filename>/etc/services</filename> data files:</para>
    4431
    45 <screen os="e"><userinput>make</userinput></screen>
     32<screen os="b"><userinput>make</userinput></screen>
    4633
    47     <para os="f">This package does not come with a test suite.</para>
     34    <para os="c">This package does not come with a test suite.</para>
    4835
    49     <para os="g">Install the package:</para>
     36    <para os="d">Install the package:</para>
    5037
    51 <screen os="h"><userinput>make DESTDIR=${CLFS} install</userinput></screen>
     38<screen os="e"><userinput>make DESTDIR=${CLFS} install</userinput></screen>
    5239
    5340  </sect2>
  • TabularUnified BOOK/final-system/common/zlib.xml

    re67fb9b ra9cb92d  
    3333    <para os="c">Prepare Zlib for compilation:</para>
    3434
    35 <screen os="d"><userinput>CC="${CC}" ./configure --prefix=/usr --shared</userinput></screen>
     35<screen os="d"><userinput>CC="${CC} ${BUILD}" ./configure --prefix=/usr --shared</userinput></screen>
    3636
    3737    <variablelist os="aa">
  • TabularUnified BOOK/general.ent

    re67fb9b ra9cb92d  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    22
    3 <!ENTITY month "02"> <!-- Use two digits -->
    4 <!ENTITY month_name "February">
    5 <!ENTITY day "10"> <!-- Use two digits -->
     3<!ENTITY month "01"> <!-- Use two digits -->
     4<!ENTITY month_name "January">
     5<!ENTITY day "29"> <!-- Use two digits -->
    66<!ENTITY year "2011"> <!-- Use four digits -->
    77
  • TabularUnified BOOK/introduction/arm/changelog.xml

    re67fb9b ra9cb92d  
    3434
    3535    <listitem>
    36       <para>February 10, 2011</para>
    37       <itemizedlist>
    38         <listitem>
    39           <para>[abradford] - Fixed builds for EABI (aapcs and aapcs-linux)
    40           ABI choices by adding target triplets ending in uclibcgnueabi.</para>
    41         </listitem>
    42       </itemizedlist>
    43     </listitem>
    44 
    45     <listitem>
    46       <para>January 30, 2011</para>
    47       <itemizedlist>
    48         <listitem>
    49           <para>[abradford] - Added notes to ARM ABI variable list.</para>
    50         </listitem>
    51       </itemizedlist>
    52     </listitem>
    53 
    54     <listitem>
    5536      <para>November 11, 2006</para>
    5637      <itemizedlist>
  • TabularUnified BOOK/introduction/common/changelog.xml

    re67fb9b ra9cb92d  
    3636    </listitem>
    3737-->
    38 
    39     <listitem>
    40       <para>February 10, 2011</para>
    41       <itemizedlist>
    42         <listitem>
    43           <para>[abradford] - Changed GCC Static and Final to build GCC for
    44           ${CLFS_ABI} for ARM and MIPS, ${CLFS_CPU} for x86.  This removes the
    45           need for using the ${BUILD} variable when building packages.</para>
    46         </listitem>
    47         <listitem>
    48           <para>[abradford] - Updated Resources section.</para>
    49         </listitem>
    50       </itemizedlist>
    51     </listitem>
    52    
    53     <listitem>
    54       <para>January 30, 2011</para>
    55       <itemizedlist>
    56         <listitem>
    57           <para>[abradford] - Updated MPFR download link.</para>
    58         </listitem>
    59         <listitem>
    60           <para>[abradford] - Updated GCC to version 4.5.2.</para>
    61         </listitem>
    62         <listitem>
    63           <para>[abradford] - Updated Binutils to version 2.21.</para>
    64         </listitem>
    65         <listitem>
    66           <para>[abradford] - Added information to GCC's configure options.</para>
    67         </listitem>
    68         <listitem>
    69           <para>[abradford] - Updated Iana-Etc to use more up-to-date data.</para>
    70         </listitem>
    71       </itemizedlist>
    72     </listitem>
    7338
    7439    <listitem>
  • TabularUnified BOOK/introduction/common/resources.xml

    re67fb9b ra9cb92d  
    2424    <title>Mailing Lists</title>
    2525
    26     <para>The <uri>cross-lfs.org</uri> server hosts a number of
     26    <para>The <uri>linuxfromscratch.org</uri> server hosts a number of
    2727    mailing lists used for the development of the CLFS project. These lists
    2828    include the main development and support lists, among others. If the
    2929    FAQ does not solve the problem you are having, the next step would be to
    30     search the mailing lists at <ulink url="&clfs-wiki;wiki/lists"/>.</para>
     30    search the mailing lists at <ulink url="&lfs-root;search.html"/>.</para>
    3131
    3232    <para>For information on the different lists, how to subscribe, archive
    3333    locations, and additional information, visit
    34     <ulink url="&clfs-wiki;wiki/lists"/>.</para>
     34    <ulink url="&lfs-root;mail.html"/>. For mailing lists specifically
     35    for CLFS, visit <ulink url="&clfs-wiki;wiki/lists"/>.</para>
    3536
    3637  </sect2>
     
    5455    <uri>chat.freenode.net</uri>. The support channel for cross-lfs
    5556    is named #cross-lfs. If you need to show people the output of your
    56     problems, please use <ulink url="http://pastebin.cross-lfs.org"/> and
    57     reference the pastebin URL when asking your questions.</para>
     57    problems, please use http://pastebin.cross-lfs.org and reference
     58    the pastebin URL when asking your questions.</para>
    5859
    5960  </sect2>
     
    7172    <title>Mirror Sites</title>
    7273
    73     <para>The LFS and CLFS projects have a number of world-wide mirrors to make
     74    <para>The LFS project has a number of world-wide mirrors to make
    7475    accessing the website and downloading the required packages more
    7576    convenient. Please visit the LFS website at <ulink
    7677    url="&lfs-root;mirrors.html"/> for a list of current mirrors of
    7778    the LFS website, or <ulink url="&clfs-wiki;wiki/mirrors"/> for
    78     mirrors of the CLFS website.</para>
     79    mirrors of CLFS.</para>
    7980
    8081  </sect2>
  • TabularUnified BOOK/introduction/wrt/supporteddevices.xml

    re67fb9b ra9cb92d  
    1010  <?dbhtml filename="supported-devices.html"?>
    1111
    12   <para>In order to build CLFS for your device, we need to know what processor
    13   it has, if it is big or little endian, and what MIPS ISA level it is. The
    14   MIPS ISA level is needed so that we can build uClibc properly. </para>
     12  <para>In order to build CLFS for your device, we need to know what processor it has, amd more inportantly if it is a big or small edin, and what MIPS ISA level it is. The MIPS ISA level is needed so that we can build uClibc properly. </para>
    1513
    16   <para>The following is a list of devices that have been tested and reported
    17   as tested and working with this book. Apart from this list, there is no
    18   guarantee that your device, will work. If you are successful in getting a
    19   device to work, please contact the CLFS development team, and we will add
    20   it to the list. For the most recent and up to date list, please view the
    21   GIT version of this book. </para>
     14  <para> The following is a list of devices that have been tested and reported as tested and working with this book. Apart from this list, there is no garentee that your device, apart from this list will work. If U secussfully get a device to work, please contact the CLFS Dev team, and we will add it to the list. For the most recent and up to date list, please view the SVN version of this book. </para>
    2215
    2316  <table os="g">
     
    3124      <colspec colnum="3" colwidth="1in"   colname="Supported - Working"/>
    3225      <colspec colnum="4" colwidth="2.2in" colname="Processor"/>
    33       <colspec colnum="5" colwidth="1.1in" colname="Endian"/>
     26      <colspec colnum="5" colwidth="1.1in" colname="Big or Small Endian"/>
    3427      <colspec colnum="6" colwidth="1in"   colname="Mips Level"/>
    3528
     
    4033          <entry>Supported - Working</entry>
    4134          <entry>Processor</entry>
    42           <entry>Endian</entry>
     35          <entry>Big or Small Endian</entry>
    4336          <entry>Mips Level</entry>
    4437        </row>
     
    5144          <entry>Testing</entry>
    5245          <entry>Broadcom 4712 @ 200MHz, 2MB Flash, 8MB RAM</entry>
    53           <entry>Little</entry>
     46          <entry>Small</entry>
    5447          <entry>1 or 2, testing</entry>
    5548        </row>
  • TabularUnified BOOK/introduction/x86/changelog.xml

    re67fb9b ra9cb92d  
    3434
    3535    <listitem>
    36       <para>February 10, 2011</para>
    37       <itemizedlist>
    38         <listitem>
    39           <para>[abradford] - Removed ABI selection for x86, it isn't
    40           needed and was misleading.</para>
    41         </listitem>
    42       </itemizedlist>
    43     </listitem>
    44 
    45     <listitem>
    4636      <para>November 05, 2006</para>
    4737      <itemizedlist>
  • TabularUnified BOOK/materials/common/patches.xml

    re67fb9b ra9cb92d  
    3838
    3939    <varlistentry>
    40       <term>Iana-Etc Update Patch - <token>&iana-etc-update-patch-size;</token>:</term>
    41       <listitem>
    42         <para>Download: <ulink
    43         url="&patches-root;&iana-etc-update-patch;"/></para>
    44         <para>MD5 sum: <literal>&iana-etc-update-patch-md5;</literal></para>
    45       </listitem>
    46     </varlistentry>
    47 
    48     <varlistentry>
    4940      <term>uClibc Configs Patch - <token>&uclibc-configs-patch-size;</token>:</term>
    5041      <listitem>
  • TabularUnified BOOK/patches.ent

    re67fb9b ra9cb92d  
    1212<!ENTITY busybox-fixes-patch-md5 "64bee07ba3efbb512fb4f348e814bf31">
    1313<!ENTITY busybox-fixes-patch-size "4 KB">
    14 
    15 <!ENTITY iana-etc-update-patch "iana-etc-&iana-etc-version;-update-1.patch">
    16 <!ENTITY iana-etc-update-patch-md5 "9b4d102672fc8bf777bbb95d1007edda">
    17 <!ENTITY iana-etc-update-patch-size "864 KB">
    1814
    1915<!ENTITY uclibc-configs-patch "uClibc-&uclibc-version;-configs-2.patch">
Note: See TracChangeset for help on using the changeset viewer.