Difference between revisions of "Installing from SCM"
(nuke hinrg as being a debian repository backup. point at stanford.) |
|||
Line 8: | Line 8: | ||
== Enable the tinyos tools repository == | == Enable the tinyos tools repository == | ||
− | Stanford hosts the primary Debian/Ubuntu | + | Stanford hosts the primary Debian/Ubuntu tools repository. |
The TinyOS Ubuntu pool is the same across all current distributions. So specifing "lucid" works as the distribution specifier. | The TinyOS Ubuntu pool is the same across all current distributions. So specifing "lucid" works as the distribution specifier. | ||
Line 14: | Line 14: | ||
sudo echo "deb http://tinyos.stanford.edu/tinyos/dists/ubuntu lucid main" >> /etc/apt/sources.list | sudo echo "deb http://tinyos.stanford.edu/tinyos/dists/ubuntu lucid main" >> /etc/apt/sources.list | ||
# or sudo apt-add-repository "deb http://tinyos.stanford.edu/tinyos/dists/ubuntu lucid main" | # or sudo apt-add-repository "deb http://tinyos.stanford.edu/tinyos/dists/ubuntu lucid main" | ||
− | |||
− | |||
− | |||
− | |||
− | |||
Line 28: | Line 23: | ||
sudo apt-get install nesc | sudo apt-get install nesc | ||
− | |||
− | |||
− | |||
− | |||
− | |||
== Install the crosstools == | == Install the crosstools == | ||
Line 46: | Line 36: | ||
== Checkout the TinyOS 2.x source tree == | == Checkout the TinyOS 2.x source tree == | ||
Checkouts from TinyOS SVN repository are read-only. | Checkouts from TinyOS SVN repository are read-only. | ||
+ | |||
cd ~ | cd ~ | ||
mkdir -p local/src | mkdir -p local/src |
Revision as of 20:53, 29 November 2011
NOTE: It is highly recommended to remove the system-wide tinyos-tools package when using the TinyOS from CVS/SVN/GIT. Git repositories mirroring the TinyOS CVS repository can be found at:
git clone git://hinrg.cs.jhu.edu/git/tinyos-2.x.svn
TinyOS 2.x gitwebgit clone git://github.com/tyll/tinyos-2.x-contrib.git
TinyOS 2.x contrib github
Contents
Enable the tinyos tools repository
Stanford hosts the primary Debian/Ubuntu tools repository.
The TinyOS Ubuntu pool is the same across all current distributions. So specifing "lucid" works as the distribution specifier.
sudo echo "deb http://tinyos.stanford.edu/tinyos/dists/ubuntu lucid main" >> /etc/apt/sources.list # or sudo apt-add-repository "deb http://tinyos.stanford.edu/tinyos/dists/ubuntu lucid main"
sudo apt-get update
Install the nesc compiler
sudo apt-get install nesc
Install the crosstools
Debian MSP430:
sudo apt-get install msp430-binutils-tinyos msp430-gcc-tinyos msp430-libc-tinyos
Debian AVR:
sudo apt-get install avr-binutils-tinyos msp430-gcc-tinyos msp430-libc-tinyos
Checkout the TinyOS 2.x source tree
Checkouts from TinyOS SVN repository are read-only.
cd ~ mkdir -p local/src cd local/src svn checkout http://tinyos-main.googlecode.com/svn/trunk/ tinyos-2.x
If you want to use git then instead of the last command you can do:
git clone git://hinrg.cs.jhu.edu/git/tinyos-2.x.svn tinyos-2.x
Compile the TinyOS tools
sudo apt-get install automake cd tinyos-2.x/tools ./Bootstrap ./configure --prefix=$HOME/local make all make install
A few ENTERs will be required by the last two commands.
Set the environment variables
Add the following to .profile (or .bash_profile or .bashrc depending on your system):
export PATH=$HOME/local/bin:$PATH export TOSROOT=$HOME/local/src/tinyos-2.x export TOSDIR=$TOSROOT/tos export MAKERULES=$TOSROOT/support/make/Makerules export CLASSPATH=$TOSROOT/support/sdk/java/tinyos.jar:. export PYTHONPATH=.:$TOSROOT/support/sdk/python:$PYTHONPATH export PATH=$TOSROOT/support/sdk/c:$PATH