BSP Setup

References

The instructions for setting up and building Linux in the Yocto Project were adopted to our products.

A list of helpful bitbake commands can be found here:

Requirements

For Yocto a Linux host machine is needed.

Hint

The supported distributions for Yocto are listed at the official Yocto documentation.

If you’re already running a Linux host, you should be fine.

Windows users see Ubuntu on Windows 10.

An important consideration is the hard disk space required for the virtual appliance. It is recommended that at least 120 GiB is provided, 500 GiB would be better.

Host Packages

The Yocto framework requires (build) dependencies that need to be available on the host system for the builds.

Follow the instructions at the official Yocto project documentation to install the neccessary host packages for your system.

Setting up Git

If not already done, setup git with the commands below:

git config --global user.name "Your Name"
git config --global user.email "Your Email"
git config --list

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. Repo complements very well the layered nature of the Yocto Project, making it easier for users to add their own layers to the BSP.

To install the repo utility, perform these steps:

  1. Create a bin folder in the home directory:

Hint

If the bin folder already exists skip the mkdir ~/bin step.

mkdir ~/bin
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo
  1. Add the following line to the ~/.bashrc file to ensure that the ~/bin folder is in your PATH variable:

Hint

If the bin folder is already in your path, you may skip this step.

export PATH=~/bin:$PATH

BSP Checkout

The Repo tool checks out different layers for you, which are defined in our XML-manifest. Their source code can be found in layers directory, which contains the recipes and machine configurations used to build the images.

Branch Kernel Version Supported Machines
kirkstone 5.10.145 Renesas
  • QSRZ series
  • TXRZ series
kirkstone 5.15.24 LTS
  • TXMP series
  • QSMP series
hardknott (deprecated) 5.10.104 Renesas
  • QSRZ series
  • TXRZ series

hardknott

(deprecated for stm32)

5.10.61 LTS
  • TX6 series
  • TXUL series
  • QSMP series
  • TXMP series
gatesgarth (deprecated) 5.10.23 LTS
  • TX6 series
  • TXUL series
  • QSMP series
  • TXMP series
zeus (deprecated) 5.7.1
  • TX6 series
  • TXUL series
  • QSMP series
  • TXMP series
rocko (deprecated) 4.14.24 LTS
  • TX6 series
  • TXUL series

Note

The directory karo-bsp is just an example and can be chosen freely.

The following command will checkout the latest version of the BSP in Branch kirkstone.

mkdir karo-bsp
cd karo-bsp
repo init -u https://github.com/karo-electronics/karo-bsp -b kirkstone
repo sync

Tip

If you want to checkout a previous Release Version, use repo as follows:

repo init -u https://github.com/karo-electronics/karo-bsp -b refs/tags/<tagname>

Release-Tags can be viewed on GitHub: https://github.com/karo-electronics/karo-bsp/tags

Note

From the repo init --help:

--no-clone-bundle: disable use of /clone.bundle on HTTP/HTTPS
Not using this option can lead to errors when calling repo init.

If errors occur during repo initialization, try deleting the .repo directory and running the repo initialization command again.