[Clfs-commits] commit: r4913 - in /branches/clfs-embedded: BOOK/ BOOK/cross-tools/arm/ BOOK/cross-tools/common/ BOOK/cross-tools/mips/ BOOK/materials/common/ patches/

svn at cross-lfs.org svn at cross-lfs.org
Sat Mar 28 08:15:29 PDT 2009


Author: jim
Date: Sat Mar 28 15:15:27 2009
New Revision: 4913

Log:
Updates - Endian Check - GCC and Binutils Patch Updates

Added:
    branches/clfs-embedded/patches/binutils-2.19.1-branch_update-1.patch
    branches/clfs-embedded/patches/gcc-4.3.3-branch_update-5.patch
Removed:
    branches/clfs-embedded/patches/gcc-4.3.3-branch_update-3.patch
Modified:
    branches/clfs-embedded/BOOK/cross-tools/arm/variables.xml
    branches/clfs-embedded/BOOK/cross-tools/common/binutils.xml
    branches/clfs-embedded/BOOK/cross-tools/mips/variables.xml
    branches/clfs-embedded/BOOK/general.ent
    branches/clfs-embedded/BOOK/materials/common/patches.xml
    branches/clfs-embedded/BOOK/patches.ent

Modified: branches/clfs-embedded/BOOK/cross-tools/arm/variables.xml
==============================================================================
--- branches/clfs-embedded/BOOK/cross-tools/arm/variables.xml (original)
+++ branches/clfs-embedded/BOOK/cross-tools/arm/variables.xml Sat Mar 28 15:15:27 2009
@@ -30,7 +30,7 @@
   href="../x86/variables.xml"
   xpointer="xpointer(//*[@os='e'])"/>
 
-<screen os="f"><userinput>export CLFS_ENDIAN=$(echo ${CLFS_TARGET} | sed -e 's/armeb/BIG/' -e 's/arm/LITTLE/')
+<screen os="f"><userinput>export CLFS_ENDIAN=$(echo ${CLFS_ARCH} | sed -e 's/armeb/BIG/' -e 's/arm/LITTLE/')
 if [ "${CLFS_ENDIAN}" = "LITTLE" ]; then
   export CLFS_NOT_ENDIAN=BIG
 else

Modified: branches/clfs-embedded/BOOK/cross-tools/common/binutils.xml
==============================================================================
--- branches/clfs-embedded/BOOK/cross-tools/common/binutils.xml (original)
+++ branches/clfs-embedded/BOOK/cross-tools/common/binutils.xml Sat Mar 28 15:15:27 2009
@@ -31,12 +31,10 @@
     linker and assembler to determine which of their own features to
     enable.</para>
 
-<!--
     <para os="p1">The following patch contains a number of updates to the
     &binutils-version; branch by the Binutils developers:</para>
 
 <screen os="p2"><userinput>patch -Np1 -i ../&binutils-branch_update-patch;</userinput></screen>
--->
 
     <para os="p3">To make sure that the proper syntax is used for a couple of
     tools, apply the following patch:</para>

Modified: branches/clfs-embedded/BOOK/cross-tools/mips/variables.xml
==============================================================================
--- branches/clfs-embedded/BOOK/cross-tools/mips/variables.xml (original)
+++ branches/clfs-embedded/BOOK/cross-tools/mips/variables.xml Sat Mar 28 15:15:27 2009
@@ -30,7 +30,7 @@
   href="../x86/variables.xml"
   xpointer="xpointer(//*[@os='e'])"/>
 
-<screen os="f"><userinput>export CLFS_ENDIAN=$(echo ${CLFS_TARGET} | sed -e 's/mipsel/LITTLE/' -e 's/mips/BIG/')
+<screen os="f"><userinput>export CLFS_ENDIAN=$(echo ${CLFS_ARCH} | sed -e 's/mipsel/LITTLE/' -e 's/mips/BIG/')
 if [ "${CLFS_ENDIAN}" = "LITTLE" ]; then
   export CLFS_NOT_ENDIAN=BIG
 else

Modified: branches/clfs-embedded/BOOK/general.ent
==============================================================================
--- branches/clfs-embedded/BOOK/general.ent (original)
+++ branches/clfs-embedded/BOOK/general.ent Sat Mar 28 15:15:27 2009
@@ -2,7 +2,7 @@
 
 <!ENTITY month "03"> <!-- Use two digits -->
 <!ENTITY month_name "March">
-<!ENTITY day "23"> <!-- Use two digits -->
+<!ENTITY day "28"> <!-- Use two digits -->
 <!ENTITY year "2009"> <!-- Use four digits -->
 
 <!ENTITY releasedate "&month_name; &day;, &year;">

Modified: branches/clfs-embedded/BOOK/materials/common/patches.xml
==============================================================================
--- branches/clfs-embedded/BOOK/materials/common/patches.xml (original)
+++ branches/clfs-embedded/BOOK/materials/common/patches.xml Sat Mar 28 15:15:27 2009
@@ -18,7 +18,6 @@
 
   <variablelist role="materials">
 
-<!--
     <varlistentry>
       <term>Binutils Branch Update Patch - <token>&binutils-branch_update-patch-size;</token>:</term>
       <listitem>
@@ -27,7 +26,6 @@
         <para>MD5 sum: <literal>&binutils-branch_update-patch-md5;</literal></para>
       </listitem>
     </varlistentry>
--->
 
     <varlistentry>
       <term>Binutils Posix Patch - <token>&binutils-posix-patch-size;</token>:</term>

Modified: branches/clfs-embedded/BOOK/patches.ent
==============================================================================
--- branches/clfs-embedded/BOOK/patches.ent (original)
+++ branches/clfs-embedded/BOOK/patches.ent Sat Mar 28 15:15:27 2009
@@ -4,9 +4,9 @@
 
 <!-- Start of Common Patches -->
 
-<!ENTITY binutils-branch_update-patch "binutils-&binutils-version;-branch_update-4.patch">
-<!ENTITY binutils-branch_update-patch-md5 "4f587bb8161b08e60b7e7bc98c56ff7d">
-<!ENTITY binutils-branch_update-patch-size "120 KB">
+<!ENTITY binutils-branch_update-patch "binutils-&binutils-version;-branch_update-1.patch">
+<!ENTITY binutils-branch_update-patch-md5 "bd1b2aa7ffe522a65c2dd1cdd373e563">
+<!ENTITY binutils-branch_update-patch-size "555 KB">
 
 <!ENTITY binutils-posix-patch "binutils-&binutils-version;-posix-1.patch">
 <!ENTITY binutils-posix-patch-md5 "beb4af55c8de949235758e6436e689e7">
@@ -16,9 +16,9 @@
 <!ENTITY busybox-branch_update-patch-md5 "0c696b69d8f4d6eb20c9fc2af2236eee">
 <!ENTITY busybox-branch_update-patch-size "11 KB">
 
-<!ENTITY gcc-branch_update-patch "gcc-&gcc-version;-branch_update-3.patch">
-<!ENTITY gcc-branch_update-patch-md5 "c04708c294327b346bf26d9c7faf6df4">
-<!ENTITY gcc-branch_update-patch-size "325 KB">
+<!ENTITY gcc-branch_update-patch "gcc-&gcc-version;-branch_update-5.patch">
+<!ENTITY gcc-branch_update-patch-md5 "d52b227655a341694809de17eba2d58d">
+<!ENTITY gcc-branch_update-patch-size "359 KB">
 
 <!ENTITY gcc-posix-patch "gcc-&gcc-version;-posix-1.patch">
 <!ENTITY gcc-posix-patch-md5 "ccc0d5f959234bf4fed2b6fa338d6117">




More information about the Clfs-commits mailing list