Versions Compared

Key

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

Releases

VersionRelease Notes
V0.7.0-RC2-WSV0.7.0 Release Notes

 

Installation on Host Linux

...

The SDK for RPT is distributed in tarballs. Installation instructions are provided in Documentation.

Index of downloads

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

...

  1. i86-linux-32 – Host tools for 32-bit linux
  2. i86-linux-64

...

  1. – Host tools for 64-bit linux

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

Code Block
languagenone
git clone http://www.slac.stanford.edu/projects/CTK/SDK/<architecture>.git <install_path>

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
Note

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:

git config --global advice.detachedHead false

...