Embedded module TQMa57xx - 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 TQMa57xx.

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 0015
meta-tq release kirkstone.TQMa57xx.BSP.SW.0015
Yocto Project / Poky Release 4.0.16
Target machine1) tqma57xx-mba57xx
tqma574x-ecc-mba57xx
U-Boot 2019.04
Linux Kernel ti-rt-linux-5.10.y
The goal of these wiki pages is to get you started using ci-meta-tq with the STKa57xx, so instead of reinventing the wheel we will adhere to the very compact Yocto Project Quick Build and supply details specific to the STKa57xx where necessary.

For further details regarding Yocto Project 4.0.16 - Kirkstone 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 20.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 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/kirkstone.TQMa57xx.BSP.SW.0015
cd ~/workspace/kirkstone.TQMa57xx.BSP.SW.0015

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 kirkstone.TQMa57xx.BSP.SW.0015 -b kirkstone-tqma57xx

4. Update git submodules:

git submodule sync
git submodule update --init

5. Setup local branch to track the remote branch.

git branch -u origin/<label yocto_remote_branch_name>YOCTO_REMOTE_BRANCH_NAME</label>

6. Export the environment DISTRO and MACHINE3) environment variable:

export DISTRO=spaetzle-ti
export MACHINE=tqma57xx-mba57xx

7. Configure the Build:

source setup-environment tqma57xx_build ti
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 tqma57xx_build  

8. Build an Image for STKa57xx:

Image with debug features/root login

bitbake tq-image-generic-debug

Image with IMAGE_FEATURES debug and debug-tweaks enabled to have an open root login for console and ssh for ease of development and testing.

Image without debug features/root login

bitbake tq-image-generic

Image without IMAGE_FEATURES debug and debug-tweaks enabled. A user login is not allowed with this image, if a login is required, please see poky documentation for extrausers.bbclass

For further information to the TQ image recipes, please refer to the section Image recipes from the meta-dumpling Yocto layer documentation.
meta-dumpling documentation


9. Write the Image6)7)

sudo dd if=tmp/deploy/images/tqma57xx-mba57xx/tq-image-generic-tqma57xx-mba57xx.wic of=/dev/<TARGET_DEVICE>

10. Boot the STKa57xx from SD card (cf. MBa57xx 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
tqma57xx-mba57xx
tqma574x-ecc-mba57xx
4)
valid machines are
tqma57xx-mba57xx
tqma574x-ecc-mba57xx
5)
valid machines are
tqma57xx-mba57xx
tqma574x-ecc-mba57xx
6)
valid machines are
tqma57xx-mba57xx
tqma574x-ecc-mba57xx
7)
TARGET_DEVICE has to be an SD card

  • Last modified: 2024/03/12 13:14