Difference between revisions of "EBC Exercise 16 git"
From eLinux.org
m (moved ECE597 git notes to ECE597 Git notes) |
(Added link to sit workflow) |
||
| Line 1: | Line 1: | ||
[[Category:ECE597]] | [[Category:ECE597]] | ||
| + | |||
| + | == Nice git article == | ||
| + | |||
| + | [http://yehudakatz.com/2010/05/13/common-git-workflows/ Here's] a nice article on a common git workflow. | ||
| + | |||
| + | == Access ti/staging == | ||
Here is what I did to access the ti/staging stuff. | Here is what I did to access the ti/staging stuff. | ||
Revision as of 17:58, 13 May 2010
Nice git article
Here's a nice article on a common git workflow.
Access ti/staging
Here is what I did to access the ti/staging stuff.
host $ cd ~/oe/openembedded
host $ git remote add gitor git://gitorious.org/angstrom/openembedded.git
host $ git fetch gitor
host $ git checkout gitor/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
host $ . source-me.txt host $ cd ~/oe host $ mv angstrom-dev angstrom-dev.v0 host $ bitbake console-image