MBLS1028A-IND - Yocto Linux BSP documentation

The meta-tq layer extends the Yocto Project's reference system Poky to provide support for a selection of TQ Embedded CPU Modules, including the TQMLS1028A.

It uses the same codebase as the PTXdist based TQ Linux BSPs and therefore provides the same versions of U-Boot and Linux kernel, but doesn't define a specific root filesystem configuration.

Because of the dependencies to the other yocto layers we recommend to use ci-meta-tq which already provides all required yocto layers as git submodules instead of meta-tq to build this BSP release.

The instructions on this page refer to the BSP and ancillary tools listed in the following table:

BSP Revision 0108
meta-tq release hardknott.TQMLS1028A.BSP.SW.0108
Yocto Project / Poky Release 3.3.6 - Hardknott
Target machine1) tqmls1028a-mbls1028a
tqmls1028a-mbls1028a-ind
U-Boot u-boot-2019.10-LSDK-20.04
Linux Kernel fslc-5.4-1.0.0-imx
LSDK-20.12-V5.4-RT
The goal of these wiki pages is to get you started using ci-meta-tq with the STKLS1028A, so instead of reinventing the wheel we will adhere to the very compact Yocto Project Quick Build and supply details specific to the STKLS1028A where necessary.

For further details regarding Yocto Project 3.3.6 - Hardknott please refer to its official documentation.

Build Host

Yocto Project / Poky requires a Linux build host, so first of all you need a development workstation (or a virtual machine2)) with a Linux distribution installed.

Please refer to section Supported Linux Distribution of the Yocto Project Quick Start for supported linux distributions and section Required Packages for the Build Host for required build host packages for those distributions.

The instructions on this page have been tested on Ubuntu 18.04 (64 bit) in a VMWare virtual machine.

Although not required by Yocto Project / Poky, we also recommend to configure and run a tftp server (for image download / update) and an nfs server (for network mounted root filesystem) on your development host.

Yocto Hardknott BSP

1. Open a new terminal and create a directory for the BSP build e.g. in the home directory and navigate to that directory.

mkdir -p ~/workspace/hardknott.TQMLS1028A.BSP.SW.0108
cd ~/workspace/hardknott.TQMLS1028A.BSP.SW.0108

2. Create a local copy of meta-tq

git clone --recurse-submodules https://github.com/tq-systems/ci-meta-tq.git

3. Checkout BSP release on new local branch.

cd ci-meta-tq
git checkout hardknott.TQMLS1028A.BSP.SW.0108 -b hardknott-tqmls1028a

4. Update git submodules:

git submodule sync
git submodule update --init

5. Setup local branch to track the remote branch.

git branch -u origin/hardknott

6. Export the environment DISTRO and MACHINE environment variable:

export DISTRO=dumpling
export MACHINE=tqmls1028a-mbls1028a-ind

7. Initialize the build environment3):

source setup-environment tqmls1028a_build ls
Each time a new terminal is opened, the build environment must be reinitialised. The command described above is intended for the initial build space initialisation. To return to an existing buildspace open up a new terminal and navigate to the ci-meta-tq folder and execute the following command:
source setup-environment tqmls1028a_build  

8. Configure the Build for a specific Linux kernel4):

Configuration for NXP Linux kernel

Configuration for NXP Linux kernel 5.4 with RT patches

Configuration for NXP Linux kernel 5.10 with RT patches

9. Build an Image for STKLS1028A:

Image with debug features/root login

bitbake tq-image-generic-debug

Image without debug features/root login

bitbake tq-image-generic


9. Write the Image7)8)

sudo dd if=tmp/deploy/images/tqmls1028a-mbls1028a-ind/tq-image-generic-tqmls1028a-mbls1028a-ind.wic of=/dev/<TARGET_DEVICE>

10. Boot the STKLS1028A from SD card (cf. tqmls1028a DIP switch settings) |


1)
i.e. value for MACHINE variable
2)
for testing purposes Yocto Project provides a ready to use virtual machine called Build Appliance
3)
valid machines are
tqmls1028a-mbls1028a
tqmls1028a-mbls1028a-ind
4)
valid machines are
tqmls1028a-mbls1028a
tqmls1028a-mbls1028a-ind
5)
valid machines are
tqmls1028a-mbls1028a
tqmls1028a-mbls1028a-ind
6)
valid machines are
tqmls1028a-mbls1028a
tqmls1028a-mbls1028a-ind
7)
valid machines are
tqmls1028a-mbls1028a
tqmls1028a-mbls1028a-ind
8)
TARGET_DEVICE has to be an SD card

  • Last modified: 2022/12/20 10:01