Install the Reop Command Tool
$ mkdir ~/bin
$ PATH=~/bin:$PATH
$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$ chmod a+x ~/bin/repo
Initializing a Repo client
$ mkdir yocto
$ cd yocto
$ repo init -u http://git.toradex.com/toradex-bsp-platform.git -b LinuxImageV2.5
$ repo init -u http://git.toradex.com/toradex-bsp-platform.git -b refs/tags/Apalis_iMX6_LinuxImageV2.5Beta_xxx
A successful initialization will end with a message stating that Repo is initialized in your working directory. Your client directory should now contain a.repo
directory where files such as the manifest will be kept.
$ less .repo/manifest.xml
with Q to exit.
Download sourcecode from the Repository/Git Server
$ repo sync
$ tree -L 2 `pwd`
Creat a configeration file for Yocto Project
$ . export
$ tree -L 2 `pwd`
Launch the export file
$ . export
Configurate the .conf file
$ vim conf/local.conf
add ACCEPT_FSL_EULA = "1"
$ less conf/bblayers.conf
$ tree -L 1 ../stuff/
$ bitbake-layers show-layers
$ tree -L 1 ../stuff/meta-openembedded/
$ tree -L 3 ../stuff/meta-openembedded/meta-webserver
$ less ..//stuff/meta-openembedded/meta-webserver/recipes-httpd/nginx/nginx_1.4.4.bb
$ bitbake-layers show-recipes | less
$ bitbake-layers show-recipes "*-image*"
$ bitbake nginx
$ bitbake angstrom-lxde-image