REL 1.0
Page 15 of 69
iWave Systems Technologies Pvt. Ltd.
iW-RainboW-G15D Linux User Manual
2.2.4
Setting up the repo utility
Repo is a tool built on top of Git that makes it easier to manage projects that contain multiple repositories, which do
not need to be on the same server.
Open a terminal window and create a bin folder (This step may not be needed if the bin folder already
exists).
$mkdir ~/bin
To install the “repo” utility, perform these steps:
$curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$chmod a+x ~/bin/repo
$export PATH=~/bin:$PATH
2.2.5
Yocto project setup
To setup the yocto, execute the below steps.
$mkdir iwg15-release-bsp;cd iwg15-release-bsp
$git config --global user.name "Your Name"
$git config --global user.email "Your Email"
$ repo init -u git://git.freescale.com/imx/fsl-arm-yocto-bsp.git -b imx-4.1-krogoth -m imx-4.1.15-
2.1.0.xml
$repo sync
Perform repo synchronization, with the command “repo sync”, periodically to update to the latest codes.
During the synchronization, the git configuration may confirm the user name, email and color display of the
user account as mentioned below. The git configuration may be confirmed once for a user.
Your Name [xxxxx]: xxxxx
Your Email [xxxxx@xxxxxx.(none)]: [email protected]
Your identity is: xxxxx <[email protected]>
is this correct [y/N]? y
Testing colorized output (for 'repo diff', 'repo status'):
black red green yellow blue magenta cyan white
bold dim ul reverse
Enable color display in this user account (y/N)?y
The Yocto Project layers are downloaded and placed in the below directory.
$~/<path to iwg15-release-bsp>/iwg15-release-bsp/sources