Quick start compile

Quick start: compile console-image in your new project. Step by step to quick build an image using OpenEmbedded Dev repository

For this lesson we learn how quick starting from scratch to build an image contained in OpenEmbedded Dev repository.

This operation are done only when install kom to configure it

# download bitbake
kom -r download bitbake
# configure kom to find bitbake path
kom -s -v `kom -r path bitbake`
# download or upgrade org.openembedded.dev repository
kom -r git oe
# configure kom
kom -o oe `kom -r path oe`

Now, we explain what operation you do to create new project:

# create new project
mkdir myproj
cd myproj
# init my project
kom -i
# configure project to use org.openembedded.dev repository
kom -a oe
# Test if have configuration problem
kom -t
# initialization pre-building
. komprofile
# Start Building! :D
bitbake console-image