Contribute to Toaster: Difference between revisions

From Yocto Project
Jump to navigationJump to search
Line 23: Line 23:
</code>
</code>


* Setup up your branch for pushes to the [http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/ Yocto poky-contrib] repository
* Setup up your branch for pushes to the Yocto Project [http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/ poky-contrib repository]


<code>
<code>
     $ git remote set-url contrib git@git.yoctoproject.org:poky-contrib
     $ git remote set-url contrib git@git.yoctoproject.org:poky-contrib
</code>
</code>

Revision as of 17:30, 21 January 2014

This page summarises the Toaster development process. We hope this will help you start contributing to the project.

Set up the local repository

   $ sudo apt-get install pip
   $ sudo pip uninstall django
   $ sudo pip install django==1.5
   $ sudo pip install South==0.8.4

  • Setup a local repository for the development branch

   $ cd <installdir>
   $ git clone git://git.yoctoproject.org/poky
   $ cd poky
   $ git remote add contrib http://git.yoctoproject.org/git/poky-contrib
   $ git fetch contrib
   $ git checkout contrib/toaster/master -b toaster-master

   $ git remote set-url contrib git@git.yoctoproject.org:poky-contrib