On this page:
- Building NXP/Embedian’s Yocto Sumo BSP Distribution
- Introduction
- Generating SSH Keys
- Overview of the meta-smarcimx8mm-sumo Yocto Layer
- Setting Up the Tools and Build Environment
- Setup SD Card Manually
- Install Root File System
- Setup SD Card Automatically
- Feed Packages
- Writing Bitbake Recipes
- Setup eMMC Manually
- Install Root File System
- Setup eMMC Automatically
- Video Decoding
Building NXP/Embedian’s Yocto Sumo BSP Distribution
Eric Lee
version 1.0a, 03/19/2020
Introduction
This document describes how Embedian builds a customized version of NXP’s i.MX8M Mini official Yocto Sumo BSP release for Embedian's SMARC-iMX8MM product platform. The approach is to pull from Embedian's public facing GIT repository and build that using bitbake. The reason why we use this approach is that it allows co-development. The build output is comprised of binary images, feed packages, and an SDK for SMARC-iMX8MM specific development.
Freescale makes their i.MX series official bsp build scripts available via the following GIT repository:
It is this repository that actually pulls in the fsl-bsp-release project to perform the Linux BSP builds for Freescale's i.MX8M Mini ARM Cortext-A53 chips.
Generating SSH Keys
We recommend you use SSH keys to establish a secure connection between your computer and Embedian Gitlab server. The steps below will walk you through generating an SSH key and then adding the public key to our Gitlab account.
Step 1. Check for SSH keys
First, we need to check for existing ssh keys on your computer. Open up Git Bash and run:
Check the directory listing to see if you have a file named either id_rsa.pub
or id_dsa.pub
. If you don't have either of those files go to step 2. Otherwise, you already have an existing keypair, and you can skip to step 3.
Step 2. Generate a new SSH key
To generate a new SSH key, enter the code below. We want the default settings so when asked to enter a file in which to save the key, just press enter.
Now you need to enter a passphrase.
Which should give you something like this:
Step 3. Add your SSH key to Embedian Gitlab Server
Copy the key to your clipboard.
Go to Embedian Git Server. At Profile Setting --> SSH Keys --> Add SSH Key
Paste your public key and press "Add Key" and your are done.
Overview of the meta-smarcimx8mm-sumo Yocto Layer
The supplied meta-smarcimx8mm-sumo Yocto compliant layer has the following organization:
Notes on meta-smarcimx8mm-sumo layer content
conf/machine/*
This folder contains the machine definitions for the smarcimx8mm2g/smarcimx8mm4g platform and backup repository in Embedian. These select the associated kernel, kernel config, u-boot, u-boot config, and tar.bz2 image settings.
recipes-bsp/u-boot/*
This folder contains recipes used to build DAS U-boot for smarcimx8mm2g/smarcimx8mm4g platform.
recipes-bsp/alsa-state/*
This folder contains sgtl5000 sound chip default state for smarcimx8mm2g/smarcimx8mm4g platform.
recipes-bsp/imx-atf/*
Assign uart4 to Cortex-A53 core for smarcimx8mm2g/smarcimx8mm4g platform.
recipes-bsp/imx-mkimage/*
This folder contains imx-mkimage tool for smarcimx8mm2g/smarcimx8mm4g platform.
recipes-core/busybox/*
This folder remove telnetd from bysybox for smarcimx8mm2g/smarcimx8mm4g platform.
recipes-core/systemd/*
This folder remove redundant ttymxc0 console port for smarcimx8mm2g/smarcimx8mm4g platform.
recipes-core/psplash/*
This folder customized Yocto boot psplash for smarcimx8mm2g/smarcimx8mm4g platform.
recipes-kernel/linux/*
Contains the recipes needed to build the smarcimx8mm2g/smarcimx8mm4g Linux kernels.
Setting Up the Tools and Build Environment
To build the latest Freescale i.MX8M Mini fsl-bsp-release, you first need an Ubuntu 16.04 LTS installation. Since bitbake does not accept building images using root privileges, please do not login as a root user when performing the instructions in this section.
Once you have Ubuntu 16.04 LTS running, install the additional required support packages using the following console command:
If you are using a 64-bit Linux, then you'd also need to install 32-bit support libraries, needed by the pre-built Linaro toolchain and other binary tools.
To get the BSP you need to have 'repo' installed and use it as:
Install the 'repo' utility:
Choose "y" to accept EULA.
This script will create and bring you to ~/smarc-imx8mm-sumo-release/imx8mm-build-qt5wayland directory.
To build Embedian/Freescale Yocto BSP, use the following commands:
Once it done, you can find all required images under ~/smarc-imx8mm-sumo-release/<build directory>/tmp/deploy/images/<machine name>/
You may want to build programs that aren’t installed into a root file system so you can make them available via a feed site (described below.) To do this you can build the package directly and then build the package named package-index to add the new package to the feed site.
The following example builds the minicom program and makes it available on the feed site:
~/smarc-imx8mm-sumo-release/<build directory>/tmp/deploy
.deploy/images/<machine name>/*
This folder contains the binary images for the root file system and the Embedian SMARC-iMX8MM specific version of the boot file, Image and device tree file. Specifically the images are:
deploy/images/<machine name>/imx-boot-<machine name>-sd.bin-flash_evk
This boot file binary for SMARC-iMX8MM
deploy/images/<machine name>/Image
The kernel Image for SMARC-iMX8MM.
deploy/images/<machine name>/<device tee file>
The default DTB file is fsl-smarcimx8mm.dtb.
DTB File Name | Description |
---|---|
fsl-smarcimx8mm.dtb | The default dtb file for SMARC-iMX8MM |
deploy/images/<machine name>/fsl-image-validation-imx-<machine name>.*
Embedian root file system images for software development on Embedian’s SMARC-iMX8MM platforms without QT5.
deploy/images/<machine name>/fsl-image-qt5-validation-imx-<machine name>.*
Embedian root file system images for software development on Embedian’s SMARC-iMX8MM with QT5.
deploy/rpm/*
This folder contains all the packages used to construct the root file system images. They are in rpm format (similar format to Fedora packages) and can be dynamically installed on the target platform via a properly constructed feed file. Here is an example of the feed file (named imx8mm_qt5wayland_update.repo) that is used internally at Embedian to install upgrades onto a imx8mmsmarc QT5 platform directly on framebuffer without reflashing the file system:
deploy/licenses/*
Setup SD Card Manually
For these instruction, we are assuming: DISK=/dev/mmcblk0, "lsblk" is very useful for determining the device id.
Erase SD card:
Create Partition Layout: Leave 2MB offset for boot file.
With util-linux v2.26, sfdisk was rewritten and is now based on libfdisk.
Create Partitions:
Format Partitions:
Mount Partitions:
On some systems, these partitions may be auto-mounted...
Install Boot File (imx-boot-<machine name>-sd.bin-flash_evk
)
Boot file is factory default flashed at on-module eMMC flash.
If on-module eMMC Flash is empty
In some cases, when eMMC flash is erased or the u-boot is under development, we need a way to boot from SD card first. Users need to shunt cross the TEST# pin to ground. In this way, SMARC-iMX8MM will always boot up from SD card.
Fuse flash.bin to the SD card.
If on-module eMMC Flash is not empty
The <boot file> is pre-installed in on-module eMMC flash at factory default. SMARC-iMX8MM is designed to always boot up from on-module eMMC flash and to load Image, device tree blob and root file systems based on the setting of BOOT_SEL. If users need to fuse your own flash.bin or perform u-boot upgrade. This section will instruct you how to do that.
Copy <boot file> to the second partition home directory of your SD card and boot into SD card. Go to home directory and you should see flash.bin file.
Fuse <boot file> to the on-module eMMC flash. (The eMMC flash is emulated as /dev/mmcblk0 in SMARC-iMX8MM)
uEnv.txt based bootscript
Create "uEnv.txt" boot script: ($ vim uEnv.txt)
Copy uEnv.txt to the boot partition:
Install Kernel Image
Copy Image to the boot partition:
Install Kernel Device Tree Binary
The default DTB file is fsl-smatcimx8mm.dtb
Install Root File System
Copy Root File System:
Yocto Built Rootfs:
Remove SD card:
Setup SD Card Automatically
This section tells you how to set up an SD card automatically. It mainly uses a script to do all the steps in the above section.
Shunt cross TEST# pin to ground and set the BOOT_SEL to ON OFF OFF. The module will boot up from SD card.
Feed Packages
The following procedure can be used on a Embedian SMARC-iMX8MM device to download and utilize the feed file show above to install the tcpdump Ethernet packet analyzer program:
Writing Bitbake Recipes
In order to package your application and include it in the root filesystem image, you must write a BitBake recipe for it.
When starting from scratch, it is easiest to learn by example from existing recipes.
Example HelloWorld recipe using autotools
For software that uses autotools (./configure; make; make install), writing recipes can be very simple:
DESCRIPTION = "Hello World Recipe using autotools" HOMEPAGE = "http://www.embedian.com/" SECTION = "console/utils" PRIORITY = "optional" LICENSE = "GPL" PR = "r0" S = "${WORKDIR}/git" inherit autotools |
SRC_URI
specifies the location to download the source from. It can take the form of any standard URL using http://, ftp://, etc. It can also fetch from SCM systems, such as git in the example above.
PR
is the package revision variable. Any time a recipe is updated that should require the package to be rebuilt, this variable should be incremented.
inherit autotools
brings in support for the package to be built using autotools, and thus no other instructions on how to compile and install the software are needed unless something needs to be customized.
S
is the source directory variable. This specifies where the source code will exist after it is fetched from SRC_URI and unpacked. The default value is ${WORKDIR}/${PN}-${PV}
, where PN
is the package name and PV
is the package version. Both PN
and PV
are set by default using the filename of the recipe, where the filename has the format PN_PV.bb
.
Example HelloWorld recipe using a single source file
This example shows a simple case of building a helloworld.c file directly using the default compiler (gcc). Since it isn’t using autotools or make, we have to tell BitBake how to build it explicitly.
DESCRIPTION = "HelloWorld" SECTION = "examples" LICENSE = "GPL" SRC_URI = "file://helloworld.c" S = "${WORKDIR}" do_compile() { ${CC} ${CFLAGS} ${LDFLAGS} helloworld.c -o helloworld } do_install() { install -d ${D}${bindir} install -m 0755 helloworld ${D}${bindir} } |
In this case, SRC_URI
specifies a file that must exist locally with the recipe. Since there is no code to download and unpack, we set S
to WORKDIR
since that is where helloworld.c will be copied to before it is built.
WORKDIR
is located at ${OETREE}/<build directory>/tmp/work/aarch64-poky-linux/<package name and version>
for most packages. If the package is machine-specific (rather than generic for the aarch64 architecture), it may be located in the aarch64-mx8mm-poky-linux subdirectory depending on your hardware (this applies to kernel packages, images, etc).
do_compile
defines how to compile the source. In this case, we just call gcc directly. If it isn’t defined, do_compile
runs make
in the source directory by default.
do_install
defines how to install the application. This example runs install
to create a bin directory where the application will be copied to and then copies the application there with permissions set to 755.
D
is the destination directory where the application is installed to before it is packaged.
${bindir}
is the directory where most binary applications are installed, typically /usr/bin
.
For a more in-depth explanation of BitBake recipes, syntax, and variables, see the Recipe Chapter of the OpenEmbedded User Manual.
Setup eMMC Manually
Setting up eMMC usually is the last step at development stage after the development work is done at your SD card or NFS environments. From software point of view, eMMC is nothing but a non-removable SD card on board. For SMARC-iMX8MM, the SD card is always emulated as /dev/mmcblk1 and on-module eMMC is always emulated as /dev/mmcblk0. Setting up eMMC now is nothing but changing the device descriptor.
This section gives a step-by-step procedure to setup eMMC flash. Users can write a shell script your own at production to simplify the steps.
First, we need to backup the final firmware from your SD card or NFS.
Prepare for eMMC binaries from SD card (or NFS):
Insert SD card into your Linux PC. For these instructions, we are assuming: DISK=/dev/mmcblk0, "lsblk" is very useful for determining the device id.
For these instruction, we are assuming: DISK=/dev/mmcblk0, "lsblk" is very useful for determining the device id.
Mount Partitions:
On some systems, these partitions may be auto-mounted...
Copy Image to rootfs partition:
Copy uEnv.txt to rootfs partition:
Copy and paste the following contents to /media/rootfs/home/root ($ sudo vim /media/rootfs/home/root/uEnv.txt)
Copy device tree blob to rootfs partition:
Copy real rootfs to rootfs partition:
Remove SD card:
Copy Binaries to eMMC from SD card:
Insert this SD card into your SMARC-iMX8MM device.
Now it will be almost the same as you did when setup your SD card, but the eMMC device descriptor is /dev/mmcblk0 now. Booting up the device.
Erase eMMC:
Create Partition Layout:
Format Partitions:
Mount Partitions:
Install binaries for partition 1
Copy uEnv.txt/Image/*.dtb to the boot partition
Install Kernel Device Tree Binary
Install Root File System
Unmount eMMC:
Switch your Boot Select to eMMC and you will be able to boot up from eMMC now.
Setup eMMC Automatically
Boot up the module from SD card and run the following script. The Yocto images will be written into on-module eMMC.
Shutdown the device. Set TEST# pin floating and set the BOOT_SEL to OFF ON ON. The module will boot up from on-module eMMC.
Video Decoding
For playing video, we can use three solutions to support it.
a) # gplay-1.0 --video-sink=qmlglsink <video file>
b) # gst-launch-1.0 playbin uri=file://<video absolute path> video-sink=glimagesink
c) # gst-launch-1.0 filesrc location=<file name.mp4> typefind=true ! video/quicktime ! aiurdemux ! queue max-size-time=0 ! vpudec ! glimagesink
version 1.0a, 03/0192020
Last updated 2020-03-19