tinyos make: *** No rule to make target 'telosb'. Stop

2.5k Views Asked by At

I installed tinyos on ubuntu 15.04 following this tutorial: http://tinyos.stanford.edu/tinyos-wiki/index.php/Automatic_installation

My telosb is well detected:

root@liberty:/opt/tinyos-release-tinyos-2_1_2/apps/Blink# motelist
Reference  Device           Description
---------- ---------------- ---------------------------------------------
FTYP7UJV   /dev/ttyUSB0     FTDI MTM-CM5000MSP

My tinyos.env:

    root@liberty:/opt/tinyos-release-tinyos-2_1_2# cat tinyos.env 

# Here we setup the environment
# variables needed by the tinyos 
# make system
export TOSROOT="/opt/tinyos-release-tinyos-2_1_2/"
export TOSDIR="$TOSROOT/tos"
export CLASSPATH=$CLASSPATH:$TOSROOT/support/sdk/java
export MAKERULES="$TOSROOT/support/make/Makerules"
export PYTHONPATH=$PYTHONPATH:$TOSROOT/support/sdk/python
echo "setting up TinyOS on source path $TOSROOT"

My tos-check-env:

tomski@liberty:~$ tos-check-env
Path:
   /usr/local/sbin
   /usr/local/bin
   /usr/sbin
   /usr/bin
   /sbin
   /bin
   /usr/games
   /usr/local/games

Classpath:

   /usr/src/tinyos/support/sdk/java/tinyos.jar
   /opt/tinyos-2.1.2/support/sdk/java
   /opt/tinyos-2.1.2/support/sdk/java/tinyos.jar
   .
   /usr/lib/jvm/java-6-openjdk-i386/lib
   /usr/lib/jvm/java-6-openjdk-i386/lib



rpms:
   /usr/bin/rpm


nesc:
   /usr/bin/nescc
   Version: nescc: 1.3.4


perl:
   /usr/bin/perl
   Version: v5.20.2) built for i686-linux-gnu-thread-multi-64int

flex:

bison:

java:
   /usr/bin/java

--> WARNING: The JAVA version found first by tos-check-env may not be   version 1.4 or version 1.5, one of which is required by TOS. Please ensure that the located Java version is 1.4 or 1.5

graphviz:
   /usr/bin/dot
   dot - graphviz version 2.38.0 (20140413.2041)

--> WARNING: The graphviz (dot) version found by tos-check-env is not 1.10. Please update your graphviz version if you'd like to use the nescdoc documentation generator.


   tos-check-env completed with errors:

  --> WARNING: The JAVA version found first by tos-check-env may not be version 1.4 or version 1.5one of which is required by TOS. Please ensure that the located Java version is 1.4 or 1.5
  --> WARNING: The graphviz (dot) version found by tos-check-env is not 1.10. Please update your graphviz version if you'd like to use the nescdoc documentation generator.

My java version:

tomski@liberty:~$ java -version
java version "1.7.0_79"
OpenJDK Runtime Environment (IcedTea 2.5.6) (7u79-2.5.6-0ubuntu1.15.04.1)
OpenJDK Server VM (build 24.79-b02, mixed mode)

when I compile:

root@liberty:/opt/tinyos-release-tinyos-2_1_2/apps/Blink# make telosb
make: *** No rule to make target 'telosb'.  Stop.

I have build-essentials, nescc, gcc, make etc..

Many thanks in advance for your help

3

There are 3 best solutions below

2
On

maybe you can do it without the root privileges, but under the user privileges.
then: cd /opt/tinyos-release-tinyos-2_1_2/apps/Blink
then: sudo chmod -R 777 .
then: make telosb

0
On

Old post, but the previous answers are not completely clear.

You have to point to that tinyos.env file. In order to do that, from your home directory: Open the .bashrc file:

sudo nano .bashrc

On the bottom of your .bashrc file, add the line:

source <path_to_tinyos_folder>/tinyos.env

Of course the file tinyos.env contains the setup enviroment variables.

0
On

perform every task as a super user and the queries will be resolved. for e.g.:

$ sudo touch tinyos-env
$ sudo nano tinyos-env

perform the copy and change the TOSROOT path accordingly also copy the same file to your ~/.bashrc file and perform every application as a super user

$ sudo su

Though this post is bit too late, the last comment of the thread helped to resolve this query for TinyOS on Ubuntu-15.04 for me recently.