The instructions on this page have been tested on HOST_OS_NAME HOST_OS_VERSION (HOST_OS_BITS) in a VMWare virtual machine.

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

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

BSP Revision BSP_REV
Yocto Project / Poky Release <label yocto_rel_ver_major>YOCTO_REL_VER_MAJOR</label>.<label yocto_rel_ver_minor>YOCTO_REL_VER_MINOR</label> - <label yocto_rel_name>YOCTO_REL_NAME</label>
Target machine1) MTQ_MACHINES
U-Boot UBOOT_VERSION
Linux Kernel LINUX_KERNEL


It's strongly recommended to use git for downloading the Yocto Project / Poky Release (instead of downloading an archive and extracting it).

The goal of these wiki pages is to get you started using meta-tq-powerarch with the STK_NAME, so instead of reinventing the wheel we will adhere to the very compact Yocto Project Quick Start and supply details specific to the STK_NAME where necessary.

For further details regarding Yocto Project YOCTO_REL_VER_MAJOR.YOCTO_REL_VER_MINOR - YOCTO_REL_NAME please refer to its official documentation.

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

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

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.

The Yocto Project Quick Start document explains how to set up Yocto Project / Poky and how to build images using the meta-intel layer. Using this as a guideline, the following table describes how to use the meta-tq-powerarch layer for the STK_NAME.

Section Remarks / Instructions for meta-tq-powerarch & STK_NAME
Welcome! Introduction and basic information about the Yocto Project
Introducing the Yocto Project Development Environment
Setting Up to Use the Yocto Project Description of basic requirements for using the Yocto Project (also cf. Prerequisites above)
Yocto Project Release Instructions on how to install a release of the Yocto Project on the Build Host

$ git checkout <label yocto_rel_branch>YOCTO_REL_BRANCH</label>

will not work unless you change into the poky directory (i.e. the freshly cloned Poky repository).

Alternatively you can clone the Poky repository and checkout branch YOCTO_REL_BRANCH in one step by executing

$ git clone -b <label yocto_rel_branch>YOCTO_REL_BRANCH</label> git://git.yoctoproject.org/poky.git
Building Images

This section provides step-by-step instructions for

  1. Building An Image for Emulation3)
  2. Building An Image for Hardware4)

To sucessfully build an image for hardware you have to carry out steps from both subsections5) as follows.

1. Be sure your build host is set up: See above
2. Check out your branch:

$ git checkout <label yocto_rel_branch>YOCTO_REL_BRANCH</label>

You can skip this step if you checked out branch YOCTO_REL_BRANCH already when/after cloning the poky repository.
3. Initialize the Build Environment: The build environment will be initialised at a later step, do not run source oe-init-build-env yet!
Create a file called environment as follows:

$ cat > environment
export TEMPLATECONF=meta-tq-powerarch/conf
source poky/oe-init-build-env
export BB_ENV_EXTRAWHITE="$BB_ENV_EXTRAWHITE FSL_RCW"

Press CTRL+D to close the file.
5. - 7. You can skip these steps, they are not required for using meta-tq-powerarch.

1. Create a Local Copy of MTQ_REPOS:

$ cd poky
$ tar xvf <path>/<to>/<tarball>/<label mtq_tarball>MTQ_TARBALL</label>
$ git clone -b <label yocto_rel_branch>YOCTO_REL_BRANCH</label><label yocto_rel_branch_module>YOCTO_REL_BRANCH_MODULE</label> git://git.yoctoproject.org/meta-fsl-ppc

2. Configure the Build:

$ cd ..
$ . environment

When building for another machine6) make sure that your local.conf contains a valid combination of MACHINE, FSL_RCW and KERNEL_DEVICETREE!
3. Build an Image for STK_NAME:

$ bitbake <label mtq_image>MTQ_IMAGE</label>

The resulting image is tmp/deploy/images/MTQ_MACHINE_DEFAULT7)/MTQ_IMAGE-MTQ_MACHINE_DEFAULT8).wic
4. Write the Image9)10)

$ sudo dd if=tmp/deploy/images/<label mtq_machine_default>MTQ_MACHINE_DEFAULT</label>/<label mtq_image>MTQ_IMAGE</label>-<label mtq_machine_default>MTQ_MACHINE_DEFAULT</label>.wic of=TARGET_DEVICE

5. Boot the STK_NAME from SD card (cf. <label mb_name>MB_NAME</label> DIP switche 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)
7 steps, explicitly aims at emulation using qemu
4)
5 steps, targets real hardware
5)
subsection headings may be missing in Yocto Project Quick Start (depends on Poky version)
6) , 7) , 8) , 9)
valid machines are
MTQ_MACHINES
10)
TARGET_DEVICE has to be an SD card
  • Last modified: 2022/08/04 15:02