Copyright (C) 2016-2017, ilbers GmbH
- Introduction
- Getting Started
- Terms and Definitions
- How Isar Works
- General Isar Configuration
- Isar Distro Configuration
- Custom Package Compilation
- Image Type Selection
- Add a New Distro
- Add a New Machine
- Add a New Image
- Add a New Image Type
- Add a Custom Application
- Enabling Cross-compilation
- Create an ISAR SDK root filesystem
Isar is a set of scripts for building software packages and repeatable generation of Debian-based root filesystems with customizations.
Isar provides:
- Fast target image generation: About 10 minutes to get base system image for one machine.
- Use any apt package provider, including open-source communities like
Debian
,Raspbian
, etc. and proprietary ones created manually. - Native compilation: Packages are compiled in a
chroot
environment using the same toolchain and libraries that will be installed to the target filesystem. - Product templates that can be quickly re-used for real projects.
For demonstration purposes, Isar provides support for the following configurations:
- QEMU ARM with Debian Jessie
- QEMU ARM with Debian Stretch (builds but fails to run, see #22)
- QEMU i386 with Debian Jessie
- QEMU i386 with Debian Stretch
- QEMU amd64 with Debian Jessie
- QEMU amd64 with Debian Stretch
- Raspberry Pi 1 Model B with Raspbian Jessie (see #23)
- Banana Pi BPI-M1
The steps below describe how to build the images provided by default.
Install the following packages:
dosfstools
git
debootstrap/jessie-backports# for debian >= "buster"
dpkg-dev
parted
python3
python3-distutils # in case your host is host > debian 9
qemu
qemu-user-static
binfmt-support
sudo
reprepro
Notes:
- BitBake requires Python 3.4+.
- The python3 package is required for the correct
alternatives
setting. - QEMU 2.8+ is required to run Stretch images locally in QEMU. This version is available in Stretch and Jessie backports apts.
Isar requires sudo
rights without password to work with chroot
and debootstrap
. To add them, use the following steps:
# visudo
In the editor, allow the current user to run sudo without a password, e.g.:
<user> ALL=(ALL:ALL) NOPASSWD:ALL
Defaults env_keep += "ftp_proxy http_proxy https_proxy no_proxy"
Replace <user>
with your user name. Use the tab character between the user name and parameters.
The second line will make sure your proxy settings will not get lost when using sudo
. Include it if you are in the unfortunate possition to having to deal with that.
Clone the isar repository:
$ git clone http://github.com/ilbers/isar.git
To initialize the isar
build directory run the following commands:
$ cd isar
$ . isar-init-build-env ../build
../build
is the build directory. You may use a different name here.
To build target images ("targets" in BitBake terms) for one configuration,
define the default configuration in conf/local.conf
in the build directory,
e.g.:
MACHINE ??= "qemuarm"
DISTRO ??= "debian-stretch"
DISTRO_ARCH ??= "armhf"
Then, call bitbake
with image names, e.g.:
bitbake multiconfig:qemuarm-stretch:isar-image-base \
multiconfig:qemuarm-stretch:isar-image-debug
The following images are created:
tmp/deploy/images/isar-image-base-qemuarm-debian-stretch.ext4.img
tmp/deploy/images/isar-image-debug-qemuarm-debian-stretch.ext4.img
Alternatively, BitBake supports building images for multiple configurations in
a single call. List all configurations in conf/local.conf
:
BBMULTICONFIG = " \
qemuarm-wheezy \
qemuarm-jessie \
qemuarm-stretch \
qemuarm-buster \
qemuarm64-stretch \
qemuarm64-buster \
qemui386-jessie \
qemui386-stretch \
qemui386-buster \
qemuamd64-jessie \
qemuamd64-stretch \
qemuamd64-buster \
rpi-jessie \
bananapi-stretch \
"
The following command will produce isar-image-base
images for all targets:
$ bitbake \
multiconfig:qemuarm-jessie:isar-image-base \
multiconfig:qemuarm-stretch:isar-image-base \
multiconfig:qemuarm-buster:isar-image-base \
multiconfig:qemuarm64-stretch:isar-image-base \
multiconfig:qemui386-jessie:isar-image-base \
multiconfig:qemui386-stretch:isar-image-base \
multiconfig:qemui386-buster:isar-image-base \
multiconfig:qemuamd64-jessie:isar-image-base \
multiconfig:qemuamd64-stretch:isar-image-base \
multiconfig:qemuamd64-buster:isar-image-base \
multiconfig:rpi-jessie:isar-image-base \
multiconfig:bananapi-stretch:isar-image-base
Created images are:
tmp/deploy/images/isar-image-base-debian-jessie-qemuarm.ext4.img
tmp/deploy/images/isar-image-base-debian-stretch-qemuarm.ext4.img
tmp/deploy/images/isar-image-base-debian-stretch-qemuarm.ext4.img
tmp/deploy/images/isar-image-base-debian-stretch-qemuarm64.ext4.img
tmp/deploy/images/isar-image-base-debian-jessie-qemui386.ext4.img
tmp/deploy/images/isar-image-base-debian-stretch-qemui386.ext4.img
tmp/deploy/images/isar-image-base-debian-jessie-qemuamd64.ext4.img
tmp/deploy/images/isar-image-base-debian-stretch-qemuamd64.ext4.img
tmp/deploy/images/isar-image-base.rpi-sdimg
tmp/deploy/images/isar-image-base-debian-stretch-bananapi.wic.img
A bootable disk image is generated if you set IMAGE_TYPE to 'wic-img'. Behind the scenes a tool called wic
is used to assemble the images. It is controlled by a .wks
file which you can choose with changing WKS_FILE. Some examples in the tree use that feature already.
# Generate an image for the `i386` target architecture
$ bitbake multiconfig:qemui386-stretch:isar-image-base
# Similarly, for the `amd64` target architecture, in this case EFI
$ bitbake multiconfig:qemuamd64-stretch:isar-image-base
In order to run the EFI images with qemu
, an EFI firmware is required and available at the following address:
https://github.com/tianocore/edk2/tree/3858b4a1ff09d3243fea8d07bd135478237cb8f7
Note that the ovmf
package in Debian jessie/stretch/sid contains a pre-compiled firmware, but doesn't seem to be recent
enough to allow images to be testable under qemu
.
# AMD64 image, EFI
qemu-system-x86_64 -m 256M -nographic -bios edk2/Build/OvmfX64/RELEASE_*/FV/OVMF.fd -hda tmp/deploy/images/isar-image-base-debian-stretch-qemuamd64.wic.img
# i386 image
qemu-system-i386 -m 256M -nographic -hda tmp/deploy/images/isar-image-base-debian-stretch-qemui386.wic.img
chroot
(8) runs a command within a specified root directory. Please refer to GNU coreutils online help: http://www.gnu.org/software/coreutils/ for more information.
QEMU is a generic and open source machine emulator and virtualizer. Please refer to http://wiki.qemu.org/Main_Page for more information.
Debian is a free operating system for your machine. Please refer to https://www.debian.org/index.en.html for more information.
Apt
(for Advanced Package Tool) is a set of tools for managing Debian package repositories and applications installed on your Debian system. Please refer to https://wiki.debian.org/Apt for more information.
BitBake is a generic task execution engine for efficient execution of shell and Python tasks according to their dependencies. Please refer to https://www.yoctoproject.org/docs/1.6/bitbake-user-manual/bitbake-user-manual.html for more information.
Isar workflow consists of stages described below.
This filesystem is used as a build environment to compile custom packages. It is generated using apt
binaries repository, selected by the user in configuration file. Please refer to distro configuration chapter for more information.
During this stage Isar processes custom packages selected by the user and generates binary *.deb
packages for the target. Please refer to custom packages generation section for more information.
This filesystem is generated similarly to the buildchroot
one using the apt
binaries repository. Please refer to distro configuration chapter for more information.
At this stage, Isar populates target filesystem by custom packages that were built in previous stages.
Isar can generate various image types, e.g. an ext4 filesystem or a complete SD card image. The list of images to produce is set in configuration file, please refer to image type selection section.
Isar uses the following configuration files:
conf/bblayers.conf
conf/local.conf
This file contains the list of meta layers, where bitbake
will search for recipes, classes and configuration files. By default, Isar includes the following layers:
meta
- Core Isar layer which contains basic functionality.meta-isar
- Product template layer. It demonstrates Isar's features. Also this layer can be used to create your projects.
This file contains variables that will be exported to the BitBake environment and may be referenced in recipes.
Among other things, local.conf
defines the configurations to generate the
images for.
If BitBake is called with image targets (e.g., isar-image-base
), the
following variables define the default configuration to build for:
-
MACHINE
- The board to build for (e.g.,qemuarm
,rpi
). BitBake looks for conf/multiconfig/${MACHINE}.conf in every layer. -
DISTRO
- The distro to use (e.g.raspbian-jessie
,debian-stretch
). BitBake looks for conf/distro/${DISTRO}.conf in every layer. -
DISTRO_ARCH
- The Debian architecture to build for (e.g.,armhf
).
If BitBake is called with multiconfig targets (e.g.,
multiconfig:qemuarm-jessie:isar-image-base
), the following variable defines
all supported configurations:
BBMULTICONFIG
- The list of the complete configuration definition files. BitBake looks for conf/multiconfig/.conf in every layer. Every configuration must defineMACHINE
,DISTRO
andDISTRO_ARCH
.
Some other variables include:
IMAGE_INSTALL
- The list of custom packages to build and install to target image, please refer to relative chapter for more information.BB_NUMBER_THREADS
- The number ofbitbake
jobs that can be run in parallel. Please set this option according your host CPU cores number.LOCALE_GEN
- A\n
seperated list of/etc/locale.gen
entries desired on the target.LOCALE_DEFAULT
- The default locale used for theLANG
andLANGUAGE
variable in/etc/locale
.HOST_DISTRO
- The distro to use for SDK root filesystem (so far limited only todebian-stretch
). This variable is optional.HOST_ARCH
- The Debian architecture of SDK root filesystem (e.g.,amd64
). By default set to current Debian host architecture. This variable is optional.HOST_DISTRO_APT_SOURCES
- List of apt source files for SDK root filesystem. This variable is optional.HOST_DISTRO_APT_PREFERENCES
- List of apt preference files for SDK root filesystem. This variable is optional.
In Isar, each machine can use its specific Linux distro to generate buildchroot
and target filesystem. By default, Isar provides configuration files for the following distros:
- debian-jessie
- debian-stretch
- debian-buster
- raspbian-jessie
User can select appropriate distro for specific machine by setting the following variable in machine configuration file:
DISTRO = "distro-name"
To add new package to an image, do the following:
- Create a package recipe and put it in your
isar
layer. - Append
IMAGE_INSTALL
variable by this recipe name. If this package should be included for all the machines, putIMAGE_INSTALL
tolocal.conf
file. If you want to include this package for specific machine, put it to your machine configuration file.
Please refer to Add a Custom Application
section for more information about writing recipes.
Isar can generate various images types for specific machine. The type of the image to be generated may be specified through the IMAGE_TYPE
variable. Currently, the following image types are provided:
ext4
- Raw ext4 filesystem image (default option forqemuarm
machine).rpi-sdimg
- A complete, partitioned Raspberry Pi SD card image (default option for therpi
machine).wic-img
- A full disk image with user-specified partitions created and populated using the wic tool.
The distro is defined by the set of the following variables:
DISTRO_APT_SOURCES
- List of apt source filesDISTRO_APT_KEYS
- List of gpg key URIs used to verify apt reposDISTRO_APT_PREFERENCES
- List of apt preference filesDISTRO_KERNELS
- List of supported kernel suffixes
Below is an example for Raspbian Jessie:
DISTRO_APT_SOURCES += "conf/distro/raspbian-jessie.list"
DISTRO_APT_KEYS += "https://archive.raspbian.org/raspbian.public.key;sha256sum=ca59cd4f2bcbc3a1d41ba6815a02a8dc5c175467a59bd87edeac458f4a5345de"
DISTRO_CONFIG_SCRIPT?= "raspbian-configscript.sh"
DISTRO_KERNELS ?= "rpi rpi2 rpi-rpfv rpi2-rpfv"
To add new distro, user should perform the following steps:
-
Create
distro
folder in your layer:$ mkdir meta-user/conf/distro
-
Create the
.conf
file in distro folder with the name of your distribution. We recommend to name distribution in the following format:name
-suite
, for example:debian-jessie debian-stretch debian-buster
-
In this file, define the variables described above.
Every machine is described in its configuration file. The file defines the following variables:
IMAGE_PREINSTALL
- The list of machine-specific packages, that has to be included to image. This variable must include the name of the following packages (if applicable):- Linux kernel.
- U-Boot or other boot loader.
- Machine-specific firmware.
KERNEL_IMAGE
- The name of kernel binary that it installed to/boot
folder in target filesystem. This variable is used by Isar to extract the kernel binary and put it into the deploy folder. This makes sense for embedded devices, where kernel and root filesystem are written to different flash partitions. This variable is optional.INITRD_IMAGE
- The name oframdisk
binary. The meaning of this variable is similar toKERNEL_IMAGE
. This variable is optional.MACHINE_SERIAL
- The name of serial device that will be used for console output.IMAGE_TYPE
- The type of images to be generated for this machine.
Below is an example of machine configuration file for Raspberry Pi
board:
IMAGE_PREINSTALL = "linux-image-rpi-rpfv \
raspberrypi-bootloader-nokernel"
KERNEL_IMAGE = "vmlinuz-4.4.0-1-rpi"
INITRD_IMAGE = "initrd.img-4.4.0-1-rpi"
MACHINE_SERIAL = "ttyAMA0"
IMAGE_TYPE = "rpi-sdimg"
To add new machine user should perform the following steps:
-
Create the
machine
directory in your layer:$ mkdir meta-user/conf/machine
-
Create
.conf
file in machine folder with the name of your machine. -
Define in this file variables, that described above in this chapter.
Image in Isar contains the following artifacts:
- Image recipe - Describes set of rules how to generate target image.
- Config script - Performs some general base system configuration after all packages were installed. (locale, fstab, cleanup, etc.)
In image recipe, the following variable defines the list of packages that will be included to target image: IMAGE_PREINSTALL
. These packages will be taken from apt
source.
The user may use met-isar/recipes-core-images
as a template for new image recipes creation.
The image recipe in Isar creates a folder with target root filesystem. The default its location is:
tmp/work/${IMAGE}/${MACHINE}/rootfs
Every image type in Isar is implemented as a bitbake
class. The goal of these classes is to pack root filesystem folder to appropriate format.
As already mentioned, Isar uses bitbake
to accomplish the work. The whole build process is a sequence of tasks. This sequence is generated using task dependencies, so the next task in chain requires completion of previous ones.
The last task of image recipe is do_populate
, so the class that implement new image type should continue execution from this point. According to the BitBake syntax, this can be implemented as follows:
Create a new class:
$ vim meta-user/classes/my-image.bbclass
Add these lines:
do_my_image() {
}
addtask my_image before do_build after do_populate
The content of do_my_image
function can be implemented either in shell or in Python.
In the machine configuration file, set the following:
IMAGE_TYPE = "my-image"
Isar contains three image type classes that can be used as reference:
ext4-img
rpi-sdimg
wic-img
Customization and configuration of an image should be done via packages, see below.
Adding those configuration packages to the image can be done in two ways:
- Simply adding the package to
IMAGE_INSTALL
, like any other isar created package, or - Adding the package to
IMAGE_TRANSIENT_PACKAGES
.
In most cases adding the configuration package to IMAGE_INSTALL
is the right option.
In cases were the configuration script of the package has some external dependencies, that should not be part of the final image, then IMAGE_TRANSIENT_PACKAGES
is the right option.
Packages in the IMAGE_TRANSIENT_PACKAGES
variable are installed to the image and purged in the next step. If such a configuration package deploys file as part of their content, then those files will be removed as well.
Before creating a new recipe it's highly recommended to take a look into the BitBake user manual mentioned in Terms and Definitions section.
Isar currently supports two ways of creating custom packages.
The deb
packages are built using dpkg-buildpackage
, so the sources should contain the debian
directory with necessary meta information. This way is the default way of adding software that needs to be compiled from source. The bbclass for this approach is called dpkg
.
NOTE: If the sources do not contain a debian
directory your recipe can fetch, create, or ship that.
DESCRIPTION = "Sample application for ISAR"
LICENSE = "gpl-2.0"
LIC_FILES_CHKSUM = "file://${LAYERDIR_isar}/licenses/COPYING.GPLv2;md5=751419260aa954499f7abaabaa882bbe"
PV = "1.0"
SRC_URI = "git://github.com/ilbers/hello.git"
SRCREV = "ad7065ecc4840cc436bfcdac427386dbba4ea719"
S = "${WORKDIR}/git"
inherit dpkg
The following variables are used in this recipe:
-
DESCRIPTION
- Textual description of the package. -
LICENSE
- Application license file. -
LIC_FILES_CHKSUM
- Reference to the license file with its checksum. Isar recommends to store license files for your applications into layer your layer foldermeta-user/licenses/
. Then you may reference it in recipe using the following path:LIC_FILES_CHKSUM = file://${LAYERDIR_isar}/licenses/...
This approach prevents duplication of the license files in different packages.
PV
- Package version.SRC_URI
- The link where to fetch application source. Please check the BitBake user manual for supported download formats.S
- The directory name where application sources will be unpacked. Forgit
repositories, it should be set togit
. Please check the BitBake user manual for supported download formats.SRCREV
- Source code revision to fetch. Please check the BitBake user manual for supported download formats.
The last line in the example above adds recipe to the Isar work chain.
If your customization is not about compiling from source there is a second way of creating deb
packages. That way can be used for cases like:
- packaging binaries/files that where built outside of Isar
- customization of the rootfs with package-hooks
- pulling in dependancies (meta-packages)
The bbclass for this approach is called dpkg-raw
.
DESCRIPTION = "Sample application for ISAR"
MAINTAINER = "Your name here <[email protected]>"
DEBIAN_DEPENDS = "apt"
inherit dpkg-raw
do_populate_package() {
....
}
For the variables please have a look at the previous example, the following new variables are required by dpkg-raw
class:
MAINTAINER
- The maintainer of thedeb
package we create. If the maintainer is undefined, the recipe author should be mentioned hereDEBIAN_DEPENDS
- Debian packages that the package depends on
Have a look at the example-raw
recipe to get an idea how the dpkg-raw
class can be used to customize your image.
binfmt is a powerful feature that makes possible to run foreign architectures like ARM on x86 hosts. But at the same the performance of such emulation is quite low. For the cases when lots of packages should be built from sources, a cross-compilation support could be very useful.
Cross-compilation mode could be enabled by using the ISAR_CROSS_COMPILE
variable. This variable could be set in both:
- In
local.conf
to set cross-compilation mode to be the default option for the whole build. - In specific recipe to overwrite global settings. This could be useful when package doesn't support cross-compilation, so the following line
should be added to its recipe:
ISAR_CROSS_COMPILE := "0"
.
The cross-building process is absolutely the same as for native compilation, no extra tasks are added and removed: newly built packages are put into Isar apt.
Debian cross-compilation works out of the box starting from Debian stretch distribution. So currently the only following build configurations are supported in Isar:
- qemuarm-stretch
- qemuarm64-stretch
Building applications for targets in ISAR takes a lot of time as they are built under QEMU. SDK providing crossbuild environment will help to solve this problem.
Create SDK root file system for host with installed cross-toolchain for target architecture and ability to install already prebuilt target binary artifacts. Developer chroots to sdk rootfs and develops applications for target platform.
User manually triggers creation of SDK root filesystem for his target platform by launching the task do_populate_sdk
for target image, f.e.
bitbake -c do_populate_sdk multiconfig:${MACHINE}-${DISTRO}:isar-image-base
.
The resulting SDK rootfs is archived into tmp/deploy/images/sdk-${DISTRO}-${DISTRO_ARCH}.tar.xz
.
It is additionally available for direct use under tmp/deploy/images/sdk-${DISTRO}-${DISTRO_ARCH}/
.
The SDK rootfs directory /isar-apt
contains a copy of isar-apt repo with locally prebuilt target debian packages (for <HOST_DISTRO>).
One may chroot into the SDK and install required target packages with the help of apt-get install <package_name>:<DISTRO_ARCH>
command.
Only Debian Stretch for SDK root filesystem is supported as only Stretch provides crossbuild environment by default. (Debian Jessie requires some additional preconfiguration steps see https://wiki.debian.org/CrossToolchains#Installation for details).
- Trigger creation of SDK root filesystem
bitbake -c do_populate_sdk multiconfig:qemuarm-stretch:isar-image-base
- Mount the following directories in chroot by passing resulting rootfs as an argument to the script
mount_chroot.sh
:
cat scripts/mount_chroot.sh
#!/bin/sh
set -e
mount /tmp $1/tmp -o bind
mount proc $1/proc -t proc -o nosuid,noexec,nodev
mount sysfs $1/sys -t sysfs -o nosuid,noexec,nodev
mount devtmpfs $1/dev -t devtmpfs -o mode=0755,nosuid
mount devpts $1/dev/pts -t devpts -o gid=5,mode=620
mount tmpfs $1/dev/shm -t tmpfs -o rw,seclabel,nosuid,nodev
$ sudo scripts/mount_chroot.sh ../build/tmp/work/debian-stretch-armhf/sdkchroot-debian-stretch-amd64/rootfs
- chroot to isar SDK rootfs:
$ sudo chroot ../build/tmp/work/debian-stretch-armhf/sdkchroot-debian-stretch-amd64/rootfs
- Check that cross toolchains are installed
:~# dpkg -l | grep crossbuild-essential-armhf
ii crossbuild-essential-armhf 12.3 all Informational list of cross-build-essential packages
- Install needed prebuilt target packages.
:~# apt-get install libhello-dev:armhf
- Check the contents of the installed target package
:~# dpkg -L libhello-dev
/.
/usr
/usr/include
/usr/include/hello.h
/usr/lib
/usr/lib/arm-linux-gnueabihf
/usr/lib/arm-linux-gnueabihf/libhello.a
/usr/lib/arm-linux-gnueabihf/libhello.la
/usr/share
/usr/share/doc
/usr/share/doc/libhello-dev
/usr/share/doc/libhello-dev/changelog.gz
/usr/share/doc/libhello-dev/copyright
~#