# Toradex Apalis i.MX8

**URL:** https://hub.mender.io/t/toradex-apalis-i-mx8/4103
**Category:** Yocto Project
**Tags:** nxp, toradex
**Created:** [September 21, 2021, 3:23pm UTC](https://hub.mender.io/t/toradex-apalis-i-mx8/4103 "2021-09-21T15:23:24Z")
**Posts on this page:** 9
**Page:** 1

<div class="post-metadata">

### Author: ![drewmoseley](https://yyz2.discourse-cdn.com/flex036/user_avatar/hub.mender.io/drewmoseley/32/47_2.png) [@drewmoseley](https://hub.mender.io/u/drewmoseley)
#### Post date: [September 21, 2021, 3:23pm UTC](https://hub.mender.io/t/toradex-apalis-i-mx8/4103/1 "2021-09-21T15:23:24Z")

</div>

The official [Mender documentation](https://docs.mender.io/) explains how Mender works. This is simply a board-specific complement to the official documentation.

# Board description

The Apalis i.MX8 is a System on Module based on the NXP® i.MX 8 family of embedded System on Chips (SoCs). The i.MX 8 series of applications processors, part of the EdgeVerse™ [edge computing](https://www.nxp.com/applications/enabling-technologies/edge-computing:EDGE-COMPUTING) platform, is a feature- and performance-scalable multicore platform that includes single-, dual- and quad-core families based on the Arm Cortex architecture—including combined Cortex-A72 + Cortex-A53, Cortex-A35, Cortex-M4 and Cortex M7-based solutions for advanced graphics, imaging, machine vision, audio, voice, video and safety-critical applications.

![](https://docs.toradex.com/108488-apalis-imx8qm-front-view.png?h=250)

URL: [https://www.toradex.com/computer-on-modules/apalis-arm-family/nxp-imx-8](https://www.toradex.com/computer-on-modules/apalis-arm-family/nxp-imx-8)  
Wiki: [Apalis iMX8 | Toradex Developer Center](https://developer.toradex.com/products/apalis-som-family/modules/apalis-imx8)

# Test results

The Yocto Project releases in the table below have been tested by the Mender community. Please update it if you have tested this integration on other [Yocto Project releases](https://wiki.yoctoproject.org/wiki/Releases?target=_blank):

| Yocto Project | Build | Runtime |
| --- | --- | --- |
| dunfell (Yocto 3.1 / Toradex BSP 5.3.0) | :test_works: | :test_works: |
| — | — | — |
| dunfell (Yocto 3.1 / Toradex BSP 5.4.0) | :test_works: | :test_works: |

**Build** Means that the Yocto Project build using this Mender integration completes without errors and outputs images.  
**Runtime** Means that Mender has been verified to work on the board. For U-Boot-based boards, the [integration checklist](https://docs.mender.io/devices/integrating-with-u-boot/integration-checklist?target=_blank) has been verified.

# Getting started

## Prerequisites

- A supported Linux distribution and dependencies installed on your workstation/laptop as described in the [Yocto Mega Manual](https://www.yoctoproject.org/docs/current/mega-manual/mega-manual.html#detailed-supported-distros)
  - NOTE. Instructions depend on which Yocto version you intend to use.

- Google repo tool [installed](https://hub.mender.io/t/google-repo/58/2) and in your `PATH` .

## Configuring the build

### Setup Yocto environment

Set the Yocto Project branch you are building for:

Create a directory for your `mender-toradex` setup to live in and clone the  
meta information.

```auto
mkdir mender-toradex && cd mender-toradex

```

Select the appropriate Toradex BSP version:

```auto
export TORADEX_BSP_VERSION=5.3.0

```

```auto
export TORADEX_BSP_VERSION=5.4.0

```

Initialize repo manifest:

```auto
repo init -u git://git.toradex.com/toradex-manifest.git \
    -b refs/tags/${TORADEX_BSP_VERSION} \
    -m tdxref/default.xml

```

Download mender manifest:

```auto
wget --directory-prefix .repo/local_manifests \
    https://raw.githubusercontent.com/mendersoftware/meta-mender-community/dunfell/scripts/mender-no-setup-layers.xml

```

Fetch layers in manifest:

```auto
repo sync -j$(nproc)
cd .repo/local_manifests/
ln -sf ../../layers/meta-mender-community/scripts/mender-no-setup-layers.xml .
cd ../..

```

## Setup build environment

Initialize the build environment:

```auto
. export

```

Add Mender layers:

```auto
bitbake-layers add-layer $(pwd)/../layers/meta-mender/meta-mender-core/
bitbake-layers add-layer $(pwd)/../layers/meta-mender-community/meta-mender-toradex-nxp/

```

Add optional Mender demo layer:

```auto
# Omit this, if you intend to use this build in production
bitbake-layers add-layer $(pwd)/../layers/meta-mender/meta-mender-demo/

```

Apply Mender configuration to build environment:

```auto
cat ../layers/meta-mender-community/templates/local.conf.append >> conf/local.conf
cat ../layers/meta-mender-community/meta-mender-toradex-nxp/templates/local.conf.append >> conf/local.conf
echo "TORADEX_BSP_VERSION = \"toradex-bsp-${TORADEX_BSP_VERSION}\"" >> conf/local.conf

```

**NOTE!** You need to accept the Freescale EULA at ‘../sources/meta-freescale/EULA’. Please read it and in case you accept it, add:

```auto
ACCEPT_FSL_EULA = "1" 

```

in your local.conf.

### Configure Mender server URL (optional)

This section is not required for a successful build but images that are generated by default are only suitable for usage with the Mender client in [Standalone deployments](https://docs.mender.io/architecture/standalone-deployments?target=_blank), due to lack of server configuration.

You can edit the `conf/local.conf` file to provide your Mender server configuration, ensuring the generated images and Mender Artifacts are connecting to the Mender server that you are using. There should already be a commented section in the generated `conf/local.conf` file and you can simply uncomment the relevant configuration options and assign appropriate values to them.

Build for Hosted Mender:

```auto
# To get your tenant token:
# - log in to https://hosted.mender.io
# - click your email at the top right and then "My organization"
# - press the "COPY TO CLIPBOARD"
# - assign content of clipboard to MENDER_TENANT_TOKEN
#
MENDER_SERVER_URL = "https://hosted.mender.io"
MENDER_TENANT_TOKEN = "<copy token here>"

```

### Building the image

You can now proceed with building an image:

```auto
MACHINE=apalis-imx8 bitbake tdx-reference-minimal-image

```

Replace `tdx-reference-minimal-image` with your desired image target.

### Using the build output

After a successful build, the images and build artifacts are:

- `deploy/images/apalis-imx8/Apalis-iMX8_Reference-Minimal-Image.mender`
- `deploy/images/apalis-imx8/Apalis-iMX8_Reference-Minimal-Image.mender_tezi.tar`

The `.mender_tezi.tar` is used to provision the device storage for devices without Mender running already, and is compatible with the [Toradex Easy Installer](https://developer.toradex.com/software/toradex-easy-installer).

On the other hand, if you already have Mender running on your device and want to deploy a rootfs update using this build, you should use the [Mender Artifact](https://docs.mender.io/architecture/mender-artifacts?target=_blank) files, which have `.mender` suffix. You can either deploy this Artifact in managed mode with the Mender server (upload it under Releases in the server UI) or by using the Mender client only in [Standalone deployments](https://docs.mender.io/architecture/standalone-deployments?target=_blank).

#### Flash instructions

Refer to the [Toradex Easy Installer](https://developer.toradex.com/software/toradex-easy-installer) instructions for more details.

* * *

_If this post was useful to you, please press like, or leave a thank you note to the contributor who put valuable time into this and made it available to you. It will be much appreciated!_

---

<div class="post-metadata">

### Author: ![karhin](https://avatars.discourse-cdn.com/v4/letter/k/a88e57/32.png) [@karhin](https://hub.mender.io/u/karhin)
#### Post date: [October 28, 2021, 5:09am UTC](https://hub.mender.io/t/toradex-apalis-i-mx8/4103/2 "2021-10-28T05:09:49Z")

</div>

Hi, my product is using Apalis iMX8 but we defined a new MACHINE for it (instead of using the default “apalis\_imx8”) because we are using a custom-built carrier board instead of the evaluation board. In this case, can I still leverage the board integration codes that you have developed?

Looking at the [local.conf append file](https://github.com/mendersoftware/meta-mender-community/blob/dunfell/meta-mender-toradex-nxp/templates/local.conf.append#L42) in meta-mender-community, those variables for Apalis iMX8 contain a “\_apalis-imx8” suffix, so it seems to me that it only works if my MACHINE is “apalis\_imx8”. Is my understanding accurate?

---

<div class="post-metadata">

### Author: ![drewmoseley](https://yyz2.discourse-cdn.com/flex036/user_avatar/hub.mender.io/drewmoseley/32/47_2.png) [@drewmoseley](https://hub.mender.io/u/drewmoseley)
#### Post date: [October 28, 2021, 1:25pm UTC](https://hub.mender.io/t/toradex-apalis-i-mx8/4103/3 "2021-10-28T13:25:13Z")

</div>

Hi @karhin

With the code currently implemented that is correct. One possibility would be to add a separate override to indicate that your machine is an Apalis iMX8. Something like

```auto
MACHINEOVERRIDES_prepend="apalis-imx8:"

```

may work. But I am curious why you felt the need to use a custom machine for a different carrier board? We normally use the same MACHINE with a different device tree overlay to modify the settings for the carrier board. What features in your setup require a custom MACHINE? Maybe I can suggest an alternative.

Drew

---

<div class="post-metadata">

### Author: ![karhin](https://avatars.discourse-cdn.com/v4/letter/k/a88e57/32.png) [@karhin](https://hub.mender.io/u/karhin)
#### Post date: [October 29, 2021, 4:10am UTC](https://hub.mender.io/t/toradex-apalis-i-mx8/4103/4 "2021-10-29T04:10:19Z")

</div>

Hi @drewmoseley,

Thank you so much for your prompt response.

> But I am curious why you felt the need to use a custom machine for a different carrier board?

Reason is because we are creating our own dtb (instead of using overlay on top of the eval board DT), but the “apalis-imx8” machine conf file was specifying to use the eval board dtb. So we thought we shall define a new custom MACHINE as long as we are creating a new dtb.  
Thinking further, perhaps we shall just create an append file to overwrite the device tree setting (KERNEL\_DEVICETREE) in apalis-imx8 machine [.conf file](https://git.toradex.com/cgit/meta-toradex-nxp.git/tree/conf/machine/apalis-imx8.conf?h=dunfell-5.x.y)?

---

<div class="post-metadata">

### Author: ![drewmoseley](https://yyz2.discourse-cdn.com/flex036/user_avatar/hub.mender.io/drewmoseley/32/47_2.png) [@drewmoseley](https://hub.mender.io/u/drewmoseley)
#### Post date: [October 29, 2021, 12:27pm UTC](https://hub.mender.io/t/toradex-apalis-i-mx8/4103/5 "2021-10-29T12:27:20Z")

</div>

Yeah, I think that is probably the easiest. I guess I misspoke with I said we use overlays for carrier boards; we actually use separate DTBs but the same MACHINE for carrier boards.

Drew

---

<div class="post-metadata">

### Author: ![moh-dev](https://avatars.discourse-cdn.com/v4/letter/m/7993a0/32.png) [@moh-dev](https://hub.mender.io/u/moh-dev)
#### Post date: [August 31, 2022, 4:56pm UTC](https://hub.mender.io/t/toradex-apalis-i-mx8/4103/6 "2022-08-31T16:56:32Z")

</div>

I have a Toradex Colibri IMX8XQXP. Would the process for getting that to work be similar ?

---

<div class="post-metadata">

### Author: ![drewmoseley](https://yyz2.discourse-cdn.com/flex036/user_avatar/hub.mender.io/drewmoseley/32/47_2.png) [@drewmoseley](https://hub.mender.io/u/drewmoseley)
#### Post date: [August 31, 2022, 10:06pm UTC](https://hub.mender.io/t/toradex-apalis-i-mx8/4103/7 "2022-08-31T22:06:21Z")

</div>

Probably so. I don’t believe there is anything unique about the colibri-imx8, just needs someone to do the work.

Drew

---

<div class="post-metadata">

### Author: ![mattes-bru](https://yyz2.discourse-cdn.com/flex036/user_avatar/hub.mender.io/mattes-bru/32/2373_2.png) [@mattes-bru](https://hub.mender.io/u/mattes-bru)
#### Post date: [December 17, 2024, 1:58pm UTC](https://hub.mender.io/t/toradex-apalis-i-mx8/4103/8 "2024-12-17T13:58:42Z")

</div>

@drewmoseley are there any plans to update the mender integration to recent BSP versions for this hardware?

---

<div class="post-metadata">

### Author: ![drewmoseley](https://yyz2.discourse-cdn.com/flex036/user_avatar/hub.mender.io/drewmoseley/32/47_2.png) [@drewmoseley](https://hub.mender.io/u/drewmoseley)
#### Post date: [December 23, 2024, 4:09pm UTC](https://hub.mender.io/t/toradex-apalis-i-mx8/4103/9 "2024-12-23T16:09:27Z")

</div>

Hi @mattes-bru at the moment I don’t have plans or bandwidth to do any additional BSP version ports. I’m working to find someone to take over the maintainership who will have the time to handle it properly. Let me know if that is something you are interested in.

Drew
