Contribute to Toaster: Difference between revisions

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


# Setup a local repository for the development branch
## Setup a local repository for the development branch


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

Revision as of 17:27, 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

  1. Select a Yocto Project 1.5 compatible host, install Django-1.5 and South 0.8.4. The "pip" application is recommended to manage the install process.

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

    1. 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