Versions Compared

Key

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

...

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>

...

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.add the option "-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

...

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

...