Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

Installation on Host Linux

The SDK comes in four flavors, one for each of the "architectures". These flavors are:

  1. arm-rtems-rceCA9 – target specific code for RTEMS
  2. arm-linux-rceCA9 – target specific code for ArchLinux
  3. i86-linux-32 – Host tools for 32-bit linux
  4. i86-linux-64 – Host tools for 64-bit linux

To retrieve the SDK from SLAC, execute the following command on your host:

...

languagenone

...


At SLAC the RCE SDK can be copied from:
/afs/slac/www/projects/CTK/SDK/rce-sdk-latest.tar.gz

Or over the web:
wget 

http://www.slac.stanford.edu/projects/CTK/SDK/

...

This will place the most recent tag of the SDK into <install_path>

Info

If you wish a different tag, you may add the "-b <os>-<tag>" option to git clone.    os is either linux or rtemstag is of the format VX.Y.Z

Then finalize the installation by executing:

Code Block
<install_path>/tools/install-sdk.sh

rce-sdk-latest.tar.gz

Once downloaded deploy only on RHEL5/6 or SL5/6 linux host:
mkdir <your_sdk_dir>
cd <your_sdk_dir>
wget http://www.slac.stanford.edu/projects/CTK/SDK/rce-sdk-latest.tar.gz
tar -xzf rce-sdk-latest.tar.gz

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

...

The git clone option "-b" causes several "detached HEAD" warning messages.  These are benign, but if you wish to suppress them, you may modify your global git configuration with:

...