Skip to main content
Version: BSP 7.x.y

Build a Reference Image with Yocto Project/OpenEmbedded

Introduction

This hands-on article describes how to build our Reference Images for Yocto Project from scratch using OpenEmbedded-Core (OE-Core). For a conceptual article about the relationship between Toradex' Embedded Linux offerings and the Yocto Project, you must read Yocto Project. For building Torizon OS, additional instructions are provided on Build Torizon OS With Yocto Project.

OpenEmbedded (openembedded.org) is a build framework that creates kernel images, root filesystem images, and installable packages from source code. It is used by the Yocto Project to build Embedded Linux images. In this article, OpenEmbedded and Yocto Project are used interchangeably unless otherwise noted.

OpenEmbedded uses meta-information (called recipes) for downloading/compiling/deploying of software packages on a x86/x86_64 Linux build host for a target device. This meta‑information is structured into layers. Layers are directory trees with recipes that provide similar functionality, e.g. meta-kde which provides recipes to build packages for KDE workspace and applications.

For further information about the Yocto project and use-cases beyond the scope of our articles, check out the Yocto Project Documentation and the Yocto Project Reference Manual.

Versions and Source-Code

Layers from git.toradex.com are used together with a number of other layers. The collection of Toradex and third-party layers used on a specific BSP release are provided in a repo manifest on toradex-manifest, and you will learn more about it later in this article.

There might be several concurrent versions available at a given point in time. You can find more information about this on the Toradex Embedded Linux Support Strategy. Versions of the Reference Images for Yocto Project and their corresponding distribution, OpenEmbedded codename, and Yocto Project releases are provided in the following table:

Toradex VersionStatusDistributionOpenEmbedded/Yocto Project CodenameYocto Project Release
2.1OutdatedÅngström v2013.06dylan1.4
2.2OutdatedÅngström v2013.12dora1.5
2.3OutdatedÅngström v2014.06daisy1.6
2.4OutdatedÅngström v2014.12dizzy1.7
2.5OutdatedÅngström v2015.06fido1.8
2.6 / 2.6.1OutdatedÅngström v2015.12jethro2.0
2.7OutdatedÅngström v2016.12morty2.2
2.8OutdatedÅngström v2017.12rocko2.4
3.0OutdatedPoky basedthud2.6
4.0.0 (deferred*)DeferredPoky basedzeus3.0
5.7OutdatedPoky baseddunfell3.1 LTS
6.0LatestPoky basedkirkstone4.0 LTS
7.0LatestPoky basedscarthgap5.0 LTS

* 4.0.0 is deferred, learn more on https://www.toradex.com/blog/torizon-yocto-project-long-term-support-alignment

A release matrix that summarizes versions of Yocto/OpenEmbedded, the Linux kernel and U-Boot, and release dates for Toradex Embedded Linux releases is provided in a separate article:

Release Notes

Concise, high-level release notes are published on the News section of toradex.com:

Comprehensive, detailed release notes are maintained on the following pages on the developer website:

Prerequisites

A Yocto Project build requires intensive computing power and specific software packages, which are specified below.

Computer for the Yocto Project Build

A powerful host machine is highly recommended to build a Yocto Project image. If the host system is a multi-core machine, you can configure the Yocto Project build system to decrease the time needed to build images significantly. We recommend around 120 GB of free disk space. For some images, a 32-bit host with 4 GBytes of memory is enough, but to build other images such as the tdx-reference-multimedia-image, a 64-bit machine with at least 16 GBytes of RAM is recommended.

Operating System and Build Dependencies

Yocto Project Release 5.0 is officially supported by the Yocto Project. The following Linux distributions are supported and you must use one of them on your development PC to build our BSPs:

You must install the required Yocto build dependencies on your host PC:

danger

Follow only the steps in the Yocto Mega Manual to install the build dependencies. Do not go any further into the environment setup.

Virtual Machines, Containers and Cloud Builds

It is possible to build a Toradex Reference Image build on a Virtual Machine (VM), Container, or a public cloud provider as AWS or Azure. We provide here, without detailed instructions, a general comparison between each of these alternatives:

  • VM: A VM may introduce a high performance penalty, and a Yocto Project build is resource-intensive, thus we do not advise to use a VM for building with Yocto.
  • Container: Containers have a negligible performance penalty. Use bind-mounts or volumes to keep persistent data and reduce build time. Containers theoretically allow you to do a Yocto Project build from a Windows PC.
    • Toradex supports a container environment for building Torizon OS with the Yocto Project, read the article Build Torizon OS With Yocto for details. You may use it to build Reference Images, but note that this is not officially supported.
  • Cloud: the cloud has powerful machines that significantly reduce the build time for a Yocto Project. Similar to containers, you should plan how to store the output of a build. You must also evaluate the pricing of your cloud service provider.

Repo and Git

Since OpenEmbedded requires several git repositories to build our images, starting with V2.1 images, we use a utility called 'repo'. The repo manifest manages the various git repositories and their branches. (more on repo: http://code.google.com/p/git-repo/)

Before installing repo, please make sure that you already have curl installed. For Debian-based systems, you can use the following command:

$ sudo apt install curl

Then, install the repo bootstrap binary:

$  mkdir ~/bin
$ export PATH=~/bin:$PATH
$ curl https://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$ chmod a+x ~/bin/repo

Repo uses Git. Make sure you have it installed and your user name and e-mail address configured. Below is an example for Debian-based systems:

$ sudo apt install git
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com

Install the Yocto Project Repositories

This section has two major sub-sections depending on your needs:

  • First-time Configuration: if you are doing a build for the first time.
  • Update an Existing Configuration: if you have a build already set up and want to update it.

First-time Configuration

The first-time configuration process consists of downloading and syncing one of Toradex's official manifests. The manifest lists all the git repositories necessary for building Toradex images on yocto. For setting up the repos on your machine, execute the following steps:

  1. Create a directory for your OE-Core setup to live in and clone the meta-information:
caution

Please be sure to have Python installed on your machine. For the command "repo init" to work, the executable "python" must be available, "python" can be a symbolic link to "python3". In addition, remember to have the PATH variable exported on the terminal you're currently using.

Verdin AM62

Note that support for the Verdin AM62 v1.1 was not added until version 6.4.0-devel-202309. Therefore, older tags or the default.xml configuration prior to the release of BSP 6.4.0 will not generate a usable image.

$ mkdir ${HOME}/oe-core
$ cd ${HOME}/oe-core
$ repo init -u git://git.toradex.com/toradex-manifest.git -b scarthgap-7.x.y -m tdxref/default.xml
$ repo sync
  1. Source the file export to setup the environment. On the first invocation, this also copies a sample configuration to build/conf/*.conf.
$ . export

Note: Sourcing export configures the shell environment for the current shell session. You must enter this command whenever you open a new shell session for use with OpenEmbedded.

After sourcing the export file, continue to the Building chapter.

Update an Existing Configuration

If you need to update the installation, first update the repo manifest to the version you want to work with and then sync all layers. Check the known issues section below before starting the update.

If you did local changes to the individual layers, merge conflicts may occur, which you will have to resolve in the respective layer.

Update to the HEAD Revision

info

You cannot update from BSP 4 or older to 5 or newer, because a different Git repository is used!

A list of available branches is available in the repository: https://git.toradex.com/cgit/toradex-manifest.git/refs/heads

$ repo init -u git://git.toradex.com/toradex-manifest.git -b scarthgap-7.x.y -m tdxref/default.xml
$ repo sync

Update to a Specific Version by Using its Tag

If you need to update to a specific version, a list of available tags is available in the manifest repository: https://git.toradex.com/cgit/toradex-manifest.git/refs/tags

As an example:

$ repo init -u git://git.toradex.com/toradex-manifest.git -b refs/tags/7.0.0 -m tdxref/default.xml
$ repo sync

Apply Configuration from our Nightly Platform

caution

This is for development and testing only, to validate the latest changes/bugfixes from Toradex at BSP 6. Do not use it for production.

In some cases, you may want to experience our latest additions to the BSP, so to try a fix or even an improvement.

That can be done with a repository set to use the tdxref/integration.xml manifest:

$ repo init -u git://git.toradex.com/toradex-manifest.git -b scarthgap-7.x.y -m tdxref/integration.xml

You can then sync it, to get the resources:

$ repo sync

In addition, make sure that the following parameter is present in your conf/local.conf file:

MACHINEOVERRIDES =. "use-head-next:"

After that, you can build your image using bitbake as instructed in Build an Image below.

Known Issues During repo Setup

If your repo command succeeds, you can directly proceed with the instructions in the build chapter. See additional known issues notes at the end of this page.

Repo Sync Issues

Due to many company firewalls/proxies only permitting HTTP traffic, our default repo manifest is using. However, the OpenEmbedded or Linaro repositories might show inconsistencies if fetched over HTTP, or their web servers might be under such heavy load. If you get any of the following repo fetch/sync issues:

    error: Unable to find d29dee17d9a95f2ec6b641c234870f3ccbe24102 under http://git.openembedded.org/meta-openembedded
Cannot obtain needed blob d29dee17d9a95f2ec6b641c234870f3ccbe24102

or:

    error: Unable to find 318f971bb4515a6dcbbb0b87f85f2bc58b6e314f under http://git.linaro.org/git-ro/openembedded/meta-linaro.git
Cannot obtain needed commit 318f971bb4515a6dcbbb0b87f85f2bc58b6e314f

or:

    fatal: loose object 8807fd141bb73d6b405eff223b3b105613bc809a (stored in /home/user/oe-core/.repo/projects/layers/meta-openembedded.git/objects/88/07fd141bb73d6b405eff223b3b105613bc809a) is corrupt
error: http://git.openembedded.org/meta-openembedded did not send all necessary objects

First, try repo syncing again. It might only have been a connection glitch.

Then, if the error(s) persist, try using git's garbage collection on the failing repository before attempting to sync again, e.g. if the error indicates an issue in the meta-openembedded repository:

$ cd .repo/projects/layers/meta-openembedded.git
$ git gc

If the error(s) persist try removing your local git/repo cache before attempting to sync again, e.g. if the error indicates an issue in the meta-openembedded repository:

$ rm -rf .repo/projects/layers/meta-openembedded.git
$ rm -rf .repo/project-objects/meta-openembedded.git

Additionally, you can limit the number of downloads of git repositories in parallel using the additional parameter -jX. E.g. to download one repository at a time:

$ repo sync -j1

If your Internet connection permits you might also try switching those failing repositories to using the git protocol instead by modifying your .repo/manifest.xml as follows:

    <remote fetch="git://git.openembedded.org" name="oe"/>
<remote fetch="git://git.linaro.org/openembedded" name="linaro"/>
Bitbake Build Issues

There are no bitbake build issues reported for the latest BSPs. You can consult the other versions of this article with the version selector to see issues for older releases.

Build a Reference Image

This section provides instructions on building a Toradex image with Yocto. The build process consists of the following steps:

  1. Setting up the shell environment you will use to build the image
  2. Editing your build configuration files
  3. Build the image with the bitbake tool

The detailed instructions for following these steps are provided in the sections bellow.

Set Up the Environment Shell

Every time you open a new terminal, go to the OpenEmbedded directory and setup the environment:

$ . export

Edit the Build Configuration Files

The main configuration file a generic Yocto build is conf/local.conf. There are two main variables you need to modify for a basic build:

  • MACHINE: specifies the target device for the image. Set this variable to the module type you are planning to build for.
  • DISTRO: specifies the target distribution for the image. Set this variable to the distro you are planning to build.

More information on the MACHINE and DISTRO variables are provided below:

The MACHINE Yocto variable

Our BSP layers provide the following machines:

Machine NameCorresponding Toradex Module
apalis-imx6Apalis iMX6
apalis-imx8Apalis iMX8
colibri-imx6Colibri iMX6
colibri-imx6ullColibri iMX6ULL 512MB (equipped with raw NAND flash)
colibri-imx6ull-emmcColibri iMX6ULL 1GB (equipped with eMMC flash)
colibri-imx7Colibri iMX7S 256MB and iMX7D 512MB (equipped with raw NAND flash)
colibri-imx7-emmcColibri iMX7D 1GB (equipped with eMMC flash)
colibri-imx8xColibri iMX8X V1.0C or newer
verdin-imx8mmVerdin iMX8M Mini
verdin-imx8mpVerdin iMX8M Plus
verdin-am62Verdin AM62
verdin-am62pVerdin AM62P
aquila-am69Aquila AM69
toradex-smarc-imx8mpSMARC iMX8M Plus
toradex-smarc-imx95SMARC iMX95
The DISTRO Yocto variable

A Linux distribution (often abbreviated as distro) is a software collection based upon the Linux kernel. It comprises the Linux Kernel, tools, libraries and additional software.

Openembedded / Yocto gets the distribution policy from a configuration file which is set by the DISTRO variable in local.conf.

This policy for example defines the libc variant, the init system, the ARM vs. THUMB instruction set, or the package manager used. Also, it can set distro features which the individual recipes can then evaluate to configure their build, e.g. if polkit is used/available or what display server protocol is available.

Toradex provides several distribution policy files based on the Poky one. We provide distro variants for different kernel configurations, summarized in the table below. Even though all distributions set the policy for the graphics stack, for example Weston/Wayland + XWayland, not all images include the graphics libraries: for instance, the Reference Minimal Image is a console-only image.

If you want to know exactly what is defined for each distro, follow the links as they point to the relevant configuration files.

Distrokernel basekernel config
tdx-xwaylandDownstream kernel from SoC vendor (NXP)Default (without the PREEMPT_RT patch)
tdx-xwayland-rtDownstream kernel from SoC vendor (NXP)Fully preemptive (real-time Linux PREEMPT_RT patch)
tdx-xwayland-upstreamMainline kernelDefault (without the PREEMPT_RT patch)
tdx-xwayland-upstream-rtMainline kernelFully preemptive (real-time Linux PREEMPT_RT patch)
info

For all iMX8 based machines we use the downstream kernel. The mainline kernel does not (yet) contain the features needed for production use. For the iMX8M based modules, there is experimental compatibility with upstream distros.

upstream: marks that the kernel built will be close to mainline and that the userspace uses mainlinish/opensource userspace drivers (Mostly graphical components, e.g. Vivante closed source vs. etnaviv). Note that each <machine>.conf decides what that mainline kernel will be.

rt: Toradex also provides real-time kernel flavours for use in an OpenEmbedded-Core (Yocto Project) build, and related distros that use it. See the Real-Time Linux article with Real-Time Linux article, Yocto Recipe for more information.

See the configuration files of the distro on the layers/meta-toradex-distro/conf/distro/ directory.

The default distro is tdx-xwayland, and it is already configured in the conf/local.conf file. You can set it to your distro of choice.

As an example, we will set the MACHINE to colibri-imx6. You should set it to your corresponding SoM.

MACHINE ?= "colibri-imx6"
caution

If you want to build for a machine based on an NXP based SoM, some downloads require you to read and accept the NXP®/Freescale EULA available in layers/meta-freescale/EULA. You have to state your acceptance by adding the following line to your local.conf file:

ACCEPT_FSL_EULA = "1"

If this line is missing, the relevant packages will produce an ERROR similar to:

ERROR: To use 'imx-vpu' you need to accept the NXP®/Freescale EULA at 'layers/meta-freescale/EULA'. Please read it and in case you accept it, write: ACCEPT_FSL_EULA = "1" in your local.conf.
tip

You can explicitly override the MACHINE and DISTRO settings on the command line. To do that, set the variable MACHINE when calling the bitbake command (e.g. MACHINE=apalis-imx6 DISTRO=tdx-wayland-rt bitbake ...).

danger

Make sure to set the correct distro for iMX6/7 modules, as in BSP 6, only upstream distros are supported.

Build the Image

The final step to build a reference image is to select which image you want to build. The image is the recipe which lists all packages which have to be built and installed into the final root file system. The build system will take care that any known dependent package will also be installed.

Toradex provides two reference image variants built on top of the distribution variants. Below, we list the image variants, their descriptions, and some notable features. To learn about all the features, follow the links, which point to the relevant Yocto recipes. These images are primarily for BSP evaluation, and we do not recommend using them as-is.

Additionally, we provide a Torizon OS Yocto Reference Minimal Image for OS evaluation. For information on building Torizon images with Yocto, refer to Torizon OS Yocto Reference Minimal Image Technical Overview and Build Torizon OS from Source With Yocto Project/OpenEmbedded.

ImageDescription
Reference Minimal Image
tdx-reference-minimal-image
Minimal image without graphical interface that just boots

- Network manager: connman
- Init system: systemd
- Base command-line packages packagegroup-base-tdx-cli included in packagegroup-tdx-cli.bb
Reference Multimedia Image
tdx-reference-multimedia-image
Image for BSP verification with Qt and multimedia features

- All that is included in the Reference Minimal Image
- Graphics stack: Weston / Wayland + XWayland
- Graphical User Interface framework: Qt
- Camera and Video framework: V4L2 and Gstreamer
- All command-line packages included in packagegroup-tdx-cli.bb
- All graphical packages included in packagegroup-tdx-graphical.bb
- All Qt5 packages included in packagegroup-tdx-qt5.bb

You can use them as a base for your project, but keep in mind that these images are not production-ready and should not be used as-is in production (not hardened, etc.). The available image recipes are located in layers/meta-toradex-demos/recipes-images/images/. You can also find the image recipes in our Git repository, but make sure to download it from the same branch as your Yocto build repository.

After you choose the image from the table above, you can build it with the bitbake tool. Keep in mind that bitbake will not be available in your shell until you source the export file, as instructed in Set Up the Environment Shell.

caution
  • You need to be in the directory 'build' when you execute bitbake.
  • The first build is expected to take a large amount of time (possibly several hours) and download several files. We recommend having around 120 GB of free disk space.
$ bitbake <image>

Bitbake automatically logs console output to timestamped files in build/tmp/log/cooker/$MACHINE/.

If you are executing an unattended build, -k tells bitbake to keep going with independent packages even after an error occurred:

$ bitbake -k <image>

If your build finishes without errors, you can deploy the resulting image to your board

Building with reduced RAM usage

Your computer may run out of RAM while compiling some packages (such as Qt).

To reduce RAM usage, set the environment variable PARALLEL_MAKE to the desired number of threads. This will limit the number of threads used by make.

$ PARALLEL_MAKE="-j 6" bitbake <image>

Bitbake also runs compilation tasks in parallel. To reduce the number of tasks running simultaneously, set the environment variable BB_NUMBER_THREADS. Setting BB_NUMBER_THREADS also limits the number of download and configuration threads, increasing the image build time.

$ PARALLEL_MAKE="-j 4" BB_NUMBER_THREADS="6" bitbake <image>
caution

If a build fails due to lack of RAM, some files could be corrupted. Trying to build again may not solve this issue.

This is a common cause when errors are encountered building unmodified Toradex reference images.

You may try to delete the corrupted package state, but it’s safer to manually clear all temporary files before another build attempt.

Bitbake Commands

Below are some useful common bitbake commands and their descriptions.

ImageAdditional parametersDescription
bitbake recipe--Build a recipe and all its dependencies. A recipe can be an image to upload to your board, the linux kernel, u-boot, a software package, an SDK, etc
bitbake image -c populate_sdk-c populate_sdkBuild an SDK for your image (See also Linux SDKs).
bitbake virtual/kernel--Build only the Linux kernel for your machine
bitbake -e recipe-eOutput the environment variables and settings for your build. You can see all the settings with less or other text viewers, or use grep to see the value of a specific variable
bitbake -c listtasks recipe-c listtasksList all tasks for a given recipe

Deploy the Reference Image to Your Board

After the bitbake tasks have finished, the output image will be located at build/deploy/images/${MACHINE}/.

We recommend deploying the Tezi image generated in the build process (e.g. Verdin-iMX8MP_Reference-Minimal-Image-Tezi_6.0.0-devel-20221021202153+build.0.tar). You can deploy the image to your board using Toradex Easy Installer (Tezi).

Customize a Yocto Build

Directory Structure

OE-Core installation, configuration, and build will setup the following directory structure:

    oe-core/
+-- build
¦ +-- conf
¦ +-- downloads
¦ +-- tmp
¦ +-- sstate-cache
¦ +-- deploy
¦ +-- images
¦ ¦ +-- <machine 1...n>
¦ +-- ipk
¦ +-- licenses
¦ +-- sdk
+-- layers
+-- meta-browser
+-- meta-freescale
(... other layers)
+-- openembedded-core
  • layers: stores metadata, such as machine and distro information, but also the recipes for building all components of an embedded Linux image.
  • build: keeps build configuration, downloaded source codes, intermediate build output, generated packages (IPK, DEB, RPM), SDKs.
    • conf: this is the only subdirectory that you must preserve under build. All other subdirectories are regenerated when you start a new build if they don't exist yet.
    • deploy: the final images, ready to install (flash) into a computer on module. The packages that compose an image, in our case packaged as IPK, since we use the OPKG package manager. Licenses for all the software installed. The SDK, if you build one.

Openembedded uses several places for configurations.

  • General files from e.g. bitbake folder.
  • Distro (from <layer-directory>/conf/distro/<distro-name>.conf)
  • Machine (from <layer-directory>/conf/machine/<machine-name>.conf)
  • Local Build (from <build-directory>/conf/local.conf)

Build Artifacts

The output artifacts can be found here:

  • For images, u-boot, uImage, rootfs, deployable tarball: build/deploy/images/${MACHINE}/
  • For SDKs: build/deploy/sdk/
  • For ipk packages: build/deploy/ipk/<package-arch>/*.ipk

First Steps Into Your Custom Build

The Yocto Project can be quite challenging and hard to use. In the following documentation, we cover some basic functionality that is likely you will have to go through during your development:

It does not replace the official Yocto Project documentation, though. At the end of this page, we provide links to it, and you will most likely need to study it to some degree.

Production Programming

Since BSP 5.2, we have introduced an End User License Agreement (EULA) to our Reference Images. It prevents you from using the autoinstall feature of the Toradex Easy Installer, as suggested in the article Production Programming for Linux.

You must remove the license line from the image.json file included in the deployable tarball image resulting from the OpenEmbedded build to allow the autoinstall. It also means that you accept the EULA.

Failing Builds

An OpenEmbedded build sometimes fails. Below some recommended steps to follow when a task fails:

  • Reading through the error messages.
  • Restarting bitbake without deleting anything and see if it happens again.
  • Clean the task which failed and then restart building the image, e.g. if python-native fails
$ bitbake -c clean python-native
$ bitbake <image>
  • Clean the task which failed, including deleting cached output and then restart building the image
$ bitbake -c cleansstate python-native
$ bitbake <image>
  • Clean the task which failed, including deleting cached output and the downloaded files and then restart building the image
$ bitbake -c cleanall python-native
$ bitbake <image>
  • Check the layer which provides the recipe if a newer commit exists which addresses the problem.

  • If there are many issues with fetching sources, you could first try to download all needed sources.

$ bitbake <image> --runall=fetch

Check the legacy section at the end of this page to find out about failing builds on older BSP versions.

Additional Layers

Recipes for even more software are available in additional layers. E.g. the Java layer provides recipes related to Java. Most layers are registered at openembedded.org. They provide a web interface to find layers or individual recipes.

Note that just because a layer or a recipe exists, that does not mean that these recipes will compile/execute. The layers/recipe might have a version conflict with what we use or might have never been used with or intended for the Arm architecture.

Refer to the following sections to see examples of how to add a new layer to our setup.

Adding the Qt Layer

Please refer to How to set up Qt Creator to cross-compile for embedded Linux.

Adding the Java Layer

Please refer to Java Virtual Machine.

Working with the Package Manager

Starting with BSP 3.0, we dropped the Ångström Distribution in favour of a Poky based distribution. For BSP 3.0 and newer based images, you cannot install packages from an online feed, only packages you build. However, if you use Torizon OS, you can use a container that makes it possible to use Debian feeds.

Read-Only Rootfs

Our base BSP layers and reference images do not support a read-only filesystem because there are features that won't work with a read-only system. In other words, the features of the read/write filesystem are used in several parts of the system, such as the case of the serial number in the hostname of the module. If the rootfs is read-only there is no way to write that modification at runtime.

For more information, refer to How to implement a Read-Only Rootfs (Linux).

Webinar: Building Embedded Linux Images with the Yocto Project



Webinar: Criando Distribuições de Linux Embarcado com Yocto Project (Brazilian Portuguese)



Send Feedback!