Building Ångström

Building Ångström

All Ångström binaries are built using OpenEmbedded.

OpenEmbedded user manual available as PDF

Thanks to Jamie Lenehan we have a PDF version of the OE usermanual. It contains all kind of usefull information for people wanting to build or work on Ångström. For easy reference, the HTML version is online as well.

Making your first .bb file for Ångström

This page will guide you trough the effort of writing a .bb file or recipe in bitbake speak. Let's start with the easy stuff, like the package description, license, etc:

DESCRIPTION = "My first application, a really cool app containing lots of foo and bar"
LICENSE = "GPLv2"
HOMEPAGE = "http://www.host.com/foo/"

The maintainer field needs to have a real name and a working email-address to be usefull, the description and license fields are mandatory, so better check them twice. The next step is to specify what the package needs to build and run, the so called dependencies:
Syndicate content

Back to top