Difference between revisions of "TinyOS CVS Repositories"

From TinyOS Wiki
Jump to: navigation, search
m
(remove duplicate content)
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
The TinyOS source code is hosted on [http://sourceforge.net/ Sourceforge]. This page shows how to access to the TinyOS source code and the TinyOS contribution with '''CVS'''.
+
This page details instructions for accessing the current TinyOS Contrib repository as well as the archival
 +
TinyOS CVS repository.  The main TinyOS CVS repository is provided for reference only.  Any new work should
 +
be referencing the current SCM repository. Instructions for accessing can be found at [[Installing from SCM]].
  
== Browsing ==
+
 
The last CVS repository of TinyOS can be browsed [http://tinyos.cvs.sourceforge.net/viewvc/tinyos/ here]. This version corresponds to the one currently developed and can be unstable.
+
== Browsing the TinyOS Contrib CVS repository (read-only) ==
 
== Anonymous CVS Access ==
 
To download the whole tinyos repository you can execute this command:
 
cvs -z3 -d:pserver:anonymous@tinyos.cvs.sourceforge.net:/cvsroot/tinyos checkout .
 
  
 
To download the [[TinyOS 2.x index of contributed code|Contributed TinyOS 2.x projects]] you can use this command:
 
To download the [[TinyOS 2.x index of contributed code|Contributed TinyOS 2.x projects]] you can use this command:
Line 16: Line 14:
 
This previous commands will not allows you to modify the source code.
 
This previous commands will not allows you to modify the source code.
  
== Developer CVS Access via SSH ==
+
 
 +
== Contrib CVS Access via SSH (Developer, read/write) ==
 
If you have been granted developer access for one of the contributed project you can download all the Contributed TinyOS 2.x projects with these commands:
 
If you have been granted developer access for one of the contributed project you can download all the Contributed TinyOS 2.x projects with these commands:
 
  export CVS_RSH=ssh
 
  export CVS_RSH=ssh
 
  cvs -z3 -d:ext:USERNAME@tinyos.cvs.sourceforge.net:/cvsroot/tinyos checkout tinyos-2.x-contrib
 
  cvs -z3 -d:ext:USERNAME@tinyos.cvs.sourceforge.net:/cvsroot/tinyos checkout tinyos-2.x-contrib
Where USERNAME is your Sourceforge login. Your password will be asked.
+
Where USERNAME is your Sourceforge login. You will be prompted for your password.
  
To download only your project code you can enter:
+
To download a specific project code:
 
  export CVS_RSH=ssh
 
  export CVS_RSH=ssh
 
  cvs -z3 -d:ext:sis-sou@tinyos.cvs.sourceforge.net:/cvsroot/tinyos checkout tinyos-2.x-contrib/PROJECT_NAME
 
  cvs -z3 -d:ext:sis-sou@tinyos.cvs.sourceforge.net:/cvsroot/tinyos checkout tinyos-2.x-contrib/PROJECT_NAME
  
 +
 +
== Browsing the old TinyOS CVS trunk ==
 +
 +
'''WARNING:'''  The main TinyOS CVS repository has been deprecated.
 +
 +
The TinyOS CVS repository is provided for reference only and roughly
 +
corresponds to the TinyOS 2.1.1 release.
 +
 +
The repository is located at [http://sourceforge.net/ Sourceforge].
 +
Browsing access is via [http://tinyos.cvs.sourceforge.net/viewvc/tinyos/ TinyOS/CVS].
 +
 +
 +
== Anonymous CVS Access ==
 +
To download the whole tinyos repository you can execute this command:
 +
cvs -z3 -d:pserver:anonymous@tinyos.cvs.sourceforge.net:/cvsroot/tinyos checkout .
 +
 +
 +
 +
== See also ==
 +
*[[Installing from SVN/GIT]]
  
 
== External links ==
 
== External links ==
*[http://www.nongnu.org/cvs/ Webpage]
+
*[http://www.nongnu.org/cvs/ CVS Webpage]
  
 
[[Category: Development]]
 
[[Category: Development]]

Latest revision as of 12:38, 15 March 2013

This page details instructions for accessing the current TinyOS Contrib repository as well as the archival TinyOS CVS repository. The main TinyOS CVS repository is provided for reference only. Any new work should be referencing the current SCM repository. Instructions for accessing can be found at Installing from SCM.


Browsing the TinyOS Contrib CVS repository (read-only)

To download the Contributed TinyOS 2.x projects you can use this command:

cvs -z3 -d:pserver:anonymous@tinyos.cvs.sourceforge.net:/cvsroot/tinyos checkout -P tinyos-2.x-contrib

To download only one project of the contributed code you can use this command:

cvs -z3 -d:pserver:anonymous@tinyos.cvs.sourceforge.net:/cvsroot/tinyos checkout -P tinyos-2.x-contrib/PROJECT_NAME

Where PROJECT_NAME is the folder name of the project. This previous commands will not allows you to modify the source code.


Contrib CVS Access via SSH (Developer, read/write)

If you have been granted developer access for one of the contributed project you can download all the Contributed TinyOS 2.x projects with these commands:

export CVS_RSH=ssh
cvs -z3 -d:ext:USERNAME@tinyos.cvs.sourceforge.net:/cvsroot/tinyos checkout tinyos-2.x-contrib

Where USERNAME is your Sourceforge login. You will be prompted for your password.

To download a specific project code:

export CVS_RSH=ssh
cvs -z3 -d:ext:sis-sou@tinyos.cvs.sourceforge.net:/cvsroot/tinyos checkout tinyos-2.x-contrib/PROJECT_NAME


Browsing the old TinyOS CVS trunk

WARNING: The main TinyOS CVS repository has been deprecated.

The TinyOS CVS repository is provided for reference only and roughly corresponds to the TinyOS 2.1.1 release.

The repository is located at Sourceforge. Browsing access is via TinyOS/CVS.


Anonymous CVS Access

To download the whole tinyos repository you can execute this command:

cvs -z3 -d:pserver:anonymous@tinyos.cvs.sourceforge.net:/cvsroot/tinyos checkout .


See also

External links