Changeset c14754c in clfs-embedded


Ignore:
Timestamp:
Nov 12, 2006, 9:06:25 PM (17 years ago)
Author:
Jim Gifford <clfs@…>
Branches:
master
Children:
9068678
Parents:
4bdf1d0
Message:

Added More Updates for MIPS

Location:
BOOK/cross-tools/mips
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • BOOK/cross-tools/mips/uclibc.xml

    r4bdf1d0 rc14754c  
    2929<screen os="b"><userinput>cp extra/Configs/Config.in extra/Configs/Config.in.orig
    3030sed -e "s:default TARGET_i386:default TARGET_mips:" \
    31    extra/Configs/Config.in.orig > extra/Configs/Config.in</userinput></screen>
     31   extra/Configs/Config.in.orig > extra/Configs/Config.in
     32cp extra/Configs/Config.mips extra/Configs/Config.mips.orig
     33sed -e "s:default CONFIG_MIPS_ISA_1:default CONFIG_MIPS_ISA_${CLFS_MIPS_LEVEL}:" \
     34   extra/Configs/Config.mips.orig > extra/Configs/Config.mips</userinput></screen>
    3235
    3336  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
  • BOOK/cross-tools/mips/variables.xml

    r4bdf1d0 rc14754c  
    2929  xpointer="xpointer(//*[@os='d'])"/>
    3030
     31  <para os="d1">Now you will need to set the MIPS LEVEL. This determines how your
     32uClibc is built. There are currently 5 MIPS ISA Levels. To keep things simple
     33we are only using 2. For more information, go to
     34<ulink url="http://www.linux-mips.org/wiki/Instruction_Set_Architecture"/></para>
     35
     36<screen os="d2"><userinput>export CLFS_MIPS_LEVEL="{mips level}"</userinput></screen>
     37
    3138  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    3239  href="../x86/variables.xml"
    3340  xpointer="xpointer(//*[@os='e'])"/>
    3441
    35   <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    36   href="../x86/variables.xml"
    37   xpointer="xpointer(//*[@os='f'])"/>
     42<screen os="f"><userinput>echo export CLFS_HOST=\""${CLFS_HOST}\"" &gt;&gt; ~/.bashrc
     43echo export CLFS_TARGET=\""${CLFS_TARGET}\"" &gt;&gt; ~/.bashrc
     44echo export CLFS_MIPS_LEVEL=\""${CLFS_MIPS_LEVEL}\"" &gt;&gt; ~/.bashrc</userinput></screen>
    3845
    3946  <table os="g">
     
    4249      <colspec colname="Processor"/>
    4350      <colspec colname="Triplet"/>
     51      <colspec colname="MIPS Level"/>
    4452      <thead>
    4553        <row>
     
    5260          <entry>MIPS 32 bits Little Endian</entry>
    5361          <entry>mipsel-unknown-linux-uclibc</entry>
     62          <entry>1</entry>
    5463        </row>
    5564        <row>
    5665          <entry>MIPS 32 bits Big Endian</entry>
    5766          <entry>mips-unknown-linux-uclibc</entry>
     67          <entry>1</entry>
    5868        </row>
    5969        <row>
    6070          <entry>MIPS 64 bits Little Endian</entry>
    6171          <entry>mips64el-unknown-linux-uclibc</entry>
     72          <entry>3</entry>
    6273        </row>
    6374        <row>
    6475          <entry>MIPS 64 bits Big Endian</entry>
    6576          <entry>mips64-unknown-linux-uclibc</entry>
     77          <entry>3</entry>
    6678        </row>
    6779      </tbody>
Note: See TracChangeset for help on using the changeset viewer.