Versions Compared

Key

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

...

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

  1. arm-rtems-rceCA9  –   rceCA9 – target specific code for RTEMS
  2. arm-linux-rceCA9  –  rceCA9 – target specific code for ArchLinux
  3. i86-linux-32  –  32 – Host tools for 32-bit linux
  4. i86-linux-64  –  64 – 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>

Note

If you wish a different tag, you may cd to <install_path> and type "git tag" to list the tags, then "git checkout <tagname>" to switch to that tag.   You probably want the default.

Then finalize the installation by executing:

Code Block

<install_path>/tools/install-sdk.sh

Installation on the Target

We use tools in the host linux SDK to install the target RTEMS SDK.   You will need the following available:

...

Package the RTEMS sdk into a tarball like so:

Code Block

<install_i86_linux_SDK_path>/tools/packageSDK <install_RTEMS_SDK_path> ~/foo.tar

Then, install the SDK onto your target at <location> with:

Code Block

<install_i86_linux_SDK_path>/tools/updateRCE <location> ~/foo.tar

 This This script logs its progress, so you can see where it is.

Warning

Note: prior to V0.4.0, the updateRCE command had the argument order <tarball> <location>.

 

Troubleshooting

in progress