Difference between revisions of "EBC Exercise 16 git"

From eLinux.org
Jump to: navigation, search
Line 5: Line 5:
 
host $ git remote add ti git://gitorious.org/angstrom/openembedded.git
 
host $ git remote add ti git://gitorious.org/angstrom/openembedded.git
 
host $ git fetch ti
 
host $ git fetch ti
 +
host $ git checkout ti/ti/staging -b ti/staging
 +
host $ cd ${OETREE}
 +
host $ wget http://download.berlios.de/bitbake/bitbake-1.8.18.tar.gz
 +
host $ tar -xvf bitbake-1.8.18.tar.g
 +
host $ gedit source-me.txt
 +
</pre>
 +
Change
 +
<pre>
 +
PATH=${OETREE}/openembedded/bitbake/bin:${ORG_PATH}
 +
</pre>
 +
to
 +
<pre>
 +
PATH=${OETREE}/bitbake-1.8.18/bin:${ORG_PATH}
 +
</pre>
 +
Save and quit gedit
 +
<pre>
  
 
</pre>
 
</pre>

Revision as of 08:27, 27 April 2010

Here is what I did to access the ti/staging stuff.

host $ cd ~/oe/openembedded
host $ git remote add ti git://gitorious.org/angstrom/openembedded.git
host $ git fetch ti
host $ git checkout ti/ti/staging -b ti/staging
host $ cd ${OETREE}
host $ wget http://download.berlios.de/bitbake/bitbake-1.8.18.tar.gz
host $ tar -xvf bitbake-1.8.18.tar.g
host $ gedit source-me.txt

Change

PATH=${OETREE}/openembedded/bitbake/bin:${ORG_PATH}

to

PATH=${OETREE}/bitbake-1.8.18/bin:${ORG_PATH}

Save and quit gedit