Android NXP Guide

From Variscite Wiki
Revision as of 16:09, 10 June 2024 by Natasha (talk | contribs)
DART-MX8M - Android O8.1.0_1.3.0 Developer Guide

Introduction

This page describes how to build and deploy Android Oreo on the DART-MX8M.
It is based on NXP's imx_8.1.0_1.3.0_8m_ANDROID release

Overview

The objective of this document is to guide DART-MX8M Android developers to obtain Android Oreo sources, setting up host environment, compilation, and deployment.

This document contains instructions for:

  • Hardware and software requirements.
  • Setup the hardware.
  • Setup the toolchain.
  • Download & build the sources.
  • Install the binaries on the DART-MX8M SOM and variants.

Supported hardware and features

Feature
Description
SOM support
DART-MX8M
Carrier Board support
VAR-DT8MCustomBoard
CPU

i.MX8M

eMMC
up to 64GB
DDR size support configuration
up to 4GB
SD card
+
Wired Network
10/100/1000 Mbps Ethernet
Wireless Network
Support for LWB5, 802.11 ac/a/b/g/n STA, AP, & Wi-Fi Direct Mode SmartConfig
Bluetooth
4.2 / BLE
SPI
+
I2C
+
USB host
+
USB OTG
Host and Device
Uarts
x4, up to 4 Mbps.
RTC
+
Display HDMI: V2.0a up to 4Kp60
LVDS Dual 1920×1080 24-bit
MIPI-DSI 1920×1080 24-bit
Audio Line IN / HP
Camera 2x MIPI-CSI2
PCIE +


Hardware Requirements

You will need the Variscite DART-MX8M based evaluation kit.

Host (PC) setup requirements

The host development environment for Android is based on Ubuntu, please install one of the following Ubuntu versions:

If you are running Linux in a virtual machine you need at least 16GB of RAM and 32 GB of swap.
The build process requires ~250GB of free storage space. Before starting a build, make sure you have adequate free space available.


Note: Do not use other Ubuntu releases other than the ones recommended above. Variscite provides Docker containers that can be used for a development environment as an alternative to using a virtual machine or a dedicated computer.

To learn more, please see Variscite's Docker Build Environment guide.

Windows with WSL/WSL2 is not supported for Android BSP

Install required packages on host PC

$ sudo apt-get -y install gnupg flex bison gperf build-essential zip gcc-multilib g++-multilib 
$ sudo apt-get -y install libc6-dev-i386 lib32ncurses5-dev libncurses5-dev x11proto-core-dev libx11-dev lib32z-dev libz-dev libssl-dev
$ sudo apt-get -y install ccache libgl1-mesa-dev libxml2-utils xsltproc unzip bc
$ sudo apt-get -y install uuid uuid-dev zlib1g-dev liblz-dev liblzo2-2 liblzo2-dev lzop git curl lib32ncurses5-dev 
$ sudo apt-get -y install u-boot-tools mtd-utils android-tools-fsutils device-tree-compiler gdisk m4 dwarves libgnutls28-dev
$ sudo apt-get -y install libelf-dev cpio lz4
$ sudo apt-get -y install swig libdw-dev ninja-build clang liblz4-tool libncurses5 make tar rsync

For Ubuntu 20.04 and above:
The package android-tools-fsutils is obsolete and has been replaced by android-sdk-libsparse-utils.

$ sudo apt-get -y install android-sdk-libsparse-utils

Configure Git

$ git config --global user.name "Your Name"
$ git config --global user.email "Your Email"

Install the OpenJDK

To install it:

$ sudo apt-get update
$ sudo apt-get install openjdk-8-jdk

If your Ubuntu version is missing the package (which shouldn't happen), add the PPA repository and run the previous commands again:

$ sudo add-apt-repository ppa:openjdk-r/ppa

Update the default Java version by running:

$ sudo update-alternatives --config java
$ sudo update-alternatives --config javac

Note: The build process requires about 500GB of free space.


Check python version

In the next steps, we will download (from Google repositories) the command repo, used to download all the Android source repositories.


Recent versions of command repo, rely on python 3.6, not available in Ubuntu 16.04.

Ubuntu 16.04 LTS users can install it running

$ sudo add-apt-repository ppa:deadsnakes/ppa
$ sudo apt-get update
$ sudo apt-get install python3.6 python2

Obtain source code

Variscite's Linux kernel and U-Boot are available through Github.
Required patches for the Android file system are under: https://variscite-public.nyc3.cdn.digitaloceanspaces.com/DART-MX8M/Software/Android/Android_iMX8M_O810_130/ in Variscite's FTP

Files:

  • imx-o8.1.0_1.3.0_8m.tar.gz - NXP's Android O8.1.0_1.3.0 original BSP patch files.

Get NXP's Android Release Package

$ mkdir ~/var_imx-o8.1.0_1.3.0_8m
$ cd ~/var_imx-o8.1.0_1.3.0_8m
$ curl -o ~/Downloads/imx-o8.1.0_1.3.0_8m.tar.gz https://variscite-public.nyc3.cdn.digitaloceanspaces.com/DART-MX8M/Software/Android/Android_iMX8M_O810_130/imx-o8.1.0_1.3.0_8m.tar.gz
$ tar xvf ~/Downloads/imx-o8.1.0_1.3.0_8m.tar.gz

Download Google Android O8.1.0_r14

Important update:

As of March 31, 2023, all codeaurora.org repositories have been migrated to other platforms and the project has been shut down.
For more information, please visit: https://bye.codeaurora.org/

In this context, errors may occur when downloading the source code running the script, such as:
fatal: unable to look up source.codeaurora.org (port 9418) (No address associated with hostname)

Variscite has updated all relevant software repositories. Please re-download https://variscite-public.nyc3.cdn.digitaloceanspaces.com/DART-MX8M/Software/Android/Android_iMX8M_O810_130/imx-o8.1.0_1.3.0_8m.tar.gz and the full Android source code from Variscite FTP

$ mkdir -p ~/bin
$ curl -o ~/bin/repo https://commondatastorage.googleapis.com/git-repo-downloads/repo
$ chmod a+x ~/bin/repo
$ export PATH=~/bin:$PATH
$ cd ~/var_imx-o8.1.0_1.3.0_8m
$ source imx-o8.1.0_1.3.0_8m/imx_android_setup.sh

Note: Wait for the script to finish running, and it should create a "~/var_imx-o8.1.0_1.3.0_8m/android_build" folder

$ cd ~/var_imx-o8.1.0_1.3.0_8m/android_build; mkdir -p vendor/variscite/

Clone Variscite's U-Boot and Linux kernel sources

$ cd ~/var_imx-o8.1.0_1.3.0_8m/android_build/vendor/variscite/
$ git clone https://github.com/varigit/uboot-imx.git -b imx_v2017.03_4.9.51_imx8m_ga_var01
$ git clone https://github.com/varigit/linux-imx kernel_imx -b o8.1.0_1.3.0_8m-ga_var01

Apply Variscite's i.MX platforms patches

$ cd ~/var_imx-o8.1.0_1.3.0_8m/android_build/device
$ git clone https://github.com/varigit/MX6x-android.git -b o8.1.0_1.3.0_8m-ga-var01 variscite
$ variscite/scripts/install.sh

Build Android Images

Change to Android top level directory.

$ cd ~/var_imx-o8.1.0_1.3.0_8m/android_build
$ source build/envsetup.sh
$ lunch dart_mx8m-eng
 or
$ lunch dart_mx8m-userdebug


Note: userdebug build creates a debuggable version of Android. eng build creates an engineering version of Android. Development mode enable and development tools are available on target.


$ export PATH=/usr/lib/jvm/java-8-openjdk-amd64/bin:$PATH

Switching from eMMC build to SD card build and vice versa

Unlike previous Android BSPs, the boot media is autodetected at boot time.

Build Android

./imx-make.sh -j4 2>&1 | tee build1-1.log

Images created by the Android build

The resulted images are located in out/target/product/dart_mx8m.


Image
Description
u-boot-imx8m-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
system.img Android system image file.
SOM agnostics.
vendor.img Android vendor image file.
SOM agnostics.
boot-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is one of: imx8m-var-dart-emmc-wifi-dcss-lvds - Supports LVDS (via DCSS) / WiFi
imx8m-var-dart-emmc-wifi-dual-display - Supports HDMI (via DCSS) / LVDS (via LCDIF) / WiFi
imx8m-var-dart-emmc-wifi-hdmi-4k - Supports HDMI-4k / WiFi
imx8m-var-dart-emmc-wifi-hdmi - Supports HDMI / WiFi
imx8m-var-dart-emmc-wifi-lcdif-lvds - Supports LVDS (via LCDIF) / WiFi
imx8m-var-dart-sd-emmc-dcss-lvds - Supports LVDS (via DCSS) / SD
imx8m-var-dart-sd-emmc-dual-display - Supports HDMI (via DCSS) / LVDS (via LCDIF) / SD
imx8m-var-dart-sd-emmc-hdmi-4k - Supports HDMI-4k (via DCSS) / SD
imx8m-var-dart-sd-emmc-hdmi - Supports HDMI (via DCSS) / SD
imx8m-var-dart-sd-emmc-lcdif-lvds - Supports LVDS (via LCDIF) / SD


Boot options

Boot options of the Android:
1. Directly from SD card
2. U-Boot boots from on-SOM eMMC

Flash and boot Android from SD card

Create a bootable SD card

Partition and format SD card, and copy all images

$ sudo ./var-mksdcard.sh -f <name> /dev/sdX;sync

Boot From SD card

  • Power-off the board.
  • Insert the SD card into the SD card slot of the carrier board (DVK)
  • Make sure the Boot Mode is set to SD card: see Setting the Boot Mode section
  • Power up the board - it will boot into Linux from the SD card


Flash and boot Android from eMMC

Preparing images

The default system.img and vendor.img format is suitable for flashing using fastboot, and must be modified for flashing using 'dd'.

$ cd out/target/product/dart_mx8m
$ simg2img system.img system_raw.img
$ simg2img vendor.img vendor_raw.img

Flashing Android from Linux shell (when the primary installation android)

An example of flashing eMMC, can be found here.

Follow the following steps instructions above:

1. Preparing a rescue SD card;

2. Flash from command line (use the install_android.sh script)


Further, follow the steps described in paragraph "Flashing Android with USB Fastboot"


Flashing Android with USB Fastboot

Install tools on host

$ sudo apt-get install android-tools-adb android-tools-fastboot

Note: Make sure you built Android for eMMC
Connect the target with host PC at fastboot mode:

  1. Connect a USB OTG cable from the target board OTG port to a your host machine USB HOST port.
  2. Power up the board and hit return/space to stop the boot at U-Boot.
  3. type fastboot 0 in the U-Boot command line.

On the Host PC:

$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8m/boot-<name>.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8m/boot-<name>.img
$ sudo `which fastboot` flash system_a out/target/product/dart_mx8m/system.img
$ sudo `which fastboot` flash system_b out/target/product/dart_mx8m/system.img
$ sudo `which fastboot` flash vendor_a out/target/product/dart_mx8m/vendor.img
$ sudo `which fastboot` flash vendor_b out/target/product/dart_mx8m/vendor.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8m/vbmeta-<name>.img
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8m/vbmeta-<name>.img
$ sudo `which fastboot` reboot

Replace <name> with the actual desired setup name according to the table in the "Images created by the Android build" section.


Update Android firmware

Generate OTA packages

For generating "OTA" packages, use the following commands:

$ cd ~/var_imx-o8.1.0_1.3.0_8m/android_build
tee build1-1.log
Install OTA package to device
  • Extract payload.bin and payload_properties.txt from OTA zip file
  • Push file payload.bin to somewhere on the device (typically /cache folder)
  • Open payload_properties.txt on an editor to copy its content, lets suppose it's like in the NXP manual:
 FILE_HASH=0fSBbXonyTjaAzMpwTBgM9AVtlBeyOigpCCgkoOfHKY=
 FILE_SIZE=379074366
 METADATA_HASH=Icrs3NqoglzyppyCZouWKbo5f08IPokhlUfHDmz77WQ/de8Dgp9zFXt8Fo+Hxccp465uTOvKNsteWU=
 METADATA_SIZE=46866
 
  • Input the following command on the board's console to update:
 su
 update_engine_client --payload=file:///data/ota_package/payload.bin --update --headers="FILE_HASH=0fSBbXonyTjaAzMpwTBgM9AVtlBeyOigpCCgkoOfHKY=
 FILE_SIZE=379074366
 METADATA_HASH=Icrs3NqoglzyppyCZouWKbo5f08IPokhlUfHDmz77WQ/de8Dgp9zFXt8Fo+Hxccp465uTOvKNsteWU=
 METADATA_SIZE=46866"

Make sure that the -- header equals to the exact content of payload_properties.txt without "space" or "return" character.

After issuing the command, nothing seems to happen on the device, but you can monit logcat for operation progress. After a successful update you can reboot into the updated version.

You can check chapter 7 of official NXP "Android User Guide" for further "Over-The-Air (OTA) Update" examples.

Manual operations

Build boot.img

When you perform changes to the kernel, you may build boot.img solely instead of building the whole Android.

$ cd ~/var_imx-o8.1.0_1.3.0_8m/android_build
$ source build/envsetup.sh
$ lunch dart_mx8m-userdebug
$ make bootimage

Toolchain setup for manual build

$ export ARCH=arm64
$ export CROSS_COMPILE=~/var_imx-o8.1.0_1.3.0_8m/android_build/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/bin/aarch64-linux-android-

Unlock device for fastboot

Our build behaves like any other standard Android device.

To use fastboot, you should go through the following steps

  • Settings => System => About Tablet => Build number
  • keep on tapping until you see a prompt that says "You are now a developer!"
  • Settings => System => Advanced => Developer options => OEM unlocking
  • reboot to bootloader
  • type "fastboot 0" in the U-Boot command line
  • run "sudo `which fastboot` oem unlock" from the Host PC
  • wait until the unlock process is complete
  • proceed for flashing






VAR-SOM-MX6

Supported hardware and features

Feature
Description
SOM support
VAR-SOM-MX6 V2
VAR-SOM-SOLO
VAR-SOM-DUAL
DART-MX6
Carrier Board support
VAR-MX6CustomBoard
VAR-SOLOCustomBoard
VAR-DVK-DT6
CPU

i.MX6 Quad Plus
i.MX6 Quad
i.MX6 Dual
i.MX6 Dual lite
i.MX6 Solo

NAND flash size support
128MB and up
eMMC
up to 64GB
DDR size support configuration
Solo:up to 1GB. DualLite, Dual, Quad: up to 4GB
SD card
+
Wired Network
10/100/1000 Mbps Ethernet
Wireless Network
Support for Wilink8, 802.11abgn STA, AP, & Wi-Fi Direct Mode SmartConfig Wilink8 page
Bluetooth
+
SPI
+
I2C
+
Canbus
+
USB host
+
USB OTG
Host and Device
Uarts
x3, up to 3.6 Mbps.
RTC
+
Display HDMI: 720P,1080P
LVDS0 (On board LVDS-to-RGB bridge, 800x480 resolution), LVDS1 external display
Audio Line IN/ Line out and Audio over HDMI
Camera OV5640 camera sensor (VAR-EXT-CB402 camera board can be ordered separately)
PCIE +
SATA +


SD card image file tree

/opt/images/
├── Android
│   ├── SPL-mmc
│   ├── SPL-nand
│   ├── boot-imx6q-var-dart.img
│   ├── boot-som-mx6dl-c.img
│   ├── boot-som-mx6dl-r.img
│   ├── boot-som-mx6q-c.img
│   ├── boot-som-mx6q-r.img
│   ├── boot-som-mx6q-vsc.img
│   ├── boot-som-solo-c.img
│   ├── boot-som-solo-r.img
│   ├── boot-som-solo-vsc.img
│   ├── boot-som-solo-vsc.img
│   ├── recovery-imx6q-var-dart.img
│   ├── recovery-som-mx6dl-c.img
│   ├── recovery-som-mx6dl-r.img
│   ├── recovery-som-mx6q-c.img
│   ├── recovery-som-mx6q-r.img
│   ├── recovery-som-mx6q-vsc.img
│   ├── recovery-som-solo-c.img
│   ├── recovery-som-solo-r.img
│   ├── recovery-som-solo-vsc.img
│   ├── system.img
│   ├── u-boot-var-imx6-mmc.img
│   └── u-boot-var-imx6-nand.img
└── Yocto
    ├── SPL-nand
    ├── SPL-sd
    ├── imx6dl-var-som-cap.dtb
    ├── imx6dl-var-som-res.dtb
    ├── imx6dl-var-som-solo-cap.dtb
    ├── imx6dl-var-som-solo-res.dtb
    ├── imx6dl-var-som-solo-vsc.dtb
    ├── imx6dl-var-som-vsc.dtb
    ├── imx6q-var-dart.dtb
    ├── imx6q-var-som-cap.dtb
    ├── imx6q-var-som-res.dtb
    ├── imx6q-var-som-vsc.dtb
    ├── rootfs.tar.bz2
    ├── rootfs_128kbpeb.ubi
    ├── rootfs_256kbpeb.ubi
    ├── u-boot.img-nand
    ├── u-boot.img-sd
    └── uImage


Flash Recovery SD from GUI

VAR-SOM-MX6 Android Recovery.png

Click on the appropriate icon:

  • Install Android SOLOCustomBoard: Install Android on eMMC, on VAR-SOLOCustomBoard
  • Install Android MX6CB Cap: Install Android with Capacitive touch panel support on eMMC, on VAR-MX6CustomBoard
  • Install Android MX6CB Res: Install Android with Resistive touch panel support on eMMC, on VAR-MX6CustomBoard
  • Install Android DART: Install Android on eMMC, on VAR-DT6CustomBoard


  • Install Yocto SOLOCB NAND: Install Yocto on NAND flash, on VAR-SOLOCustomBoard
  • Install Yocto SOLOCB eMMC: Install Yocto on eMMC, on VAR-SOLOCustomBoard
  • Install Yocto MX6CB Res NAND: Install Yocto with Resistive touch panel support on NAND flash, on VAR-MX6CustomBoard
  • Install Yocto MX6CB Cap NAND: Install Yocto with Capacitive touch panel support on NAND flash, on VAR-MX6CustomBoard
  • Install Yocto MX6CB Res eMMC: Install Yocto with Resistive touch panel support on eMMC, on VAR-MX6CustomBoard
  • Install Yocto MX6CB Cap eMMC: Install Yocto with Capacitive touch panel support on eMMC, on VAR-MX6CustomBoard.
  • Install Yocto DART (eMMC): Install Yocto on eMMC, on VAR-DT6CustomBoard

DART-MX8M

Supported hardware and features

Feature
Description
SOM support
DART-MX8M
Carrier Board support
VAR-DT8MCustomBoard
CPU

i.MX8M

eMMC
up to 64GB
DDR size support configuration
up to 4GB
SD card
+
Wired Network
10/100/1000 Mbps Ethernet
Wireless Network
Support for LWB5, 802.11 ac/a/b/g/n STA, AP, & Wi-Fi Direct Mode SmartConfig
Bluetooth
4.2 / BLE
SPI
+
I2C
+
USB host
+
USB OTG
Host and Device
Uarts
x4, up to 4 Mbps.
RTC
+
Display HDMI: V2.0a up to 4Kp60
LVDS Dual 1920×1080 24-bit
MIPI-DSI 1920×1080 24-bit
Audio Line IN / HP
Camera 2x MIPI-CSI2
PCIE +


SD card image file tree Morty

/opt/images/
├── Android
│   ├── boot-imx8m-var-dart-emmc-wifi-dcss-lvds.img
│   ├── boot-imx8m-var-dart-emmc-wifi-dual-display.img
│   ├── boot-imx8m-var-dart-emmc-wifi-hdmi-4k.img
│   ├── boot-imx8m-var-dart-emmc-wifi-hdmi.img
│   ├── boot-imx8m-var-dart-emmc-wifi-lcdif-lvds.img
│   ├── boot-imx8m-var-dart-sd-emmc-dcss-lvds.img
│   ├── boot-imx8m-var-dart-sd-emmc-dual-display.img
│   ├── boot-imx8m-var-dart-sd-emmc-hdmi-4k.img
│   ├── boot-imx8m-var-dart-sd-emmc-hdmi.img
│   ├── boot-imx8m-var-dart-sd-emmc-lcdif-lvds.img
│   ├── system_raw.img
│   ├── u-boot-imx8m-var-dart.imx
│   ├── vbmeta-imx8m-var-dart-emmc-wifi-dcss-lvds.img
│   ├── vbmeta-imx8m-var-dart-emmc-wifi-dual-display.img
│   ├── vbmeta-imx8m-var-dart-emmc-wifi-hdmi-4k.img
│   ├── vbmeta-imx8m-var-dart-emmc-wifi-hdmi.img
│   ├── vbmeta-imx8m-var-dart-emmc-wifi-lcdif-lvds.img
│   ├── vbmeta-imx8m-var-dart-sd-emmc-dcss-lvds.img
│   ├── vbmeta-imx8m-var-dart-sd-emmc-dual-display.img
│   ├── vbmeta-imx8m-var-dart-sd-emmc-hdmi-4k.img
│   ├── vbmeta-imx8m-var-dart-sd-emmc-hdmi.img
│   ├── vbmeta-imx8m-var-dart-sd-emmc-lcdif-lvds.img
│   └── vendor_raw.img
└── Yocto
    ├── rootfs.tar.bz2
    └── imx-boot-sd.bin


Android 8 images

Image
Description
u-boot-imx8m-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
system.img Android system image file.
SOM agnostics.
vendor.img Android vendor image file.
SOM agnostics.
boot-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is one of: imx8m-var-dart-emmc-wifi-dcss-lvds - Supports LVDS (via DCSS) / WiFi
imx8m-var-dart-emmc-wifi-dual-display - Supports HDMI (via DCSS) / LVDS (via LCDIF) / WiFi
imx8m-var-dart-emmc-wifi-hdmi-4k - Supports HDMI-4k / WiFi
imx8m-var-dart-emmc-wifi-hdmi - Supports HDMI / WiFi
imx8m-var-dart-emmc-wifi-lcdif-lvds - Supports LVDS (via LCDIF) / WiFi
imx8m-var-dart-sd-emmc-dcss-lvds - Supports LVDS (via DCSS) / SD
imx8m-var-dart-sd-emmc-dual-display - Supports HDMI (via DCSS) / LVDS (via LCDIF) / SD
imx8m-var-dart-sd-emmc-hdmi-4k - Supports HDMI-4k (via DCSS) / SD
imx8m-var-dart-sd-emmc-hdmi - Supports HDMI (via DCSS) / SD
imx8m-var-dart-sd-emmc-lcdif-lvds - Supports LVDS (via LCDIF) / SD


Android 8 fastboot

$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8m/boot-<name>.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8m/boot-<name>.img
$ sudo `which fastboot` flash system_a out/target/product/dart_mx8m/system.img
$ sudo `which fastboot` flash system_b out/target/product/dart_mx8m/system.img
$ sudo `which fastboot` flash vendor_a out/target/product/dart_mx8m/vendor.img
$ sudo `which fastboot` flash vendor_b out/target/product/dart_mx8m/vendor.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8m/vbmeta-<name>.img
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8m/vbmeta-<name>.img
$ sudo `which fastboot` reboot


SD card image file tree Sumo

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mq-var-dart-emmc-wifi-lvds.img
│   ├── dtbo-imx8mq-var-dart-emmc-wifi-dual-display.img
│   ├── dtbo-imx8mq-var-dart-emmc-wifi-hdmi.img
│   ├── dtbo-imx8mq-var-dart-sd-emmc-lvds.img
│   ├── dtbo-imx8mq-var-dart-sd-emmc-dual-display.img
│   ├── dtbo-imx8mq-var-dart-sd-emmc-hdmi.img
│   ├── system.img
│   ├── u-boot-imx8mq-var-dart.imx
│   ├── vbmeta-imx8mq-var-dart-emmc-wifi-lvds.img
│   ├── vbmeta-imx8mq-var-dart-emmc-wifi-dual-display.img
│   ├── vbmeta-imx8mq-var-dart-emmc-wifi-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-sd-emmc-lvds.img
│   ├── vbmeta-imx8mq-var-dart-sd-emmc-dual-display.img
│   ├── vbmeta-imx8mq-var-dart-sd-emmc-hdmi.img
│   └── vendor.img
└── Yocto
    ├── rootfs.tar.bz2
    └── imx-boot-sd.bin


Android 9 images

Image
Description
u-boot-imx8mq-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
system.img Android system image file.
SOM agnostics.
vendor.img Android vendor image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is one of: imx8mq-var-dart-emmc-wifi-lvds - Supports LVDS (via DCSS) / WiFi
imx8mq-var-dart-emmc-wifi-dual-display - Supports HDMI (via DCSS) / LVDS (via LCDIF) / WiFi
imx8mq-var-dart-emmc-wifi-hdmi - Supports HDMI / WiFi
imx8mq-var-dart-sd-emmc-lvds - Supports LVDS (via DCSS) / SD
imx8mq-var-dart-sd-emmc-dual-display - Supports HDMI (via DCSS) / LVDS (via LCDIF) / SD
imx8mq-var-dart-sd-emmc-hdmi - Supports HDMI (via DCSS) / SD


SD card image file tree Sumo v2

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mq-var-dart-wifi-lvds-cb12.img
│   ├── dtbo-imx8mq-var-dart-wifi-lvds-hdmi-cb12.img
│   ├── dtbo-imx8mq-var-dart-wifi-hdmi-cb12.img
│   ├── dtbo-imx8mq-var-dart-sd-lvds-cb12.img
│   ├── dtbo-imx8mq-var-dart-sd-lvds-hdmi-cb12.img
│   ├── dtbo-imx8mq-var-dart-sd-hdmi-cb12.img
│   ├── dtbo-imx8mq-var-dart-wifi-lvds.img
│   ├── dtbo-imx8mq-var-dart-wifi-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-wifi-lvds-dp.img
│   ├── dtbo-imx8mq-var-dart-wifi-hdmi.img
│   ├── dtbo-imx8mq-var-dart-wifi-dp.img
│   ├── dtbo-imx8mq-var-dart-sd-lvds.img
│   ├── dtbo-imx8mq-var-dart-sd-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-sd-lvds-dp.img
│   ├── dtbo-imx8mq-var-dart-sd-hdmi.img
│   ├── dtbo-imx8mq-var-dart-sd-dp.img
│   ├── system.img
│   ├── u-boot-imx8mq-var-dart.imx
│   ├── vbmeta-imx8mq-var-dart-wifi-lvds-cb12.img
│   ├── vbmeta-imx8mq-var-dart-wifi-lvds-hdmi-cb12.img
│   ├── vbmeta-imx8mq-var-dart-wifi-hdmi-cb12.img
│   ├── vbmeta-imx8mq-var-dart-sd-lvds-cb12.img
│   ├── vbmeta-imx8mq-var-dart-sd-lvds-hdmi-cb12.img
│   ├── vbmeta-imx8mq-var-dart-sd-hdmi-cb12.img
│   ├── vbmeta-imx8mq-var-dart-wifi-lvds.img
│   ├── vbmeta-imx8mq-var-dart-wifi-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-wifi-lvds-dp.img
│   ├── vbmeta-imx8mq-var-dart-wifi-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-wifi-dp.img
│   ├── vbmeta-imx8mq-var-dart-sd-lvds.img
│   ├── vbmeta-imx8mq-var-dart-sd-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-sd-lvds-dp.img
│   ├── vbmeta-imx8mq-var-dart-sd-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-sd-dp.img
│   └── vendor.img
└── Yocto
    ├── rootfs.tar.bz2
    └── imx-boot-sd.bin


SD card image file tree Warrior

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mq-var-dart-sd-dp.img
│   ├── dtbo-imx8mq-var-dart-sd-hdmi-cb12.img
│   ├── dtbo-imx8mq-var-dart-sd-hdmi.img
│   ├── dtbo-imx8mq-var-dart-sd-lvds-cb12.img
│   ├── dtbo-imx8mq-var-dart-sd-lvds-dp.img
│   ├── dtbo-imx8mq-var-dart-sd-lvds-hdmi-cb12.img
│   ├── dtbo-imx8mq-var-dart-sd-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-sd-lvds.img
│   ├── dtbo-imx8mq-var-dart-wifi-dp.img
│   ├── dtbo-imx8mq-var-dart-wifi-hdmi-cb12.img
│   ├── dtbo-imx8mq-var-dart-wifi-hdmi.img
│   ├── dtbo-imx8mq-var-dart-wifi-lvds-cb12.img
│   ├── dtbo-imx8mq-var-dart-wifi-lvds-dp.img
│   ├── dtbo-imx8mq-var-dart-wifi-lvds-hdmi-cb12.img
│   ├── dtbo-imx8mq-var-dart-wifi-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-wifi-lvds.img
│   ├── product.img
│   ├── system.img
│   ├── u-boot-imx8mq-var-dart-dp.imx
│   ├── u-boot-imx8mq-var-dart.imx
│   ├── u-boot-imx8mq-var-dart-uuu-dp.imx
│   ├── u-boot-imx8mq-var-dart-uuu.imx
│   ├── vbmeta-imx8mq-var-dart-sd-dp.img
│   ├── vbmeta-imx8mq-var-dart-sd-hdmi-cb12.img
│   ├── vbmeta-imx8mq-var-dart-sd-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-sd-lvds-cb12.img
│   ├── vbmeta-imx8mq-var-dart-sd-lvds-dp.img
│   ├── vbmeta-imx8mq-var-dart-sd-lvds-hdmi-cb12.img
│   ├── vbmeta-imx8mq-var-dart-sd-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-sd-lvds.img
│   ├── vbmeta-imx8mq-var-dart-wifi-dp.img
│   ├── vbmeta-imx8mq-var-dart-wifi-hdmi-cb12.img
│   ├── vbmeta-imx8mq-var-dart-wifi-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-wifi-lvds-cb12.img
│   ├── vbmeta-imx8mq-var-dart-wifi-lvds-dp.img
│   ├── vbmeta-imx8mq-var-dart-wifi-lvds-hdmi-cb12.img
│   ├── vbmeta-imx8mq-var-dart-wifi-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-wifi-lvds.img
│   └── vendor.img
└── Yocto
    ├── imx-boot-imx8mq-var-dart-sd.bin-flash_dp_evk
    ├── imx-boot-imx8mq-var-dart-sd.bin-flash_evk
    ├── imx-boot-imx8mq-var-dart-sd.bin-flash_evk_no_hdmi
    ├── imx-boot-sd.bin -> imx-boot-imx8mq-var-dart-sd.bin-flash_evk
    └── rootfs.tar.gz


SD card image file tree ZEUS With Super Image

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mq-var-dart-sd-dp.img
│   ├── dtbo-imx8mq-var-dart-sd-hdmi-cb12.img
│   ├── dtbo-imx8mq-var-dart-sd-hdmi.img
│   ├── dtbo-imx8mq-var-dart-sd-lvds-cb12.img
│   ├── dtbo-imx8mq-var-dart-sd-lvds-dp.img
│   ├── dtbo-imx8mq-var-dart-sd-lvds-hdmi-cb12.img
│   ├── dtbo-imx8mq-var-dart-sd-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-sd-lvds.img
│   ├── dtbo-imx8mq-var-dart-wifi-dp.img
│   ├── dtbo-imx8mq-var-dart-wifi-hdmi-cb12.img
│   ├── dtbo-imx8mq-var-dart-wifi-hdmi.img
│   ├── dtbo-imx8mq-var-dart-wifi-lvds-cb12.img
│   ├── dtbo-imx8mq-var-dart-wifi-lvds-dp.img
│   ├── dtbo-imx8mq-var-dart-wifi-lvds-hdmi-cb12.img
│   ├── dtbo-imx8mq-var-dart-wifi-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-wifi-lvds.img
│   ├── super.img
│   ├── u-boot-imx8mq-var-dart-dp.imx
│   ├── u-boot-imx8mq-var-dart.imx
│   ├── u-boot-imx8mq-var-dart-uuu-dp.imx
│   ├── u-boot-imx8mq-var-dart-uuu.imx
│   ├── vbmeta-imx8mq-var-dart-sd-dp.img
│   ├── vbmeta-imx8mq-var-dart-sd-hdmi-cb12.img
│   ├── vbmeta-imx8mq-var-dart-sd-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-sd-lvds-cb12.img
│   ├── vbmeta-imx8mq-var-dart-sd-lvds-dp.img
│   ├── vbmeta-imx8mq-var-dart-sd-lvds-hdmi-cb12.img
│   ├── vbmeta-imx8mq-var-dart-sd-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-sd-lvds.img
│   ├── vbmeta-imx8mq-var-dart-wifi-dp.img
│   ├── vbmeta-imx8mq-var-dart-wifi-hdmi-cb12.img
│   ├── vbmeta-imx8mq-var-dart-wifi-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-wifi-lvds-cb12.img
│   ├── vbmeta-imx8mq-var-dart-wifi-lvds-dp.img
│   ├── vbmeta-imx8mq-var-dart-wifi-lvds-hdmi-cb12.img
│   ├── vbmeta-imx8mq-var-dart-wifi-lvds-hdmi.img
│   └── vbmeta-imx8mq-var-dart-wifi-lvds.img
└── Yocto
   ├── imx-boot-imx8mq-var-dart-sd.bin-flash_dp_evk
   ├── imx-boot-imx8mq-var-dart-sd.bin-flash_evk
   ├── imx-boot-imx8mq-var-dart-sd.bin-flash_evk_no_hdmi
   ├── imx-boot-sd.bin -> imx-boot-imx8mq-var-dart-sd.bin-flash_evk
   └── rootfs.tar.gz


SD card image file tree DUNFELL V1.2

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-sd-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-sd-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-sd-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-sd-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-sd-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-wifi-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-wifi-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-wifi-lvds.img
│   ├── super.img
│   ├── u-boot-imx8mq-var-dart-dp.imx
│   ├── u-boot-imx8mq-var-dart.imx
│   ├── u-boot-imx8mq-var-dart-uuu-dp.imx
│   ├── u-boot-imx8mq-var-dart-uuu.imx
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-sd-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-sd-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-sd-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-sd-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-sd-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-wifi-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-wifi-lvds-hdmi.img
│   └── vbmeta-imx8mq-var-dart-dt8mcustomboard-wifi-lvds.img
└── Yocto
   ├── imx-boot-imx8mq-var-dart-sd.bin-flash_dp_evk
   ├── imx-boot-imx8mq-var-dart-sd.bin-flash_evk
   ├── imx-boot-imx8mq-var-dart-sd.bin-flash_evk_no_hdmi
   ├── imx-boot-sd.bin -> imx-boot-imx8mq-var-dart-sd.bin-flash_evk
   └── rootfs.tar.gz


SD card image file tree DUNFELL V1.3

/opt/images/
├── Android
│   ├── boot.img
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote.bin
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-lvds-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-sd-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-sd-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-m4-sd-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-m4-sd-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-m4-sd-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-m4-wifi-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-m4-wifi-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-m4-wifi-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-sd-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-sd-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-sd-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-wifi-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-wifi-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-wifi-lvds.img
│   ├── rpmsg_lite_pingpong_rtos_linux_remote.elf
│   ├── super.img
│   ├── u-boot-imx8mq-var-dart-dp.imx
│   ├── u-boot-imx8mq-var-dart.imx
│   ├── u-boot-imx8mq-var-dart-uuu-dp.imx
│   ├── u-boot-imx8mq-var-dart-uuu.imx
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-lvds-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-sd-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-sd-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-m4-sd-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-m4-sd-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-m4-sd-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-m4-wifi-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-m4-wifi-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-m4-wifi-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-sd-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-sd-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-sd-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-wifi-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-wifi-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-wifi-lvds.img
│   └── vendor_boot.img
└── Yocto
   ├── imx-boot-imx8mq-var-dart-sd.bin-flash_dp_evk
   ├── imx-boot-imx8mq-var-dart-sd.bin-flash_evk
   ├── imx-boot-imx8mq-var-dart-sd.bin-flash_evk_no_hdmi
   ├── imx-boot-sd.bin -> imx-boot-imx8mq-var-dart-sd.bin-flash_evk
   └── rootfs.tar.gz


SD card image file tree Android 13 V1.0

/opt/images/
├── Android
│   ├── boot.img
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote.bin
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-lvds-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-sd-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-sd-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-dp.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-m4-sd-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-m4-sd-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-m4-sd-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-m4-wifi-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-m4-wifi-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-m4-wifi-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-sd-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-sd-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-sd-lvds.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-wifi-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-wifi-lvds-hdmi.img
│   ├── dtbo-imx8mq-var-dart-dt8mcustomboard-wifi-lvds.img
│   ├── rpmsg_lite_pingpong_rtos_linux_remote.elf
│   ├── init_boot.img
│   ├── super.img
│   ├── u-boot-imx8mq-var-dart-dp.imx
│   ├── u-boot-imx8mq-var-dart.imx
│   ├── u-boot-imx8mq-var-dart-uuu-dp.imx
│   ├── u-boot-imx8mq-var-dart-uuu.imx
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-lvds-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-sd-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-sd-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-sd-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-dp.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-m4-sd-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-m4-sd-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-m4-sd-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-m4-wifi-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-m4-wifi-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-m4-wifi-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-sd-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-sd-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-sd-lvds.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-wifi-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-wifi-lvds-hdmi.img
│   ├── vbmeta-imx8mq-var-dart-dt8mcustomboard-wifi-lvds.img
│   └── vendor_boot.img
└── Yocto
   ├── imx-boot-imx8mq-var-dart-sd.bin-flash_dp_evk
   ├── imx-boot-imx8mq-var-dart-sd.bin-flash_evk
   ├── imx-boot-imx8mq-var-dart-sd.bin-flash_evk_no_hdmi
   ├── imx-boot-sd.bin -> imx-boot-imx8mq-var-dart-sd.bin-flash_evk
   └── rootfs.tar.gz


Android 9 v2 images

Image
Description
u-boot-imx8mq-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
system.img Android system image file.
SOM agnostics.
vendor.img Android vendor image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is one of: imx8mq-var-dart-wifi-lvds-cb12 - Supports LVDS (via DCSS) / WiFi for boards rev <= 1.2
imx8mq-var-dart-wifi-lvds-hdmi-cb12 - Supports HDMI (via DCSS) / LVDS (via LCDIF) / WiFi for boards rev <= 1.2
imx8mq-var-dart-wifi-hdmi-cb12 - Supports HDMI / WiFi for boards rev <= 1.2
imx8mq-var-dart-sd-lvds-cb12 - Supports LVDS (via DCSS) / SD for boards rev <= 1.2
imx8mq-var-dart-sd-lvds-hdmi-cb12 - Supports HDMI (via DCSS) / LVDS (via LCDIF) / SD for boards rev <= 1.2
imx8mq-var-dart-sd-hdmi-cb12 - Supports HDMI (via DCSS) / SD for boards rev <= 1.2
imx8mq-var-dart-wifi-lvds - Supports LVDS (via DCSS) / WiFi for boards rev > 1.2
imx8mq-var-dart-wifi-lvds-hdmi - Supports HDMI (via DCSS) / LVDS (via LCDIF) / WiFi for boards rev > 1.2
imx8mq-var-dart-wifi-lvds-dp - Supports DP (via DCSS) / LVDS (via LCDIF) / WiFi for boards rev > 1.2
imx8mq-var-dart-wifi-hdmi - Supports HDMI / WiFi for boards rev > 1.2
imx8mq-var-dart-wifi-dp - Supports DP / WiFi for boards rev > 1.2
imx8mq-var-dart-sd-lvds - Supports LVDS (via DCSS) / SD for boards rev > 1.2
imx8mq-var-dart-sd-lvds-hdmi - Supports HDMI (via DCSS) / LVDS (via LCDIF) / SD for boards rev > 1.2
imx8mq-var-dart-sd-lvds-dp - Supports DP (via DCSS) / LVDS (via LCDIF) / SD for boards rev > 1.2
imx8mq-var-dart-sd-hdmi - Supports HDMI (via DCSS) / SD for boards rev > 1.2
imx8mq-var-dart-sd-dp - Supports DP (via DCSS) / SD for boards rev > 1.2


Android 10 images

Image
Description
u-boot-imx8mq-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
system.img Android system image file.
SOM agnostics.
vendor.img Android vendor image file.
SOM agnostics.
product.img Android product image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is one of: imx8mq-var-dart-wifi-lvds-cb12 - Supports LVDS (via DCSS) / WiFi for boards rev <= 1.2
imx8mq-var-dart-wifi-lvds-hdmi-cb12 - Supports HDMI (via DCSS) / LVDS (via LCDIF) / WiFi for boards rev <= 1.2
imx8mq-var-dart-wifi-hdmi-cb12 - Supports HDMI / WiFi for boards rev <= 1.2
imx8mq-var-dart-sd-lvds-cb12 - Supports LVDS (via DCSS) / SD for boards rev <= 1.2
imx8mq-var-dart-sd-lvds-hdmi-cb12 - Supports HDMI (via DCSS) / LVDS (via LCDIF) / SD for boards rev <= 1.2
imx8mq-var-dart-sd-hdmi-cb12 - Supports HDMI (via DCSS) / SD for boards rev <= 1.2
imx8mq-var-dart-wifi-lvds - Supports LVDS (via DCSS) / WiFi for boards rev > 1.2
imx8mq-var-dart-wifi-lvds-hdmi - Supports HDMI (via DCSS) / LVDS (via LCDIF) / WiFi for boards rev > 1.2
imx8mq-var-dart-wifi-lvds-dp - Supports DP (via DCSS) / LVDS (via LCDIF) / WiFi for boards rev > 1.2
imx8mq-var-dart-wifi-hdmi - Supports HDMI / WiFi for boards rev > 1.2
imx8mq-var-dart-wifi-dp - Supports DP / WiFi for boards rev > 1.2
imx8mq-var-dart-sd-lvds - Supports LVDS (via DCSS) / SD for boards rev > 1.2
imx8mq-var-dart-sd-lvds-hdmi - Supports HDMI (via DCSS) / LVDS (via LCDIF) / SD for boards rev > 1.2
imx8mq-var-dart-sd-lvds-dp - Supports DP (via DCSS) / LVDS (via LCDIF) / SD for boards rev > 1.2
imx8mq-var-dart-sd-hdmi - Supports HDMI (via DCSS) / SD for boards rev > 1.2
imx8mq-var-dart-sd-dp - Supports DP (via DCSS) / SD for boards rev > 1.2


Android 10 V2.3.0 images

Image
Description
u-boot-imx8mq-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
super.img Android system image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is one of: imx8mq-var-dart-wifi-lvds-cb12 - Supports LVDS (via DCSS) / WiFi for boards rev <= 1.2
imx8mq-var-dart-wifi-lvds-hdmi-cb12 - Supports HDMI (via DCSS) / LVDS (via LCDIF) / WiFi for boards rev <= 1.2
imx8mq-var-dart-wifi-hdmi-cb12 - Supports HDMI / WiFi for boards rev <= 1.2
imx8mq-var-dart-sd-lvds-cb12 - Supports LVDS (via DCSS) / SD for boards rev <= 1.2
imx8mq-var-dart-sd-lvds-hdmi-cb12 - Supports HDMI (via DCSS) / LVDS (via LCDIF) / SD for boards rev <= 1.2
imx8mq-var-dart-sd-hdmi-cb12 - Supports HDMI (via DCSS) / SD for boards rev <= 1.2
imx8mq-var-dart-wifi-lvds - Supports LVDS (via DCSS) / WiFi for boards rev > 1.2
imx8mq-var-dart-wifi-lvds-hdmi - Supports HDMI (via DCSS) / LVDS (via LCDIF) / WiFi for boards rev > 1.2
imx8mq-var-dart-wifi-lvds-dp - Supports DP (via DCSS) / LVDS (via LCDIF) / WiFi for boards rev > 1.2
imx8mq-var-dart-wifi-hdmi - Supports HDMI / WiFi for boards rev > 1.2
imx8mq-var-dart-wifi-dp - Supports DP / WiFi for boards rev > 1.2
imx8mq-var-dart-sd-lvds - Supports LVDS (via DCSS) / SD for boards rev > 1.2
imx8mq-var-dart-sd-lvds-hdmi - Supports HDMI (via DCSS) / LVDS (via LCDIF) / SD for boards rev > 1.2
imx8mq-var-dart-sd-lvds-dp - Supports DP (via DCSS) / LVDS (via LCDIF) / SD for boards rev > 1.2
imx8mq-var-dart-sd-hdmi - Supports HDMI (via DCSS) / SD for boards rev > 1.2
imx8mq-var-dart-sd-dp - Supports DP (via DCSS) / SD for boards rev > 1.2


Android 10 V2.3.0 V1.2 images

Image
Description
u-boot-imx8mq-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
super.img Android system image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is one of: imx8mq-var-dart-dt8mcustomboard-sd-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x SD+HDMI
imx8mq-var-dart-dt8mcustomboard-sd-lvds -Supports Variscite DART-MX8M on DT8MCustomBoard 2.x SD+LVDS
imx8mq-var-dart-dt8mcustomboard-sd-lvds-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x SD+LVDS+HDMI
imx8mq-var-dart-dt8mcustomboard-wifi-lvds-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x WIFI+LVDS+HDMI
imx8mq-var-dart-dt8mcustomboard-wifi-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x WIFI+HDMI
imx8mq-var-dart-dt8mcustomboard-wifi-lvds - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x WIFI+LVDS
imx8mq-var-dart-dt8mcustomboard-legacy-sd-dp - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x SD+DP
imx8mq-var-dart-dt8mcustomboard-legacy-sd-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x SD+HDMI
imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-dp - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x SD+LVDS+DP
imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x SD+LVDS+HDMI
imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x SD+LVDS
imx8mq-var-dart-dt8mcustomboard-legacy-wifi-dp - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x WIFI+DP
imx8mq-var-dart-dt8mcustomboard-legacy-wifi-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x WIFI+HDMI
imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-dp - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x WIFI+LVDS
imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x WIFI+LVDS+HDMI
imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x WIFI+LVDS


Android 11 V1.0.0 V1.0 images

Image
Description
u-boot-imx8mq-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
vendor_boot.img A composite image, which includes another part of ramdisk and boot parameters. SOM agnostics.
super.img Android system image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is one of: imx8mq-var-dart-dt8mcustomboard-sd-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x SD+HDMI
imx8mq-var-dart-dt8mcustomboard-sd-lvds -Supports Variscite DART-MX8M on DT8MCustomBoard 2.x SD+LVDS
imx8mq-var-dart-dt8mcustomboard-sd-lvds-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x SD+LVDS+HDMI
imx8mq-var-dart-dt8mcustomboard-wifi-lvds-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x WIFI+LVDS+HDMI
imx8mq-var-dart-dt8mcustomboard-wifi-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x WIFI+HDMI
imx8mq-var-dart-dt8mcustomboard-wifi-lvds - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x WIFI+LVDS
imx8mq-var-dart-dt8mcustomboard-legacy-sd-dp - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x SD+DP
imx8mq-var-dart-dt8mcustomboard-legacy-sd-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x SD+HDMI
imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-dp - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x SD+LVDS+DP
imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x SD+LVDS+HDMI
imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x SD+LVDS
imx8mq-var-dart-dt8mcustomboard-legacy-wifi-dp - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x WIFI+DP
imx8mq-var-dart-dt8mcustomboard-legacy-wifi-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x WIFI+HDMI
imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-dp - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x WIFI+LVDS
imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x WIFI+LVDS+HDMI
imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x WIFI+LVDS
imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-dp - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x M4+WIFI+DP
imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x M4+WIFI+HDMI
imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds-dp - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x M4+WIFI+LVDS
imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x M4+WIFI+LVDS+HDMI
imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x M4+WIFI+LVDS
imx8mq-var-dart-dt8mcustomboard-m4-wifi-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x M4+WIFI+HDMI
imx8mq-var-dart-dt8mcustomboard-m4-wifi-lvds-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x M4+WIFI+LVDS+HDMI
imx8mq-var-dart-dt8mcustomboard-m4-wifi-lvds - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x M4+WIFI+LVDS


Android 13 V1.0.0 V1.0 images

Image
Description
u-boot-imx8mq-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
vendor_boot.img A composite image, which includes another part of ramdisk and boot parameters. SOM agnostics.
init_boot.img A composite image, which includes init process.
SOM agnostics.
super.img Android system image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is one of: imx8mq-var-dart-dt8mcustomboard-sd-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x SD+HDMI
imx8mq-var-dart-dt8mcustomboard-sd-lvds -Supports Variscite DART-MX8M on DT8MCustomBoard 2.x SD+LVDS
imx8mq-var-dart-dt8mcustomboard-sd-lvds-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x SD+LVDS+HDMI
imx8mq-var-dart-dt8mcustomboard-wifi-lvds-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x WIFI+LVDS+HDMI
imx8mq-var-dart-dt8mcustomboard-wifi-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x WIFI+HDMI
imx8mq-var-dart-dt8mcustomboard-wifi-lvds - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x WIFI+LVDS
imx8mq-var-dart-dt8mcustomboard-legacy-sd-dp - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x SD+DP
imx8mq-var-dart-dt8mcustomboard-legacy-sd-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x SD+HDMI
imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-dp - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x SD+LVDS+DP
imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x SD+LVDS+HDMI
imx8mq-var-dart-dt8mcustomboard-legacy-sd-lvds - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x SD+LVDS
imx8mq-var-dart-dt8mcustomboard-legacy-wifi-dp - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x WIFI+DP
imx8mq-var-dart-dt8mcustomboard-legacy-wifi-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x WIFI+HDMI
imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-dp - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x WIFI+LVDS
imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x WIFI+LVDS+HDMI
imx8mq-var-dart-dt8mcustomboard-legacy-wifi-lvds - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x WIFI+LVDS
imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-dp - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x M4+WIFI+DP
imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x M4+WIFI+HDMI
imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds-dp - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x M4+WIFI+LVDS
imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x M4+WIFI+LVDS+HDMI
imx8mq-var-dart-dt8mcustomboard-legacy-m4-wifi-lvds - Supports Variscite DART-MX8M on DT8MCustomBoard 1.x M4+WIFI+LVDS
imx8mq-var-dart-dt8mcustomboard-m4-wifi-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x M4+WIFI+HDMI
imx8mq-var-dart-dt8mcustomboard-m4-wifi-lvds-hdmi - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x M4+WIFI+LVDS+HDMI
imx8mq-var-dart-dt8mcustomboard-m4-wifi-lvds - Supports Variscite DART-MX8M on DT8MCustomBoard 2.x M4+WIFI+LVDS


Android 9 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mq/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mq/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mq/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mq/boot.img
$ sudo `which fastboot` flash system_a out/target/product/dart_mx8mq/system.img
$ sudo `which fastboot` flash system_b out/target/product/dart_mx8mq/system.img
$ sudo `which fastboot` flash vendor_a out/target/product/dart_mx8mq/vendor.img
$ sudo `which fastboot` flash vendor_b out/target/product/dart_mx8mq/vendor.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mq/vbmeta-<name>.img
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mq/vbmeta-<name>.img
$ sudo `which fastboot` reboot


Android 10 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mq/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mq/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mq/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mq/boot.img
$ sudo `which fastboot` flash system_a out/target/product/dart_mx8mq/system.img
$ sudo `which fastboot` flash system_b out/target/product/dart_mx8mq/system.img
$ sudo `which fastboot` flash vendor_a out/target/product/dart_mx8mq/vendor.img
$ sudo `which fastboot` flash vendor_b out/target/product/dart_mx8mq/vendor.img
$ sudo `which fastboot` flash product_a out/target/product/dart_mx8mq/product.img
$ sudo `which fastboot` flash product_b out/target/product/dart_mx8mq/product.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mq/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mq/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` reboot


Android 10 V2.3.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mq/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mq/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mq/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mq/boot.img
$ sudo `which fastboot` flash super out/target/product/dart_mx8mq/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mq/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mq/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` reboot


Android 10 V2.3.0 V1.0 UUU

Copy Variscite's uuu scripts to the Android build output folder:

$ cp ~/var_imx-o8.1.0_1.3.0_8m/android_build/device/variscite/scripts/uuu_scripts/* out/target/product/dart_mx8mq/

And run uuu to program the eMMC:

$ sudo ./uuu <uuu script>.lst

where <uuu script> should be one of the following:

emmc_burn_android_imx8mq-var-dart-dt8mcustomboard_sd_hdmi.lst -  Supports Variscite DART_MX8M on DT8MCustomBoard 2.x SD+HDMI
emmc_burn_android_imx8mq_var_dart_dt8mcustomboard_sd_lvds.lst - Supports Variscite DART_MX8M on DT8MCustomBoard 2.x SD+LVDS
emmc_burn_android_imx8mq_var_dart_dt8mcustomboard_sd_lvds_hdmi.lst -  Supports Variscite DART_MX8M on DT8MCustomBoard 2.x SD+LVDS+HDMI
emmc_burn_android_imx8mq_var_dart_dt8mcustomboard_legacy_sd_dp.lst -  Supports Variscite DART_MX8M on DT8MCustomBoard 1.x SD+DP
emmc_burn_android_imx8mq_var_dart_dt8mcustomboard_legacy_sd_hdmi.lst -  Supports Variscite DART_MX8M on DT8MCustomBoard 1.x SD+HDMI
emmc_burn_android_imx8mq_var_dart_dt8mcustomboard_legacy_sd_lvds_dp.lst -  Supports Variscite DART_MX8M on DT8MCustomBoard 1.x SD+LVDS+DP
emmc_burn_android_imx8mq_var_dart_dt8mcustomboard_legacy_sd_lvds_hdmi.lst -  Supports Variscite DART_MX8M on DT8MCustomBoard 1.x SD+LVDS+HDMI
emmc_burn_android_imx8mq_var_dart_dt8mcustomboard_legacy_sd_lvds.lst -  Supports Variscite DART_MX8M on DT8MCustomBoard 1.x SD+LVDS
emmc_burn_android_imx8mq_var_dart_dt8mcustomboard_wifi_lvds_hdmi.lst -  Supports Variscite DART_MX8M on DT8MCustomBoard 2.x WIFI+LVDS+HDMI
emmc_burn_android_imx8mq_var_dart_dt8mcustomboard_wifi_hdmi.lst -  Supports Variscite DART_MX8M on DT8MCustomBoard 2.x WIFI+HDMI
emmc_burn_android_imx8mq_var_dart_dt8mcustomboard_wifi_lvds.lst -  Supports Variscite DART_MX8M on DT8MCustomBoard 2.x WIFI+LVDS
emmc_burn_android_imx8mq_var_dart_dt8mcustomboard_legacy_wifi_dp.lst -  Supports Variscite DART_MX8M on DT8MCustomBoard 1.x WIFI+DP
emmc_burn_android_imx8mq_var_dart_dt8mcustomboard_legacy_wifi_hdmi.lst -  Supports Variscite DART_MX8M on DT8MCustomBoard 1.x WIFI+HDMI
emmc_burn_android_imx8mq_var_dart_dt8mcustomboard_legacy_wifi_lvds_dp.lst -  Supports Variscite DART_MX8M on DT8MCustomBoard 1.x WIFI+LVDS
emmc_burn_android_imx8mq_var_dart_dt8mcustomboard_legacy_wifi_lvds_hdmi.lst -  Supports Variscite DART_MX8M on DT8MCustomBoard 1.x WIFI+LVDS+HDMI
emmc_burn_android_imx8mq_var_dart_dt8mcustomboard_legacy_wifi_lvds.lst -  Supports Variscite DART_MX8M on DT8MCustomBoard 1.x WIFI+LVDS


Android 11 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mq/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mq/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mq/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mq/boot.img
$ sudo `which fastboot` flash vendor_boot_a out/target/product/dart_mx8mq/vendor_boot.img
$ sudo `which fastboot` flash vendor_boot_b out/target/product/dart_mx8mq/vendor_boot.img
$ sudo `which fastboot` flash super out/target/product/dart_mx8mq/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mm/vbmeta-<name>.img
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mm/vbmeta-<name>.img
$ sudo `which fastboot` reboot


Android 13 V1.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mq/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mq/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mq/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mq/boot.img
$ sudo `which fastboot` flash init_boot_a out/target/product/dart_mx8mq/init_boot.img
$ sudo `which fastboot` flash init_boot_b out/target/product/dart_mx8mq/init_boot.img
$ sudo `which fastboot` flash vendor_boot_a out/target/product/dart_mx8mq/vendor_boot.img
$ sudo `which fastboot` flash vendor_boot_b out/target/product/dart_mx8mq/vendor_boot.img
$ sudo `which fastboot` flash super out/target/product/dart_mx8mq/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mq/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mq/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` reboot


Flash Recovery SD from GUI

Currently no GUI is available for flashing, use command line.


DART-MX8M-MINI

Supported hardware and features

Feature
Description
SOM support
DART-MX8M-MINI VAR-SOM-MX8M-MINI
Carrier Board support
VAR-DT8MCustomBoard Symphony Board (VAR-SOM-MX8-Mini only)
CPU

i.MX8M Mini

eMMC
up to 64GB
LPDDR4 size support configuration
up to 4GB
SD card
+
Wired Network
10/100/1000 Mbps Ethernet
Wireless Network
Support for LWB5, 802.11 ac/a/b/g/n STA, AP, & Wi-Fi Direct Mode SmartConfig
Bluetooth
4.2 / BLE
SPI
+
I2C
+
USB host
+
USB OTG
Host and Device
Uarts
x4, up to 4 Mbps.
RTC
+
Display LVDS Dual 1920×1080 24-bit
MIPI-DSI 1920×1080 24-bit
Audio Line IN / HP
Camera 1x MIPI-CSI2
PCIE +


SD card image file tree Sumo

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mm-var-dart.img
│   ├── dtbo-imx8mm-var-som.img
│   ├── dtbo-imx8mm-var-som-v10.img
│   ├── system.img
│   ├── u-boot-imx8mm-var-dart.imx
│   ├── vbmeta-imx8mm-var-dart.img
│   ├── vbmeta-imx8mm-var-som.img
│   ├── vbmeta-imx8mm-var-som-v10.img
│   └── vendor.img
└── Yocto
    ├── rootfs.tar.bz2
    └── imx-boot-sd.bin


SD card image file tree Warrior

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mm-var-dart.img
│   ├── dtbo-imx8mm-var-som.img
│   ├── dtbo-imx8mm-var-som-v10.img
│   ├── system.img
│   ├── u-boot-imx8mm-var-dart.imx
│   ├── vbmeta-imx8mm-var-dart.img
│   ├── vbmeta-imx8mm-var-som.img
│   ├── vbmeta-imx8mm-var-som-v10.img
│   ├── product.img
│   └── vendor.img
└── Yocto
    ├── rootfs.tar.bz2
    └── imx-boot-sd.bin


SD card image file tree DUNFELL V1.5

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard-legacy.img
│   ├── dtbo-imx8mm-var-som.img
│   ├── dtbo-imx8mm-var-som-legacy.img
│   ├── product.img
│   ├── system.img
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboardimg
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboard-legacy.img
│   ├── vbmeta-imx8mm-var-som.img
│   ├── vbmeta-imx8mm-var-som-legacy.img
│   └── vendor.img
└── Yocto
    ├── rootfs.tar.gz
    └── imx-boot-sd.bin


SD card image file tree DUNFELL V1.6

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard-legacy.img
│   ├── dtbo-imx8mm-var-som.img
│   ├── dtbo-imx8mm-var-som-legacy.img
│   ├── super.img
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboardimg
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboard-legacy.img
│   ├── vbmeta-imx8mm-var-som.img
│   ├── vbmeta-imx8mm-var-som-legacy.img
└── Yocto
    ├── rootfs.tar.gz
    └── imx-boot-sd.bin


SD card image file tree DUNFELL V6.8

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard-legacy.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard-legacy-m4.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard-m4.img
│   ├── dtbo-imx8mm-var-som-symphony.img
│   ├── dtbo-imx8mm-var-som-symphony-legacy.img
│   ├── dtbo-imx8mm-var-som-symphony-legacy-m4.img
│   ├── dtbo-imx8mm-var-som-symphony-m4.img
│   ├── hello_world.elf
│   ├── rpmsg_lite_pingpong_rtos_linux_remote.bin
│   ├── rpmsg_lite_pingpong_rtos_linux_remote.elf
│   ├── super.img
│   ├── u-boot-imx8mm-var-dart.imx
│   ├── u-boot-imx8mm-var-dart-uuu.imx
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboard.img
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboard-legacy.img
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboard-legacy-m4.img
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboard-m4.img
│   ├── vbmeta-imx8mm-var-som-symphony.img
│   ├── vbmeta-imx8mm-var-som-symphony-legacy.img
│   ├── vbmeta-imx8mm-var-som-symphony-legacy-m4.img
│   ├── vbmeta-imx8mm-var-som-symphony-m4.img
│   └── vendor_boot.img
└── Yocto
    ├── rootfs.tar.gz
    └── imx-boot-sd.bin


SD card image file tree HARDKNOTT V1.0

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard-legacy.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard-legacy-m4.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard-m4.img
│   ├── dtbo-imx8mm-var-som-symphony.img
│   ├── dtbo-imx8mm-var-som-symphony-legacy.img
│   ├── dtbo-imx8mm-var-som-symphony-legacy-m4.img
│   ├── dtbo-imx8mm-var-som-symphony-m4.img
│   ├── rpmsg_lite_pingpong_rtos_linux_remote.bin
│   ├── rpmsg_lite_pingpong_rtos_linux_remote.elf
│   ├── super.img
│   ├── u-boot-imx8mm-var-dart.imx
│   ├── u-boot-imx8mm-var-dart-uuu.imx
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboard.img
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboard-legacy.img
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboard-legacy-m4.img
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboard-m4.img
│   ├── vbmeta-imx8mm-var-som-symphony.img
│   ├── vbmeta-imx8mm-var-som-symphony-legacy.img
│   ├── vbmeta-imx8mm-var-som-symphony-legacy-m4.img
│   ├── vbmeta-imx8mm-var-som-symphony-m4.img
│   └── vendor_boot.img
└── Yocto
    ├── rootfs.tar.gz
    └── imx-boot-sd.bin


SD card image file tree KIRKSTONE - Android 13 V1.0

/opt/images/
├── Android
│   ├── boot.img
│   ├── init_boot.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard-legacy.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard-legacy-m4.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard-m4.img
│   ├── dtbo-imx8mm-var-som-symphony.img
│   ├── dtbo-imx8mm-var-som-symphony-legacy.img
│   ├── dtbo-imx8mm-var-som-symphony-legacy-m4.img
│   ├── dtbo-imx8mm-var-som-symphony-m4.img
│   ├── rpmsg_lite_pingpong_rtos_linux_remote.bin
│   ├── rpmsg_lite_pingpong_rtos_linux_remote.elf
│   ├── super.img
│   ├── u-boot-imx8mm-var-dart.imx
│   ├── u-boot-imx8mm-var-dart-uuu.imx
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboard.img
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboard-legacy.img
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboard-legacy-m4.img
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboard-m4.img
│   ├── vbmeta-imx8mm-var-som-symphony.img
│   ├── vbmeta-imx8mm-var-som-symphony-m4.img
│   └── vendor_boot.img
└── Yocto
    ├── rootfs.tar.gz
    └── imx-boot-sd.bin


SD card image file tree Mickledore - Android 14

/opt/images/
├── Android
│   ├── boot.img
│   ├── bootloader-imx8mm-var-dart-dual.img
│   ├── cm_hello_world.bin
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote.bin
│   ├── cm_rpmsg_lite_str_echo_rtos_imxcm4.bin
│   ├── dtbo-imx8mm-var-dart-1.x-dt8mcustomboard-m4.img
│   ├── dtbo-imx8mm-var-dart-1.x-dt8mcustomboard.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard-m4.img
│   ├── dtbo-imx8mm-var-dart-dt8mcustomboard.img
│   ├── dtbo-imx8mm-var-dart-wbe-dt8mcustomboard-m4.img
│   ├── dtbo-imx8mm-var-dart-wbe-dt8mcustomboard.img
│   ├── dtbo-imx8mm-var-som-symphony-m4.img
│   ├── dtbo-imx8mm-var-som-symphony.img
│   ├── init_boot.img
│   ├── spl-imx8mm-var-dart-dual.bin
│   ├── super.img
│   ├── vbmeta-imx8mm-var-dart-1.x-dt8mcustomboard-m4.img
│   ├── vbmeta-imx8mm-var-dart-1.x-dt8mcustomboard.img
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboard-m4.img
│   ├── vbmeta-imx8mm-var-dart-dt8mcustomboard.img
│   ├── vbmeta-imx8mm-var-dart-wbe-dt8mcustomboard-m4.img
│   ├── vbmeta-imx8mm-var-dart-wbe-dt8mcustomboard.img
│   ├── vbmeta-imx8mm-var-som-symphony-m4.img
│   ├── vbmeta-imx8mm-var-som-symphony.img
│   └── vendor_boot.img
└── Yocto
    ├── imx-boot-sd.bin
    └── rootfs.tar.zst


Android 9 images

Image
Description
u-boot-imx8mm-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
system.img Android system image file.
SOM agnostics.
vendor.img Android vendor image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mm-var-dart - Supports LVDS / SD / WiFi
imx8mm-var-som - Supports LVDS / SD / WiFi


Android 10 images

Image
Description
u-boot-imx8mm-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
system.img Android system image file.
SOM agnostics.
vendor.img Android vendor image file.
SOM agnostics.
product.img Android product image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mm-var-dart - Supports LVDS / SD / WiFi
imx8mm-var-som - Supports LVDS / SD / WiFi
imx8mm-var-som-v10 - Supports LVDS / SD / WiFi


Android 10 V1.4 images

Image
Description
u-boot-imx8mm-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
system.img Android system image file.
SOM agnostics.
vendor.img Android vendor image file.
SOM agnostics.
product.img Android product image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mm-var-dart - Supports LVDS / SD / WiFi
imx8mm-var-som - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI on a Symphony-Board V1.4A and above)
imx8mm-var-som-legacy - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI on a Symphony-Board V1.4 and below)


Android 10 V1.5 images

Image
Description
u-boot-imx8mm-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
system.img Android system image file.
SOM agnostics.
vendor.img Android vendor image file.
SOM agnostics.
product.img Android product image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mm-var-dart-dt8mcustomboard - Supports LVDS / SD / WiFi (DART-MX8M-MINI on DT8MCustomBoard 2.x)
imx8mm-var-dart-dt8mcustomboard-legacy - Supports LVDS / SD / WiFi (DART-MX8M-MINI on DT8MCustomBoard 1.x)
imx8mm-var-som - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI on a Symphony-Board V1.4A and above)
imx8mm-var-som-legacy - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI on a Symphony-Board V1.4 and below)


Android 10 2.6.0 images

Image
Description
u-boot-imx8mm-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
super.img Android super image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mm-var-dart-dt8mcustomboard - Supports LVDS / SD / WiFi (DART-MX8M-MINI on DT8MCustomBoard 2.x)
imx8mm-var-dart-dt8mcustomboard-legacy - Supports LVDS / SD / WiFi (DART-MX8M-MINI on DT8MCustomBoard 1.x)
imx8mm-var-som - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI on a Symphony-Board V1.4A and above)
imx8mm-var-som-legacy - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI on a Symphony-Board V1.4 and below)


Android 11 V1.0 images

Image
Description
u-boot-imx8mm-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
vendor_boot.img A composite image, which includes another part of ramdisk and boot parameters.
SOM agnostics.
super.img Android super image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mm-var-dart-dt8mcustomboard - Supports LVDS / SD / WiFi (DART-MX8M-MINI on DT8MCustomBoard 2.x)
imx8mm-var-dart-dt8mcustomboard-legacy - Supports LVDS / SD / WiFi (DART-MX8M-MINI on DT8MCustomBoard 1.x)
imx8mm-var-som-symphony - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI on a Symphony-Board V1.4A and above)
imx8mm-var-som-symphony-legacy - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI on a Symphony-Board V1.4 and below)
imx8mm-var-dart-dt8mcustomboard-legacy-m4 - Supports LVDS / SD / WiFi (DART-MX8M-MINI-M4 on DT8MCustomBoard 1.x)
imx8mm-var-dart-dt8mcustomboard-m4 - Supports LVDS / SD / WiFi (DART-MX8M-MINI-M4 on DT8MCustomBoard 2.x)
imx8mm-var-som-symphony-legacy-m4 - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI-M4 on a Symphony-Board V1.4 and below)
imx8mm-var-som-symphony-m4 - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI-M4 on a Symphony-Board V1.4A and above)


Android 12 V1.0 images

Image
Description
u-boot-imx8mm-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
vendor_boot.img A composite image, which includes another part of ramdisk and boot parameters.
SOM agnostics.
super.img Android super image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mm-var-dart-dt8mcustomboard - Supports LVDS / SD / WiFi (DART-MX8M-MINI on DT8MCustomBoard 2.x)
imx8mm-var-dart-dt8mcustomboard-legacy - Supports LVDS / SD / WiFi (DART-MX8M-MINI on DT8MCustomBoard 1.x)
imx8mm-var-som-symphony - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI on a Symphony-Board V1.4A and above)
imx8mm-var-som-symphony-legacy - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI on a Symphony-Board V1.4 and below)
imx8mm-var-dart-dt8mcustomboard-legacy-m4 - Supports LVDS / SD / WiFi (DART-MX8M-MINI-M4 on DT8MCustomBoard 1.x)
imx8mm-var-dart-dt8mcustomboard-m4 - Supports LVDS / SD / WiFi (DART-MX8M-MINI-M4 on DT8MCustomBoard 2.x)
imx8mm-var-som-symphony-legacy-m4 - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI-M4 on a Symphony-Board V1.4 and below)
imx8mm-var-som-symphony-m4 - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI-M4 on a Symphony-Board V1.4A and above)


Android 13 V1.0 images

Image
Description
u-boot-imx8mm-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
vendor_boot.img A composite image, which includes another part of ramdisk and boot parameters.
SOM agnostics.
init_boot.img A composite image, which includes init process.
SOM agnostics.
super.img Android super image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mm-var-dart-dt8mcustomboard - Supports LVDS / SD / WiFi (DART-MX8M-MINI on DT8MCustomBoard 2.x)
imx8mm-var-dart-dt8mcustomboard-legacy - Supports LVDS / SD / WiFi (DART-MX8M-MINI on DT8MCustomBoard 1.x)
imx8mm-var-som-symphony - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI on a Symphony-Board)


Android 14 V 1.0 images

Image
Description
spl-imx8mm-var-dart-dual.bin U-Boot SPL without Trusty OS for eMMC/SD card boot.
SOM agnostics.
bootloader-imx8mm-var-dart-dual.img An image containing U-Boot proper and ATF without Trusty OS for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
vendor_boot.img A composite image, which includes vendor RAMDisk and boot parameters.
SOM agnostics.
init_boot.img A composite image, which includes init process.
SOM agnostics.
super.img Android super image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mm-var-dart-1.x-dt8mcustomboard - Supports DART-MX8M-MINI on DT8MCustomBoard 1.x with M4 support
imx8mm-var-dart-1.x-dt8mcustomboard-m4 - Supports DART-MX8M-MINI on DT8MCustomBoard 1.x
imx8mm-var-dart-dt8mcustomboard-m4 - Supports DART-MX8M-MINI on DT8MCustomBoard 2.x and above, with M4 support
imx8mm-var-dart-dt8mcustomboard - Supports DART-MX8M-MINI on DT8MCustomBoard 2.x and above
imx8mm-var-dart-wbe-dt8mcustomboard-m4 - Supports DART-MX8M-MINI on DT8MCustomBoard 2.x and above, with WBE and M4 support
imx8mm-var-dart-wbe-dt8mcustomboard - Supports DART-MX8M-MINI on DT8MCustomBoard 2.x and above, with WBE support
imx8mm-var-som-symphony-m4 - Supports VAR-SOM-MX8M-MINI on Symphony-Board with M4 support
imx8mm-var-som-symphony - Supports VAR-SOM-MX8M-MINI on Symphony-Board


Android 9 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mm/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mm/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mm/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mm/boot.img
$ sudo `which fastboot` flash system_a out/target/product/dart_mx8mm/system.img
$ sudo `which fastboot` flash system_b out/target/product/dart_mx8mm/system.img
$ sudo `which fastboot` flash vendor_a out/target/product/dart_mx8mm/vendor.img
$ sudo `which fastboot` flash vendor_b out/target/product/dart_mx8mm/vendor.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mm/vbmeta-<name>.img
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mm/vbmeta-<name>.img
$ sudo `which fastboot` reboot


Android 10 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mm/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mm/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mm/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mm/boot.img
$ sudo `which fastboot` flash system_a out/target/product/dart_mx8mm/system.img
$ sudo `which fastboot` flash system_b out/target/product/dart_mx8mm/system.img
$ sudo `which fastboot` flash vendor_a out/target/product/dart_mx8mm/vendor.img
$ sudo `which fastboot` flash vendor_b out/target/product/dart_mx8mm/vendor.img
$ sudo `which fastboot` flash product_a out/target/product/dart_mx8mm/product.img
$ sudo `which fastboot` flash product_b out/target/product/dart_mx8mm/product.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mm/vbmeta-<name>.img
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mm/vbmeta-<name>.img
$ sudo `which fastboot` reboot


Android 10 2.6.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mm/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mm/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mm/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mm/boot.img
$ sudo `which fastboot` flash super out/target/product/dart_mx8mm/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mm/vbmeta-<name>.img
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mm/vbmeta-<name>.img
$ sudo `which fastboot` reboot


Android 11 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mm/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mm/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mm/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mm/boot.img
$ sudo `which fastboot` flash vendor_boot_a out/target/product/dart_mx8mm/vendor_boot.img
$ sudo `which fastboot` flash vendor_boot_b out/target/product/dart_mx8mm/vendor_boot.img
$ sudo `which fastboot` flash super out/target/product/dart_mx8mm/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mm/vbmeta-<name>.img
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mm/vbmeta-<name>.img
$ sudo `which fastboot` reboot


Android 13 V1.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mm/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mm/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mm/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mm/boot.img
$ sudo `which fastboot` flash init_boot_a out/target/product/dart_mx8mm/init_boot.img
$ sudo `which fastboot` flash init_boot_b out/target/product/dart_mx8mm/init_boot.img
$ sudo `which fastboot` flash vendor_boot_a out/target/product/dart_mx8mm/vendor_boot.img
$ sudo `which fastboot` flash vendor_boot_b out/target/product/dart_mx8mm/vendor_boot.img
$ sudo `which fastboot` flash super out/target/product/dart_mx8mm/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mm/vbmeta-<name>.img
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mm/vbmeta-<name>.img
$ sudo `which fastboot` reboot


Android 14 V1.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mm/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mm/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mm/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mm/boot.img
$ sudo `which fastboot` flash init_boot_a out/target/product/dart_mx8mm/init_boot.img
$ sudo `which fastboot` flash init_boot_b out/target/product/dart_mx8mm/init_boot.img
$ sudo `which fastboot` flash vendor_boot_a out/target/product/dart_mx8mm/vendor_boot.img
$ sudo `which fastboot` flash vendor_boot_b out/target/product/dart_mx8mm/vendor_boot.img
$ sudo `which fastboot` flash super out/target/product/dart_mx8mm/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mm/vbmeta-<name>.img
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mm/vbmeta-<name>.img
$ sudo `which fastboot` reboot


Android 11 UUU

Copy Variscite's uuu scripts to the Android build output folder:

$ cp ~/var_imx-o8.1.0_1.3.0_8m/android_build/device/variscite/scripts/uuu_scripts/* out/target/product/dart_mx8mm/

And run uuu to program the eMMC:

$ sudo ./uuu <uuu script>.lst

where <uuu script> should be one of the following:

emmc_burn_android_imx8mm_var_dart_dt8mcustomboard.lst - Supports LVDS / SD / WiFi (DART-MX8M-MINI on DT8MCustomBoard 2.x)
emmc_burn_android_imx8mm_var_dart_dt8mcustomboard_legacy.lst - Supports LVDS / SD / WiFi (DART-MX8M-MINI on DT8MCustomBoard 1.x)
emmc_burn_android_imx8mm_var_som_symphony.lst - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI on a Symphony-Board V1.4A and above)
emmc_burn_android_imx8mm_var_som_symphony_legacy.lst - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI on a Symphony-Board V1.4 and below)


Android 13 V1.0 UUU

Copy Variscite's uuu scripts to the Android build output folder:

$ cp ~/var_imx-o8.1.0_1.3.0_8m/android_build/device/variscite/scripts/uuu_scripts/* out/target/product/dart_mx8mm/

And run uuu to program the eMMC:

$ sudo ./uuu <uuu script>.lst

where <uuu script> should be one of the following:

emmc_burn_android_imx8mm_var_dart_dt8mcustomboard.lst - Supports LVDS / SD / WiFi (DART-MX8M-MINI on DT8MCustomBoard 2.x)
emmc_burn_android_imx8mm_var_dart_dt8mcustomboard_legacy.lst - Supports LVDS / SD / WiFi (DART-MX8M-MINI on DT8MCustomBoard 1.x)
emmc_burn_android_imx8mm_var_som_symphony.lst - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI on a Symphony-Board)


Android 14 V1.0 UUU

Copy Variscite's uuu scripts to the Android build output folder:

$ cp ~/var_imx-o8.1.0_1.3.0_8m/android_build/device/variscite/scripts/uuu_scripts/* out/target/product/dart_mx8mm/

And run uuu to program the eMMC:

$ sudo ./uuu <uuu script>.lst

where <uuu script> should be one of the following:

emmc_burn_android_imx8mm_var_dart_1.x_dt8mcustomboard.lst - Supports LVDS / SD / WiFi (DART-MX8M-MINI on DT8MCustomBoard 1.x)
emmc_burn_android_imx8mm_var_dart_dt8mcustomboard.lst - Supports LVDS / SD / WiFi (DART-MX8M-MINI on DT8MCustomBoard 2.x)
emmc_burn_android_imx8mm_var_dart_wbe_dt8mcustomboard.lst - Supports LVDS / SD / WiFi / WBE (DART-MX8M-MINI on a DT8MCustomBoard 2.x)
emmc_burn_android_imx8mm_var_som_symphony.lst - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-MINI on a Symphony-Board)


VAR-SOM-MX8X

Supported hardware and features

Feature
Description
SOM support
VAR-SOM-MX8X
Carrier Board support
Symphony Board
CPU

i.MX8X

eMMC
up to 64GB
LPDDR4 size support configuration
up to 4GB
SD card
+
Wired Network
10/100/1000 Mbps Ethernet
Wireless Network
Support for LWB5, 802.11 ac/a/b/g/n STA, AP, & Wi-Fi Direct Mode SmartConfig
Bluetooth
4.2 / BLE
SPI
+
I2C
+
USB host
+
USB OTG
Host and Device
Uarts
x4, up to 4 Mbps.
RTC
+
Display LVDS Dual 1920×1080 24-bit
MIPI-DSI 1920×1080 24-bit
Parallel LCD up to 720p60 24-bit
Audio Line IN / HP
Camera 1x MIPI-CSI2
PCIE +


SD card image file tree Sumo

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8qx-var-som-sd.img
│   ├── dtbo-imx8qx-var-som-wifi.img
│   ├── system.img
│   ├── u-boot-imx8qxp.imx
│   ├── vbmeta-imx8qx-var-som-sd.img
│   ├── vbmeta-imx8qx-var-som-wifi.img
│   └── vendor.img
└── Yocto
    ├── rootfs.tar.bz2
    └── imx-boot-sd.bin


SD card image file tree Dunfell

/opt/images/
├── Android
│   ├── boot.img
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote.bin
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote.elf
│   ├── dtbo-imx8qxp-var-som-symphony-sd.img
│   ├── dtbo-imx8qxp-var-som-symphony-sd-m4.img
│   ├── dtbo-imx8qxp-var-som-symphony-wifi.img
│   ├── dtbo-imx8qxp-var-som-symphony-wifi-m4.img
│   ├── super.img
│   ├── u-boot-imx8qxp-var-som.imx
│   ├── u-boot-imx8qxp-var-som-uuu.imx
│   ├── vbmeta-imx8qxp-var-som-symphony-sd.img
│   ├── vbmeta-imx8qxp-var-som-symphony-sd-m4.img
│   ├── vbmeta-imx8qxp-var-som-symphony-wifi.img
│   ├── vbmeta-imx8qxp-var-som-symphony-wifi-m4.img
│   └── vendor_boot.img
└── Yocto
   ├── imx-boot-sd.bin
   └── rootfs.tar.gz


Android 9 images

Image
Description
u-boot-imx8qxp.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
system.img Android system image file.
SOM agnostics.
vendor.img Android vendor image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
where <name> can be: imx8qx-var-som-sd - Supports SD
imx8qx-var-som-wifi - Supports WiFi


Android 9 V2.3.4 images

Image
Description
u-boot-imx8qxp-var-som.imx

u-boot-imx8qxpb0-var-som.imx

U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
system.img Android system image file.
SOM agnostics.
vendor.img Android vendor image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
where <name> can be: imx8qx-var-som-sd OR imx8qxpb0-var-som-sd - Supports SD
imx8qx-var-som-wifi - Supports WiFi


Android 10 V2.5.0 images

Image
Description
u-boot-imx8qxp-var-som.imx
u-boot-imx8qxpb0-var-som.imx
U-Boot for eMMC/SD card boot.
boot.img Android kernel image file.
SOM agnostics.
super.img Android system image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8qx-var-som-sd - Supports LVDS / SD
imx8qx-var-som-wifi - Supports LVDS / WiFi


Android 11 V1.0.0 images

Image
Description
u-boot-imx8qxp-var-som.imx
u-boot-imx8qxpb0-var-som.imx
U-Boot for eMMC/SD card boot.
boot.img Android kernel image file.
SOM agnostics.
vendor_boot.img A composite image, which includes another part of ramdisk and boot parameters.
SOM agnostics.
super.img Android system image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8qxp-var-som-sd - Supports LVDS / SD
imx8qxp-var-som-wifi - Supports LVDS / WiFi
imx8qxp-var-som-sd-m4 - Supports M4 LVDS / SD
imx8qxp-var-som-wifi-m4 - Supports M4 LVDS / WiFi


Android 13 V1.0.0 images

Image
Description
u-boot-imx8qxp-var-som.imx
u-boot-imx8qxpb0-var-som.imx
U-Boot for eMMC/SD card boot.
boot.img Android kernel image file.
SOM agnostics.
vendor_boot.img A composite image, which includes vendor part of ramdisk and ko modules.
SOM agnostics.
init_boot.img A composite image, which includes init process.
SOM agnostics.
super.img Android system image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8qxp-var-som-sd - Supports LVDS / SD
imx8qxp-var-som-wifi - Supports LVDS / WiFi
imx8qxp-var-som-sd-m4 - Supports M4 LVDS / SD
imx8qxp-var-som-wifi-m4 - Supports M4 LVDS / WiFi


Android 9 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/som_mx8q/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/som_mx8q/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/som_mx8q/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/som_mx8q/boot.img
$ sudo `which fastboot` flash system_a out/target/product/som_mx8q/system.img
$ sudo `which fastboot` flash system_b out/target/product/som_mx8q/system.img
$ sudo `which fastboot` flash vendor_a out/target/product/som_mx8q/vendor.img
$ sudo `which fastboot` flash vendor_b out/target/product/som_mx8q/vendor.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/som_mx8q/vbmeta-<name>.img
$ sudo `which fastboot` flash vbmeta_b out/target/product/som_mx8q/vbmeta-<name>.img
$ sudo `which fastboot` reboot


Android 10 V2.5.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/som_mx8q/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/som_mx8q/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/som_mx8q/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/som_mx8q/boot.img
$ sudo `which fastboot` flash super out/target/product/som_mx8q/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/som_mx8q/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash vbmeta_b out/target/product/som_mx8q/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` reboot


Android 13.0.0_1.2.0 V1.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/som_mx8q/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/som_mx8q/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/som_mx8q/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/som_mx8q/boot.img
$ sudo `which fastboot` flash init_boot_a out/target/product/som_mx8q/init_boot.img
$ sudo `which fastboot` flash init_boot_b out/target/product/som_mx8q/init_boot.img
$ sudo `which fastboot` flash vendor_boot_a out/target/product/som_mx8q/vendor_boot.img
$ sudo `which fastboot` flash vendor_boot_b out/target/product/som_mx8q/vendor_boot.img
$ sudo `which fastboot` flash super out/target/product/som_mx8q/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/som_mx8q/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash vbmeta_b out/target/product/som_mx8q/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` reboot


Android 10 V2.5.0 UUU

Copy Variscite's uuu scripts to the Android build output folder:

$ cp ~/var_imx-o8.1.0_1.3.0_8m/android_build/device/variscite/scripts/uuu_scripts/* out/target/product/som_mx8q/

And run uuu to program the eMMC:

$ sudo ./uuu <uuu script>.lst

where <uuu script> should be one of the following:

emmc_burn_android_var_som_mx8x_b0.lst - VAR-SOM-MX8X with B0 Supports LVDS / WiFi
emmc_burn_android_var_som_mx8x_c0.lst - VAR-SOM-MX8X with C0 Supports LVDS / WiFi


Android 11 V1.0.0 V1.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/som_mx8q/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/som_mx8q/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/som_mx8q/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/som_mx8q/boot.img
$ sudo `which fastboot` flash vendor_boot_a out/target/product/som_mx8q/vendor_boot.img
$ sudo `which fastboot` flash vendor_boot_b out/target/product/som_mx8q/vendor_boot.img
$ sudo `which fastboot` flash super out/target/product/som_mx8q/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/som_mx8q/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash vbmeta_b out/target/product/som_mx8q/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` reboot


Android 11 V1.0.0 UUU

Copy Variscite's uuu scripts to the Android build output folder:

$ cp ~/var_imx-o8.1.0_1.3.0_8m/android_build/device/variscite/scripts/uuu_scripts/* out/target/product/som_mx8q/

And run uuu to program the eMMC:

$ sudo ./uuu <uuu script>.lst

where <uuu script> should be one of the following:

emmc_burn_android_var_som_mx8x_b0.lst - VAR-SOM-MX8X with B0 Supports LVDS / WiFi
emmc_burn_android_var_som_mx8x_c0.lst - VAR-SOM-MX8X with C0 Supports LVDS / WiFi


VAR-SOM-MX8

Supported hardware and features

Feature
Description
SOM support
VAR-SOM-MX8 SPEAR-MX8
Carrier Board support
Symphony Board (VAR-SOM-MX8 only) VAR-SP8CustomBoard (SPEAR-MX8 only)
CPU

i.MX8

eMMC
up to 64GB
LPDDR4 size support configuration
up to 8GB
SD card
+
Wired Network
10/100/1000 Mbps Ethernet
Wireless Network
Support for LWB5, 802.11 ac/a/b/g/n STA, AP, & Wi-Fi Direct Mode SmartConfig
Bluetooth
4.2 / BLE
SPI
+
I2C
+
USB host
+
USB OTG
Host and Device
Uarts
x4, up to 4 Mbps.
RTC
+
Display LVDS Dual 1920×1080 24-bit
MIPI-DSI 1920×1080 24-bit
HDMI V2.0a up to 4Kp60
eDP1.4/DP1.3 up to 4Kp60
Audio Line IN / HP
Camera 2x MIPI-CSI2
PCIE +


SD card image file tree Sumo

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8qm-var-som-dp.img
│   ├── dtbo-imx8qm-var-som-hdmi.img
│   ├── dtbo-imx8qm-var-som-lvsd.img
│   ├── dtbo-imx8qm-var-spear-dp.img
│   ├── dtbo-imx8qm-var-spear-hdmi.img
│   ├── dtbo-imx8qm-var-spear-lvsd.img
│   ├── system.img
│   ├── u-boot-imx8qm.imx
│   ├── vbmeta-imx8qm-var-som-dp.img
│   ├── vbmeta-imx8qm-var-som-hdmi.img
│   ├── vbmeta-imx8qm-var-som-lvsd.img
│   ├── vbmeta-imx8qm-var-spear-dp.img
│   ├── vbmeta-imx8qm-var-spear-hdmi.img
│   ├── vbmeta-imx8qm-var-spear-lvsd.img
│   └── vendor.img
└── Yocto
    ├── rootfs.tar.bz2
    └── imx-boot-sd.bin


SD card image file tree Dunfell

/opt/images/
├── Android
│   ├── boot.img
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote_m40.bin
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote_m40.elf
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote_m41.bin
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote_m41.elf
│   ├── dpfw.bin
│   ├── dtbo-imx8qm-var-som-dp.img
│   ├── dtbo-imx8qm-var-som-dp-m4.img
│   ├── dtbo-imx8qm-var-som-hdmi.img
│   ├── dtbo-imx8qm-var-som-hdmi-m4.img
│   ├── dtbo-imx8qm-var-som-lvds.img
│   ├── dtbo-imx8qm-var-som-lvds-m4.img
│   ├── dtbo-imx8qm-var-spear-dp.img
│   ├── dtbo-imx8qm-var-spear-dp-m4.img
│   ├── dtbo-imx8qm-var-spear-hdmi.img
│   ├── dtbo-imx8qm-var-spear-hdmi-m4.img
│   ├── dtbo-imx8qm-var-spear-lvds.img
│   ├── dtbo-imx8qm-var-spear-lvds-m4.img
│   ├── hdmitxfw.bin
│   ├── super.img
│   ├── u-boot-imx8qm-var-som.imx
│   ├── u-boot-imx8qm-var-som-uuu.imx
│   ├── vbmeta-imx8qm-var-som-dp.img
│   ├── vbmeta-imx8qm-var-som-dp-m4.img
│   ├── vbmeta-imx8qm-var-som-hdmi.img
│   ├── vbmeta-imx8qm-var-som-hdmi-m4.img
│   ├── vbmeta-imx8qm-var-som-lvds.img
│   ├── vbmeta-imx8qm-var-som-lvds-m4.img
│   ├── vbmeta-imx8qm-var-spear-dp.img
│   ├── vbmeta-imx8qm-var-spear-dp-m4.img
│   ├── vbmeta-imx8qm-var-spear-hdmi.img
│   ├── vbmeta-imx8qm-var-spear-hdmi-m4.img
│   ├── vbmeta-imx8qm-var-spear-lvds.img
│   ├── vbmeta-imx8qm-var-spear-lvds-m4.img
│   └── vendor_boot.img
└── Yocto
   ├── imx-boot-sd.bin
   └── rootfs.tar.gz


SD card image file tree Dunfell V1.1

/opt/images/
├── Android
│   ├── boot.img
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote_m40.bin
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote_m40.elf
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote_m41.bin
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote_m41.elf
│   ├── dpfw.bin
│   ├── dtbo-imx8qm-var-som-dp.img
│   ├── dtbo-imx8qm-var-som-dp-m4.img
│   ├── dtbo-imx8qm-var-som-hdmi.img
│   ├── dtbo-imx8qm-var-som-hdmi-m4.img
│   ├── dtbo-imx8qm-var-som-lvds.img
│   ├── dtbo-imx8qm-var-som-lvds-m4.img
│   ├── dtbo-imx8qm-var-spear-dp.img
│   ├── dtbo-imx8qm-var-spear-dp-m4.img
│   ├── dtbo-imx8qm-var-spear-hdmi.img
│   ├── dtbo-imx8qm-var-spear-hdmi-m4.img
│   ├── dtbo-imx8qm-var-spear-lvds.img
│   ├── dtbo-imx8qm-var-spear-lvds-m4.img
│   ├── dtbo-imx8qp-var-som-dp.img
│   ├── dtbo-imx8qp-var-som-dp-m4.img
│   ├── dtbo-imx8qp-var-som-hdmi.img
│   ├── dtbo-imx8qp-var-som-hdmi-m4.img
│   ├── dtbo-imx8qp-var-som-lvds.img
│   ├── dtbo-imx8qp-var-som-lvds-m4.img
│   ├── dtbo-imx8qp-var-spear-dp.img
│   ├── dtbo-imx8qp-var-spear-dp-m4.img
│   ├── dtbo-imx8qp-var-spear-hdmi.img
│   ├── dtbo-imx8qp-var-spear-hdmi-m4.img
│   ├── dtbo-imx8qp-var-spear-lvds.img
│   ├── dtbo-imx8qp-var-spear-lvds-m4.img
│   ├── hdmitxfw.bin
│   ├── super.img
│   ├── u-boot-imx8qm-var-som.imx
│   ├── u-boot-imx8qm-var-som-uuu.imx
│   ├── vbmeta-imx8qm-var-som-dp.img
│   ├── vbmeta-imx8qm-var-som-dp-m4.img
│   ├── vbmeta-imx8qm-var-som-hdmi.img
│   ├── vbmeta-imx8qm-var-som-hdmi-m4.img
│   ├── vbmeta-imx8qm-var-som-lvds.img
│   ├── vbmeta-imx8qm-var-som-lvds-m4.img
│   ├── vbmeta-imx8qm-var-spear-dp.img
│   ├── vbmeta-imx8qm-var-spear-dp-m4.img
│   ├── vbmeta-imx8qm-var-spear-hdmi.img
│   ├── vbmeta-imx8qm-var-spear-hdmi-m4.img
│   ├── vbmeta-imx8qm-var-spear-lvds.img
│   ├── vbmeta-imx8qm-var-spear-lvds-m4.img
│   ├── vbmeta-imx8qp-var-som-dp.img
│   ├── vbmeta-imx8qp-var-som-dp-m4.img
│   ├── vbmeta-imx8qp-var-som-hdmi.img
│   ├── vbmeta-imx8qp-var-som-hdmi-m4.img
│   ├── vbmeta-imx8qp-var-som-lvds.img
│   ├── vbmeta-imx8qp-var-som-lvds-m4.img
│   ├── vbmeta-imx8qp-var-spear-dp.img
│   ├── vbmeta-imx8qp-var-spear-dp-m4.img
│   ├── vbmeta-imx8qp-var-spear-hdmi.img
│   ├── vbmeta-imx8qp-var-spear-hdmi-m4.img
│   ├── vbmeta-imx8qp-var-spear-lvds.img
│   ├── vbmeta-imx8qp-var-spear-lvds-m4.img
│   └── vendor_boot.img
└── Yocto
   ├── imx-boot-sd.bin
   └── rootfs.tar.gz


Android 9 images

Image
Description
u-boot-imx8qm.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
system.img Android system image file.
SOM agnostics.
vendor.img Android vendor image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
where <name> can be: imx8qm-var-som-dp - Supports VAR-SOM-MX8 with DP
imx8qm-var-som-hdmi - Supports VAR-SOM-MX8 with HDMI
imx8qm-var-som-lvds - Supports VAR-SOM-MX8 with LVDS
imx8qm-var-spear-dp - Supports SPEAR-MX8 with DP
imx8qm-var-spear-hdmi - Supports SPEAR-MX8 with HDMI
imx8qm-var-spear-lvds - Supports SPEAR-MX8 with LVDS


Android 10 V2.5.0 images

Image
Description
u-boot-imx8qm.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
system.img Android system image file.
SOM agnostics.
vendor.img Android vendor image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
where <name> can be: imx8qm-var-som-dp - Supports VAR-SOM-MX8 with DP
imx8qm-var-som-hdmi - Supports VAR-SOM-MX8 with HDMI
imx8qm-var-som-lvds - Supports VAR-SOM-MX8 with LVDS
imx8qm-var-spear-dp - Supports SPEAR-MX8 with DP
imx8qm-var-spear-hdmi - Supports SPEAR-MX8 with HDMI
imx8qm-var-spear-lvds - Supports SPEAR-MX8 with LVDS


Android 11 V1.0.0 images

Image
Description
u-boot-imx8qm.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
system.img Android system image file.
SOM agnostics.
vendor.img Android vendor image file.
SOM agnostics.
vendor_boot.img A composite image, which includes another part of ramdisk and boot parameters.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
where <name> can be: imx8qm-var-som-dp - Supports VAR-SOM-MX8 with DP
imx8qm-var-som-dp-m4 - Supports VAR-SOM-MX8 M4 with DP
imx8qm-var-som-hdmi - Supports VAR-SOM-MX8 with HDMI
imx8qm-var-som-hdmi-m4 - Supports VAR-SOM-MX8 M4 with HDMI
imx8qm-var-som-lvds - Supports VAR-SOM-MX8 with LVDS
imx8qm-var-som-lvds-m4 - Supports VAR-SOM-MX8 M4 with LVDS
imx8qm-var-spear-dp - Supports SPEAR-MX8 with DP
imx8qm-var-spear-dp-m4 - Supports SPEAR-MX8 M4 with DP
imx8qm-var-spear-hdmi - Supports SPEAR-MX8 with HDMI
imx8qm-var-spear-hdmi-m4 - Supports SPEAR-MX8 M4 with HDMI
imx8qm-var-spear-lvds - Supports SPEAR-MX8 with LVDS
imx8qm-var-spear-lvds-m4 - Supports SPEAR-MX8 M4 with LVDS


Android 11 V1.0.0_V1.1 images

Image
Description
u-boot-imx8qm.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
system.img Android system image file.
SOM agnostics.
vendor.img Android vendor image file.
SOM agnostics.
vendor_boot.img A composite image, which includes another part of ramdisk and boot parameters.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
where <name> can be: imx8qm-var-som-dp - Supports VAR-SOM-MX8QM with DP
imx8qm-var-som-dp-m4 - Supports VAR-SOM-MX8QM M4 with DP
imx8qm-var-som-hdmi - Supports VAR-SOM-MX8QM with HDMI
imx8qm-var-som-hdmi-m4 - Supports VAR-SOM-MX8QM M4 with HDMI
imx8qm-var-som-lvds - Supports VAR-SOM-MX8QM with LVDS
imx8qm-var-som-lvds-m4 - Supports VAR-SOM-MX8QM M4 with LVDS
imx8qm-var-spear-dp - Supports SPEAR-MX8QM with DP
imx8qm-var-spear-dp-m4 - Supports SPEAR-MX8QM M4 with DP
imx8qm-var-spear-hdmi - Supports SPEAR-MX8QM with HDMI
imx8qm-var-spear-hdmi-m4 - Supports SPEAR-MX8QM M4 with HDMI
imx8qm-var-spear-lvds - Supports SPEAR-MX8QM with LVDS
imx8qm-var-spear-lvds-m4 - Supports SPEAR-MX8QM M4 with LVDS
imx8qp-var-som-dp - Supports VAR-SOM-MX8QP with DP
imx8qp-var-som-dp-m4 - Supports VAR-SOM-MX8QP M4 with DP
imx8qp-var-som-hdmi - Supports VAR-SOM-MX8QP with HDMI
imx8qp-var-som-hdmi-m4 - Supports VAR-SOM-MX8QP M4 with HDMI
imx8qp-var-som-lvds - Supports VAR-SOM-MX8QP with LVDS
imx8qp-var-som-lvds-m4 - Supports VAR-SOM-MX8QP M4 with LVDS
imx8qp-var-spear-dp - Supports SPEAR-MX8QP with DP
imx8qp-var-spear-dp-m4 - Supports SPEAR-MX8QP M4 with DP
imx8qp-var-spear-hdmi - Supports SPEAR-MX8QP with HDMI
imx8qp-var-spear-hdmi-m4 - Supports SPEAR-MX8QP M4 with HDMI
imx8qp-var-spear-lvds - Supports SPEAR-MX8QP with LVDS
imx8qp-var-spear-lvds-m4 - Supports SPEAR-MX8QP M4 with LVDS


Android 13.0.0_1.2.0_V1.0 images

Image
Description
u-boot-imx8qm.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
vendor_boot.img A composite image, which includes vendor part of ramdisk and ko modules.
SOM agnostics.
init_boot.img A composite image, which includes init process.
SOM agnostics.
super.img Android system image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
firmware.img HDMI and Display Port firmware for u-boot loading.
where <name> can be: imx8qm-var-som-dp - Supports VAR-SOM-MX8QM with DP
imx8qm-var-som-dp-m4 - Supports VAR-SOM-MX8QM M4 with DP
imx8qm-var-som-hdmi - Supports VAR-SOM-MX8QM with HDMI
imx8qm-var-som-hdmi-m4 - Supports VAR-SOM-MX8QM M4 with HDMI
imx8qm-var-som-lvds - Supports VAR-SOM-MX8QM with LVDS
imx8qm-var-som-lvds-m4 - Supports VAR-SOM-MX8QM M4 with LVDS
imx8qm-var-spear-dp - Supports SPEAR-MX8QM with DP
imx8qm-var-spear-dp-m4 - Supports SPEAR-MX8QM M4 with DP
imx8qm-var-spear-hdmi - Supports SPEAR-MX8QM with HDMI
imx8qm-var-spear-hdmi-m4 - Supports SPEAR-MX8QM M4 with HDMI
imx8qm-var-spear-lvds - Supports SPEAR-MX8QM with LVDS
imx8qm-var-spear-lvds-m4 - Supports SPEAR-MX8QM M4 with LVDS
imx8qp-var-som-dp - Supports VAR-SOM-MX8QP with DP
imx8qp-var-som-dp-m4 - Supports VAR-SOM-MX8QP M4 with DP
imx8qp-var-som-hdmi - Supports VAR-SOM-MX8QP with HDMI
imx8qp-var-som-hdmi-m4 - Supports VAR-SOM-MX8QP M4 with HDMI
imx8qp-var-som-lvds - Supports VAR-SOM-MX8QP with LVDS
imx8qp-var-som-lvds-m4 - Supports VAR-SOM-MX8QP M4 with LVDS
imx8qp-var-spear-dp - Supports SPEAR-MX8QP with DP
imx8qp-var-spear-dp-m4 - Supports SPEAR-MX8QP M4 with DP
imx8qp-var-spear-hdmi - Supports SPEAR-MX8QP with HDMI
imx8qp-var-spear-hdmi-m4 - Supports SPEAR-MX8QP M4 with HDMI
imx8qp-var-spear-lvds - Supports SPEAR-MX8QP with LVDS
imx8qp-var-spear-lvds-m4 - Supports SPEAR-MX8QP M4 with LVDS


Android 9 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/som_mx8q/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/som_mx8q/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/som_mx8q/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/som_mx8q/boot.img
$ sudo `which fastboot` flash system_a out/target/product/som_mx8q/system.img
$ sudo `which fastboot` flash system_b out/target/product/som_mx8q/system.img
$ sudo `which fastboot` flash vendor_a out/target/product/som_mx8q/vendor.img
$ sudo `which fastboot` flash vendor_b out/target/product/som_mx8q/vendor.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/som_mx8q/vbmeta-<name>.img
$ sudo `which fastboot` flash vbmeta_b out/target/product/som_mx8q/vbmeta-<name>.img
$ sudo `which fastboot` reboot


Android 10 V2.5.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/som_mx8q/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/som_mx8q/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/som_mx8q/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/som_mx8q/boot.img
$ sudo `which fastboot` flash super out/target/product/som_mx8q/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/som_mx8q/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash vbmeta_b out/target/product/som_mx8q/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` reboot


Android 11 V1.0.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/som_mx8q/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/som_mx8q/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/som_mx8q/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/som_mx8q/boot.img
$ sudo `which fastboot` flash vendor_boot_a out/target/product/som_mx8q/vendor_boot.img
$ sudo `which fastboot` flash vendor_boot_b out/target/product/som_mx8q/vendor_boot.img
$ sudo `which fastboot` flash super out/target/product/som_mx8q/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/som_mx8q/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash vbmeta_b out/target/product/som_mx8q/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` reboot


Android 13 V1.0.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/som_mx8q/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/som_mx8q/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/som_mx8q/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/som_mx8q/boot.img
$ sudo `which fastboot` flash init_boot_a out/target/product/som_mx8q/init_boot.img
$ sudo `which fastboot` flash init_boot_b out/target/product/som_mx8q/init_boot.img
$ sudo `which fastboot` flash vendor_boot_a out/target/product/som_mx8q/vendor_boot.img
$ sudo `which fastboot` flash vendor_boot_b out/target/product/som_mx8q/vendor_boot.img
$ sudo `which fastboot` flash super out/target/product/som_mx8q/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/som_mx8q/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash vbmeta_b out/target/product/som_mx8q/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash firmware out/target/product/som_mx8q/firmware.img
$ sudo `which fastboot` reboot


Android 10 V2.5.0 UUU

Copy Variscite's uuu scripts to the Android build output folder:

$ cp ~/var_imx-o8.1.0_1.3.0_8m/android_build/device/variscite/scripts/uuu_scripts/* out/target/product/som_mx8q/

And run uuu to program the eMMC:

$ sudo ./uuu <uuu script>.lst

where <uuu script> should be one of the following:

emmc_burn_android_var_som_imx8.lst - Supports VAR-SOM-MX8 with LVDS
emmc_burn_android_spear8.lst - Supports SPEAR-MX8 with LVDS


Android 11 V1.0.0 UUU

Copy Variscite's uuu scripts to the Android build output folder:

$ cp ~/var_imx-o8.1.0_1.3.0_8m/android_build/device/variscite/scripts/uuu_scripts/* out/target/product/som_mx8q/

And run uuu to program the eMMC:

$ sudo ./uuu <uuu script>.lst

where <uuu script> should be one of the following:

emmc_burn_android_spear8.lst - SPEAR-MX8 Supports LVDS.
emmc_burn_android_var_som_imx8.lst - VAR-SOM-MX8 LVDS.


Android 13 V1.0.0 UUU

Copy Variscite's uuu scripts to the Android build output folder:

$ cp ~/var_imx-o8.1.0_1.3.0_8m/android_build/device/variscite/scripts/uuu_scripts/* out/target/product/som_mx8q/

And run uuu to program the eMMC:

$ sudo ./uuu <uuu script>.lst

where <uuu script> should be one of the following:

emmc_burn_android_imx8qm_spear_dp.lst - SPEAR-MX8 Supports Display Port.
emmc_burn_android_imx8qm_spear_hdmi.lst - SPEAR-MX8 Supports HDMI Display.
emmc_burn_android_imx8qm_spear_lvds.lst - SPEAR-MX8 Supports LVDS Display.
emmc_burn_android_imx8qm_var_som_symphony_dp.lst - VAR-SOM-MX8 Supports Display Port.
emmc_burn_android_imx8qm_var_som_symphony_hdmi.lst - VAR-SOM-MX8 Supports HDMI Port. 
emmc_burn_android_imx8qm_var_som_symphony_lvds.lst - VAR-SOM-MX8 Supports LVDS Display.


VAR-SOM-MX8M-NANO

Supported hardware and features

Feature
Description
SOM support
VAR-SOM-MX8M-NANO
Carrier Board support
Symphony Board
CPU

i.MX8MNANO

eMMC
up to 64GB
DDR4 size support configuration
up to 2GB
SD card
+
Wired Network
10/100/1000 Mbps Ethernet
Wireless Network
Support for LWB5, 802.11 ac/a/b/g/n STA, AP, & Wi-Fi Direct Mode SmartConfig
Bluetooth
4.2 / BLE
SPI
+
I2C
+
USB host
+
USB OTG
Host and Device USB2.0: 1x OTG
Uarts
x4, up to 4 Mbps.
RTC
+
Display LVDS Dual 1920×1080 24-bit
MIPI-DSI 1920×1080 24-bit
Audio Line IN / HP
Camera MIPI-CSI2


SD card image file tree Sumo

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mn-var-som.img
│   ├── dtbo-imx8mn-var-som-m7.img
│   ├── dtbo-imx8mn-var-som-v10.img
│   ├── dtbo-imx8mn-var-som-v10-m7.img
│   ├── system.img
│   ├── u-boot-imx8mn-var-som.imx
│   ├── vbmeta-imx8mn-var-som.img
│   ├── vbmeta-imx8mn-var-som-m7.img
│   ├── vbmeta-imx8mn-var-som-v10.img
│   ├── vbmeta-imx8mn-var-som-v10-m7.img
│   └── vendor.img
└── Yocto
    ├── rootfs.tar.gz
    └── imx-boot-sd.bin


SD card image file tree ZEUS With Super Image

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mn-var-som.img
│   ├── dtbo-imx8mn-var-som-v10.img
│   ├── super.img
│   ├── u-boot-imx8mn-var-som.imx
│   ├── u-boot-imx8mn-var-som-uuu.imx
│   ├── vbmeta-imx8mn-var-som.img
│   └── vbmeta-imx8mn-var-som-v10.img
└── Yocto
   ├── imx-boot-sd.bin
   └── rootfs.tar.gz


SD card image file tree DUNFELL V1.4

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mn-var-som.img
│   ├── dtbo-imx8mn-var-som-legacy.img
│   ├── super.img
│   ├── u-boot-imx8mn-var-som.imx
│   ├── u-boot-imx8mn-var-som-uuu.imx
│   ├── vbmeta-imx8mn-var-som.img
│   └── vbmeta-imx8mn-var-som-legacy.img
└── Yocto
   ├── imx-boot-sd.bin
   └── rootfs.tar.gz


SD card image file tree DUNFELL V1.5

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mn-var-som.img
│   ├── dtbo-imx8mn-var-som-m7.img
│   ├── dtbo-imx8mn-var-som-legacy.img
│   ├── dtbo-imx8mn-var-som-legacy-m7.img
│   ├── super.img
│   ├── u-boot-imx8mn-var-som.imx
│   ├── u-boot-imx8mn-var-som-uuu.imx
│   ├── vbmeta-imx8mn-var-som.img
│   ├── vbmeta-imx8mn-var-som-m7.img
│   ├── vbmeta-imx8mn-var-som-legacy.img
│   └── vbmeta-imx8mn-var-som-legacy-m7.img
└── Yocto
   ├── imx-boot-sd.bin
   └── rootfs.tar.gz


SD card image file tree DUNFELL V1.6

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mn-var-som-symphony.img
│   ├── dtbo-imx8mn-var-som-symphony-m7.img
│   ├── dtbo-imx8mn-var-som-symphony-legacy.img
│   ├── dtbo-imx8mn-var-som-symphony-legacy-m7.img
│   ├── super.img
│   ├── u-boot-imx8mn-var-som.imx
│   ├── u-boot-imx8mn-var-som-uuu.imx
│   ├── vbmeta-imx8mn-var-som-symphony.img
│   ├── vbmeta-imx8mn-var-som-symphony-m7.img
│   ├── vbmeta-imx8mn-var-som-symphony-legacy.img
│   └── vbmeta-imx8mn-var-som-symphony-legacy-m7.img
└── Yocto
   ├── imx-boot-sd.bin
   └── rootfs.tar.gz


Android 9 V2.3.4 images

Image
Description
u-boot-imx8mn-var-som.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
system.img Android system image file.
SOM agnostics.
vendor.img Android vendor image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
where <name> can be: imx8mn-var-som - Supports LVDS / SD / WIFI


Android 10 images

Image
Description
u-boot-imx8mn-var-som.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
super.img Android super image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mn-var-som - Supports LVDS / SD / WIFI


Android 10 V 1.3 images

Image
Description
u-boot-imx8mn-var-som.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
super.img Android super image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mn-var-som - Supports LVDS / SD / WIFI (VAR-SOM-MX8M-NANO on a Symphony-Board V1.4A and above)
imx8mn-var-som-legacy - Supports LVDS / SD / WIFI (VAR-SOM-MX8M-NANO on a Symphony-Board V1.4 and below)


Android 11 V 1.0 images

Image
Description
u-boot-imx8mn-var-som.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
u-boot-imx8mn-var-som-uuu.imx U-Boot for uuu USB boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
super.img Android super image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mn-var-som - Supports LVDS / SD / WIFI (VAR-SOM-MX8M-NANO on a Symphony-Board V1.4A and above)
imx8mn-var-som-legacy - Supports LVDS / SD / WIFI (VAR-SOM-MX8M-NANO on a Symphony-Board V1.4 and below)

imx8mn-var-som-m7 - Supports LVDS / SD / WIFI (VAR-SOM-MX8M-NANO-M7 on a Symphony-Board V1.4A and above) with Cortex M7
imx8mn-var-som-legacy-m7 - Supports LVDS / SD / WIFI (VAR-SOM-MX8M-NANO on a Symphony-Board V1.4 and below) with Cortex M7

Android 11 V 1.1 images

Image
Description
u-boot-imx8mn-var-som.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
u-boot-imx8mn-var-som-uuu.imx U-Boot for uuu USB boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
super.img Android super image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mn-var-som-symphony - Supports LVDS / SD / WIFI (VAR-SOM-MX8M-NANO on a Symphony-Board V1.4A and above)
imx8mn-var-som-symphony-legacy - Supports LVDS / SD / WIFI (VAR-SOM-MX8M-NANO on a Symphony-Board V1.4 and below)

imx8mn-var-som-symphony-m7 - Supports LVDS / SD / WIFI (VAR-SOM-MX8M-NANO-M7 on a Symphony-Board V1.4A and above) with Cortex M7
imx8mn-var-som-legacy-symphony-m7 - Supports LVDS / SD / WIFI (VAR-SOM-MX8M-NANO on a Symphony-Board V1.4 and below) with Cortex M7

Android 12 V 1.0 images

Image
Description
u-boot-imx8mn-var-som.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
u-boot-imx8mn-var-som-uuu.imx U-Boot for uuu USB boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
vendor_boot.img A composite image, which includes another part of ramdisk and boot parameters.
SOM agnostics.
super.img Android super image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mn-var-som-symphony - Supports LVDS / SD / WIFI (VAR-SOM-MX8M-NANO on a Symphony-Board)

imx8mn-var-som-symphony-m7 - Supports LVDS / SD / WIFI (VAR-SOM-MX8M-NANO-M7 on a Symphony-Board) with Cortex M7


Android 14 V 1.0 images

Image
Description
u-boot-imx8mn-var-som.imx U-Boot image without Trusty OS integrated for eMMC/SD card boot.
Used for sigle-bootloader condition.
u-boot-imx8mn-var-som-uuu.imx U-Boot image for uuu USB boot.
spl-imx8mn-var-som-dual.bin SPL image without Trusty for eMMC/SD card boot.
Used for dual-bootloader condition.
bootloader-imx8mn-var-som-dual.img Bootloader image without Trusty OS integrated for eMMC/SD card boot.
Used for dual-bootloader condition.
boot.img Android kernel image file.
vendor_boot.img A composite image, which includes another part of ramdisk and boot parameters.
init_boot.img A composite image, which includes init process.
super.img Android super image file.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mn-var-som-symphony - Supports LVDS / SD / WIFI (VAR-SOM-MX8M-NANO on a Symphony-Board)

imx8mn-var-som-symphony-m7 - Supports LVDS / SD / WIFI (VAR-SOM-MX8M-NANO-M7 on a Symphony-Board) with Cortex M7


Android 9 V2.3.4 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/som_mx8mn/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/som_mx8mn/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/som_mx8mn/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/som_mx8mn/boot.img
$ sudo `which fastboot` flash system_a out/target/product/som_mx8mn/system.img
$ sudo `which fastboot` flash system_b out/target/product/som_mx8mn/system.img
$ sudo `which fastboot` flash vendor_a out/target/product/som_mx8mn/vendor.img
$ sudo `which fastboot` flash vendor_b out/target/product/som_mx8mn/vendor.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/som_mx8mn/vbmeta-<name>.img
$ sudo `which fastboot` flash vbmeta_b out/target/product/som_mx8mn/vbmeta-<name>.img
$ sudo `which fastboot` reboot


Android 10 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/som_mx8mn/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/som_mx8mn/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/som_mx8mn/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/som_mx8mn/boot.img
$ sudo `which fastboot` flash super out/target/product/som_mx8mn/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/som_mx8mn/vbmeta-<name>.img
$ sudo `which fastboot` flash vbmeta_b out/target/product/som_mx8mn/vbmeta-<name>.img
$ sudo `which fastboot` reboot


Android 11 V1.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/som_mx8mn/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/som_mx8mn/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/som_mx8mn/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/som_mx8mn/boot.img
$ sudo `which fastboot` flash vendor_boot_a out/target/product/som_mx8mn/vendor_boot.img
$ sudo `which fastboot` flash vendor_boot_b out/target/product/som_mx8mn/vendor_boot.img
$ sudo `which fastboot` flash super out/target/product/som_mx8mn/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/som_mx8mn/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash vbmeta_b out/target/product/som_mx8mn/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` reboot


Android 14 V1.0 fastboot

$ sudo `which fastboot` flash bootloader_a out/target/product/som_mx8mn/bootloader-imx8mn-var-som-dual.img
$ sudo `which fastboot` flash bootloader_b out/target/product/som_mx8mn/bootloader-imx8mn-var-som-dual.img
$ sudo `which fastboot` flash dtbo_a out/target/product/som_mx8mn/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/som_mx8mn/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/som_mx8mn/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/som_mx8mn/boot.img
$ sudo `which fastboot` flash init_boot_a out/target/product/som_mx8mn/init_boot.img
$ sudo `which fastboot` flash init_boot_b out/target/product/som_mx8mn/init_boot.img
$ sudo `which fastboot` flash vendor_boot_a out/target/product/som_mx8mn/vendor_boot.img
$ sudo `which fastboot` flash vendor_boot_b out/target/product/som_mx8mn/vendor_boot.img
$ sudo `which fastboot` flash super out/target/product/som_mx8mn/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/som_mx8mn/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash vbmeta_b out/target/product/som_mx8mn/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` reboot


Android 12 V1.0 UUU

Copy Variscite's uuu scripts to the Android build output folder:

$ cp ~/var_imx-o8.1.0_1.3.0_8m/android_build/device/variscite/scripts/uuu_scripts/* out/target/product/som_mx8mn/

And run uuu to program the eMMC:

$ sudo ./uuu <uuu script>.lst

where <uuu script> should be one of the following:

 emmc_burn_android_imx8mn_var_som_symphony.lst - Supports LVDS / SD / WiFi (VAR-SOM-MX8M-NANO on a Symphony-Board)


DART-MX8M-PLUS

Supported hardware and features

Feature
Description
SOM support
DART-MX8M-PLUS VAR-SOM-MX8M-PLUS
Carrier Board support
VAR-DT8MCustomBoard Symphony Board (VAR-SOM-IMX8M-Plus only)
CPU

i.MX8M Plus

eMMC
up to 64GB
LPDDR4 size support configuration
up to 4GB
SD card
+
Wired Network
10/100/1000 Mbps Ethernet
1 × Ethernet with TSN support
Wireless Network
Support for LWB5, 802.11 ac/a/b/g/n STA, AP, & Wi-Fi Direct Mode SmartConfig
Bluetooth
4.2 / BLE
SPI
+
I2C
+
USB host
+
USB OTG
Host and Device
Uarts
x4, up to 5 Mbps.
RTC
+
Display Dual LVDS up to 1080p60
MIPI-DSI 1920×1080p60
HDMI v2.0a up to 4Kp30,
Audio Line IN / HP
Camera 2x MIPI-CSI2
PCIE +


SD card image file tree Zeus

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mp-var-dart.img
│   ├── dtbo-imx8mp-var-som.img
│   ├── dtbo-imx8mp-var-som-ov5640.img
│   ├── super.img
│   ├── u-boot-imx8mp-var-dart.imx
│   ├── u-boot-imx8mp-var-dart-uuu.imx
│   ├── vbmeta-imx8mp-var-dart.img
│   ├── vbmeta-imx8mp-var-som.img
│   └── vendor.img
└── Yocto
    ├── rootfs.tar.bz2
    └── imx-boot-sd.bin


SD card image file tree Zeus

/opt/images/
├── Android
│   ├── boot.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-hdmi.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-legacy-hdmi.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-legacy.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-legacy-m7.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-m7.img
│   ├── dtbo-imx8mp-var-som-symphony-2nd-ov5640.img
│   ├── dtbo-imx8mp-var-som-symphony-2nd-ov5640-m7.img
│   ├── dtbo-imx8mp-var-som-symphony-hdmi.img
│   ├── dtbo-imx8mp-var-som-symphony.img
│   ├── dtbo-imx8mp-var-som-symphony-m7.img
│   ├── rpmsg_lite_pingpong_rtos_linux_remote.bin
│   ├── rpmsg_lite_pingpong_rtos_linux_remote.bin.tcm.dart
│   ├── rpmsg_lite_pingpong_rtos_linux_remote.bin.tcm.som
│   ├── rpmsg_lite_pingpong_rtos_linux_remote.elf.dart
│   ├── rpmsg_lite_pingpong_rtos_linux_remote.elf.som
│   ├── super.img
│   ├── u-boot-imx8mp-var-dart.imx
│   ├── u-boot-imx8mp-var-dart-uuu.imx
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-hdmi.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-legacy-hdmi.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-legacy.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-legacy-m7.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-m7.img
│   ├── vbmeta-imx8mp-var-som-symphony-2nd-ov5640.img
│   ├── vbmeta-imx8mp-var-som-symphony-2nd-ov5640-m7.img
│   ├── vbmeta-imx8mp-var-som-symphony-hdmi.img
│   ├── vbmeta-imx8mp-var-som-symphony.img
│   ├── vbmeta-imx8mp-var-som-symphony-m7.img
│   └── vendor_boot.img
└── Yocto
    ├── imx-boot-sd.bin
    └── rootfs.tar.gz


SD card image file tree Hardknott

/opt/images/
├── Android
│   ├── boot.img
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote.bin.debug_dart
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote.bin.debug_som
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote.elf.debug_dart
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote.elf.debug_som
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-basler-isp0.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-hdmi.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-legacy-hdmi.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-legacy.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-legacy-m7.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-m7.img
│   ├── dtbo-imx8mp-var-som-symphony-2nd-ov5640.img
│   ├── dtbo-imx8mp-var-som-symphony-2nd-ov5640-m7.img
│   ├── dtbo-imx8mp-var-som-symphony-basler-isp0.img
│   ├── dtbo-imx8mp-var-som-symphony-hdmi.img
│   ├── dtbo-imx8mp-var-som-symphony.img
│   ├── dtbo-imx8mp-var-som-symphony-m7.img
│   ├── rpmsg_lite_pingpong_rtos_linux_remote.bin
│   ├── super.img
│   ├── u-boot-imx8mp-var-dart.imx
│   ├── u-boot-imx8mp-var-dart-uuu.imx
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-basler-isp0.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-hdmi.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-legacy-hdmi.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-legacy.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-legacy-m7.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-m7.img
│   ├── vbmeta-imx8mp-var-som-symphony-2nd-ov5640.img
│   ├── vbmeta-imx8mp-var-som-symphony-2nd-ov5640-m7.img
│   ├── vbmeta-imx8mp-var-som-symphony-basler-isp0.img
│   ├── vbmeta-imx8mp-var-som-symphony-hdmi.img
│   ├── vbmeta-imx8mp-var-som-symphony.img
│   ├── vbmeta-imx8mp-var-som-symphony-m7.img
│   └── vendor_boot.img
└── Yocto
    ├── imx-boot-sd.bin
    └── rootfs.tar.gz


SD card image file tree Kirkstone - Android 13

/opt/images/
├── Android
│   ├── boot.img
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote.bin.ddr_debug_dart
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote.bin.ddr_debug_som
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote.bin.debug_dart
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote.bin.debug_som
│   ├── cm_rpmsg_lite_str_echo_rtos.bin.ddr_debug_dart
│   ├── cm_rpmsg_lite_str_echo_rtos.bin.ddr_debug_som
│   ├── cm_rpmsg_lite_str_echo_rtos.bin.debug_dart
│   ├── cm_rpmsg_lite_str_echo_rtos.bin.debug_som
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-basler-isp0.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-hdmi.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-legacy-basler-isp0.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-legacy-hdmi.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-legacy.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-legacy-m7.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-m7.img
│   ├── dtbo-imx8mp-var-som-symphony-2nd-ov5640.img
│   ├── dtbo-imx8mp-var-som-symphony-2nd-ov5640-m7.img
│   ├── dtbo-imx8mp-var-som-symphony-basler-isp0.img
│   ├── dtbo-imx8mp-var-som-symphony-hdmi.img
│   ├── dtbo-imx8mp-var-som-symphony.img
│   ├── dtbo-imx8mp-var-som-symphony-m7.img
│   ├── init_boot.img
│   ├── rpmsg_lite_pingpong_rtos_linux_remote.bin
│   ├── super.img
│   ├── u-boot-imx8mp-var-dart.imx
│   ├── u-boot-imx8mp-var-dart-uuu.imx
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-basler-isp0.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-hdmi.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-legacy-basler-isp0.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-legacy-hdmi.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-legacy.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-legacy-m7.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-m7.img
│   ├── vbmeta-imx8mp-var-som-symphony-2nd-ov5640.img
│   ├── vbmeta-imx8mp-var-som-symphony-2nd-ov5640-m7.img
│   ├── vbmeta-imx8mp-var-som-symphony-basler-isp0.img
│   ├── vbmeta-imx8mp-var-som-symphony-hdmi.img
│   ├── vbmeta-imx8mp-var-som-symphony.img
│   ├── vbmeta-imx8mp-var-som-symphony-m7.img
│   └── vendor_boot.img
└── Yocto
    ├── imx-boot-sd.bin
    └── rootfs.tar.gz


SD card image file tree Mickledore - Android 14

/opt/images/
├── Android
│   ├── boot.img
│   ├── bootloader-imx8mp-var-dart-dual.img
│   ├── cm_hello_world.bin.debug_dart
│   ├── cm_hello_world.bin.debug_som
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote.bin.debug_dart
│   ├── cm_rpmsg_lite_pingpong_rtos_linux_remote.bin.debug_som
│   ├── cm_rpmsg_lite_str_echo_rtos.bin.debug_dart
│   ├── cm_rpmsg_lite_str_echo_rtos.bin.debug_som
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-basler-isi0-m7.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-basler-isi0.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-basler-isp0-m7.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-basler-isp0.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard-m7.img
│   ├── dtbo-imx8mp-var-dart-dt8mcustomboard.img
│   ├── dtbo-imx8mp-var-som-1.x-symphony-2nd-ov5640-m7.img
│   ├── dtbo-imx8mp-var-som-1.x-symphony-2nd-ov5640.img
│   ├── dtbo-imx8mp-var-som-1.x-symphony-basler-isi0-m7.img
│   ├── dtbo-imx8mp-var-som-1.x-symphony-basler-isi0.img
│   ├── dtbo-imx8mp-var-som-1.x-symphony-basler-isp0-m7.img
│   ├── dtbo-imx8mp-var-som-1.x-symphony-basler-isp0.img
│   ├── dtbo-imx8mp-var-som-1.x-symphony-m7.img
│   ├── dtbo-imx8mp-var-som-1.x-symphony.img
│   ├── dtbo-imx8mp-var-som-symphony-2nd-ov5640-m7.img
│   ├── dtbo-imx8mp-var-som-symphony-2nd-ov5640.img
│   ├── dtbo-imx8mp-var-som-symphony-basler-isi0-m7.img
│   ├── dtbo-imx8mp-var-som-symphony-basler-isi0.img
│   ├── dtbo-imx8mp-var-som-symphony-basler-isp0-m7.img
│   ├── dtbo-imx8mp-var-som-symphony-basler-isp0.img
│   ├── dtbo-imx8mp-var-som-symphony-m7.img
│   ├── dtbo-imx8mp-var-som-symphony.img
│   ├── dtbo-imx8mp-var-som-wbe-symphony-2nd-ov5640-m7.img
│   ├── dtbo-imx8mp-var-som-wbe-symphony-2nd-ov5640.img
│   ├── dtbo-imx8mp-var-som-wbe-symphony-basler-isi0-m7.img
│   ├── dtbo-imx8mp-var-som-wbe-symphony-basler-isi0.img
│   ├── dtbo-imx8mp-var-som-wbe-symphony-basler-isp0-m7.img
│   ├── dtbo-imx8mp-var-som-wbe-symphony-basler-isp0.img
│   ├── dtbo-imx8mp-var-som-wbe-symphony-m7.img
│   ├── dtbo-imx8mp-var-som-wbe-symphony.img
│   ├── init_boot.img
│   ├── spl-imx8mp-var-dart-dual.bin
│   ├── super.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-basler-isi0-m7.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-basler-isi0.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-basler-isp0-m7.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-basler-isp0.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard-m7.img
│   ├── vbmeta-imx8mp-var-dart-dt8mcustomboard.img
│   ├── vbmeta-imx8mp-var-som-1.x-symphony-2nd-ov5640-m7.img
│   ├── vbmeta-imx8mp-var-som-1.x-symphony-2nd-ov5640.img
│   ├── vbmeta-imx8mp-var-som-1.x-symphony-basler-isi0-m7.img
│   ├── vbmeta-imx8mp-var-som-1.x-symphony-basler-isi0.img
│   ├── vbmeta-imx8mp-var-som-1.x-symphony-basler-isp0-m7.img
│   ├── vbmeta-imx8mp-var-som-1.x-symphony-basler-isp0.img
│   ├── vbmeta-imx8mp-var-som-1.x-symphony-m7.img
│   ├── vbmeta-imx8mp-var-som-1.x-symphony.img
│   ├── vbmeta-imx8mp-var-som-symphony-2nd-ov5640-m7.img
│   ├── vbmeta-imx8mp-var-som-symphony-2nd-ov5640.img
│   ├── vbmeta-imx8mp-var-som-symphony-basler-isi0-m7.img
│   ├── vbmeta-imx8mp-var-som-symphony-basler-isi0.img
│   ├── vbmeta-imx8mp-var-som-symphony-basler-isp0-m7.img
│   ├── vbmeta-imx8mp-var-som-symphony-basler-isp0.img
│   ├── vbmeta-imx8mp-var-som-symphony-m7.img
│   ├── vbmeta-imx8mp-var-som-symphony.img
│   ├── vbmeta-imx8mp-var-som-wbe-symphony-2nd-ov5640-m7.img
│   ├── vbmeta-imx8mp-var-som-wbe-symphony-2nd-ov5640.img
│   ├── vbmeta-imx8mp-var-som-wbe-symphony-basler-isi0-m7.img
│   ├── vbmeta-imx8mp-var-som-wbe-symphony-basler-isi0.img
│   ├── vbmeta-imx8mp-var-som-wbe-symphony-basler-isp0-m7.img
│   ├── vbmeta-imx8mp-var-som-wbe-symphony-basler-isp0.img
│   ├── vbmeta-imx8mp-var-som-wbe-symphony-m7.img
│   ├── vbmeta-imx8mp-var-som-wbe-symphony.img
│   └── vendor_boot.img
└── Yocto
    ├── imx-boot-sd.bin
    └── rootfs.tar.zst


Android 10 V2.5.0 images

Image
Description
u-boot-imx8mp-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
super.img Android system image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mp-var-dart - Supports LVDS / SD / WiFi
imx8mp-var-som - Supports VAR-SOM-MX8M-PLUS LVDS / SD / WiFi


Android 10 V2.6.0 V 1.0 images

Image
Description
u-boot-imx8mp-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
super.img Android system image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mp-var-som-symphony - Supports Variscite VAR-SOM-MX8M-PLUS LVDS on Symphony-Board
imx8mp-var-som-symphony-hdmi - Supports Variscite VAR-SOM-MX8M-PLUS HDMI on Symphony-Board
imx8mp-var-som-symphony-2nd-ov5640 - Supports Variscite VAR-SOM-MX8M-PLUS with 2nd OV5640 on Symphony-Board
imx8mp-var-dart-dt8mcustomboard - Supports Variscite DART-MX8M-PLUS LVDS on DT8MCustomBoard 2.x
imx8mp-var-dart-dt8mcustomboard-hdmi - Supports Variscite DART-MX8M-PLUS HDMI on DT8MCustomBoard 2.x
imx8mp-var-dart-dt8mcustomboard-legacy - Supports Variscite DART-MX8M-PLUS LVDS on DT8MCustomBoard 1.x
imx8mp-var-dart-dt8mcustomboard-legacy-hdmi - Supports Variscite DART-MX8M-PLUS HDMI on DT8MCustomBoard 1.x


Android 11 V1.2.0 V 1.0 images

Image
Description
u-boot-imx8mp-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
vendor_boot.img A composite image, which includes another part of ramdisk and boot parameters.
SOM agnostics.
super.img Android system image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mp-var-som-symphony - Supports Variscite VAR-SOM-MX8M-PLUS LVDS on Symphony-Board
imx8mp-var-som-symphony-hdmi - Supports Variscite VAR-SOM-MX8M-PLUS HDMI on Symphony-Board
imx8mp-var-som-symphony-m7 VAR-SOM-MX8M-PLUS M7 LVDS on Symphony-Board
imx8mp-var-som-symphony-2nd-ov5640 - Supports Variscite VAR-SOM-MX8M-PLUS with 2nd OV5640 on Symphony-Board
imx8mp-var-som-symphony-2nd-ov5640-m7 - Supports Variscite VAR-SOM-MX8M-PLUS M7 with 2nd OV5640 on Symphony-Board
imx8mp-var-dart-dt8mcustomboard - Supports Variscite DART-MX8M-PLUS LVDS on DT8MCustomBoard 2.x
imx8mp-var-dart-dt8mcustomboard-m7 - Supports Variscite DART-MX8M-PLUS M7 LVDS on DT8MCustomBoard 2.x
imx8mp-var-dart-dt8mcustomboard-hdmi - Supports Variscite DART-MX8M-PLUS HDMI on DT8MCustomBoard 2.x
imx8mp-var-dart-dt8mcustomboard-legacy - Supports Variscite DART-MX8M-PLUS LVDS on DT8MCustomBoard 1.x
imx8mp-var-dart-dt8mcustomboard-legacy-m7 - Supports Variscite DART-MX8M-PLUS M7 LVDS on DT8MCustomBoard 1.x
imx8mp-var-dart-dt8mcustomboard-legacy-hdmi - Supports Variscite DART-MX8M-PLUS HDMI on DT8MCustomBoard 1.x


Android 11 V2.2.0 V 1.0 images

Image
Description
u-boot-imx8mp-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
vendor_boot.img A composite image, which includes another part of ramdisk and boot parameters.
SOM agnostics.
super.img Android system image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mp-var-som-symphony - Supports Variscite VAR-SOM-MX8M-PLUS LVDS on Symphony-Board
imx8mp-var-som-symphony-hdmi - Supports Variscite VAR-SOM-MX8M-PLUS HDMI on Symphony-Board
imx8mp-var-som-symphony-m7 VAR-SOM-MX8M-PLUS M7 LVDS on Symphony-Board
imx8mp-var-som-symphony-2nd-ov5640 - Supports Variscite VAR-SOM-MX8M-PLUS with 2nd OV5640 on Symphony-Board
imx8mp-var-som-symphony-2nd-ov5640-m7 - Supports Variscite VAR-SOM-MX8M-PLUS M7 with 2nd OV5640 on Symphony-Board
imx8mp-var-som-symphony-basler-isp0 - Supports Variscite VAR-SOM-MX8M-PLUS with Basler camera on Symphony-Board
imx8mp-var-dart-dt8mcustomboard - Supports Variscite DART-MX8M-PLUS LVDS on DT8MCustomBoard 2.x
imx8mp-var-dart-dt8mcustomboard-m7 - Supports Variscite DART-MX8M-PLUS M7 LVDS on DT8MCustomBoard 2.x
imx8mp-var-dart-dt8mcustomboard-hdmi - Supports Variscite DART-MX8M-PLUS HDMI on DT8MCustomBoard 2.x
imx8mp-var-dart-dt8mcustomboard-legacy - Supports Variscite DART-MX8M-PLUS LVDS on DT8MCustomBoard 1.x
imx8mp-var-dart-dt8mcustomboard-legacy-m7 - Supports Variscite DART-MX8M-PLUS M7 LVDS on DT8MCustomBoard 1.x
imx8mp-var-dart-dt8mcustomboard-legacy-hdmi - Supports Variscite DART-MX8M-PLUS HDMI on DT8MCustomBoard 1.x
imx8mp-var-dart-dt8mcustomboard-basler-isp0 - Supports Variscite DART-MX8M-PLUS with Basler camera DT8MCustomBoard 2.x

Android 13 V 1.0 images

Image
Description
u-boot-imx8mp-var-dart.imx U-Boot for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
vendor_boot.img A composite image, which includes vendor part of ramdisk and ko modules.
SOM agnostics.
init_boot.img A composite image, which includes init process.
SOM agnostics.
super.img Android system image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mp-var-som-symphony - Supports Variscite VAR-SOM-MX8M-PLUS LVDS on Symphony-Board
imx8mp-var-som-symphony-hdmi - Supports Variscite VAR-SOM-MX8M-PLUS HDMI on Symphony-Board
imx8mp-var-som-symphony-m7 VAR-SOM-MX8M-PLUS M7 LVDS on Symphony-Board
imx8mp-var-som-symphony-2nd-ov5640 - Supports Variscite VAR-SOM-MX8M-PLUS with 2nd OV5640 on Symphony-Board
imx8mp-var-som-symphony-2nd-ov5640-m7 - Supports Variscite VAR-SOM-MX8M-PLUS M7 with 2nd OV5640 on Symphony-Board
imx8mp-var-som-symphony-basler-isp0 - Supports Variscite VAR-SOM-MX8M-PLUS with Basler camera on Symphony-Board
imx8mp-var-dart-dt8mcustomboard - Supports Variscite DART-MX8M-PLUS LVDS on DT8MCustomBoard 2.x
imx8mp-var-dart-dt8mcustomboard-m7 - Supports Variscite DART-MX8M-PLUS M7 LVDS on DT8MCustomBoard 2.x
imx8mp-var-dart-dt8mcustomboard-hdmi - Supports Variscite DART-MX8M-PLUS HDMI on DT8MCustomBoard 2.x
imx8mp-var-dart-dt8mcustomboard-legacy - Supports Variscite DART-MX8M-PLUS LVDS on DT8MCustomBoard 1.x
imx8mp-var-dart-dt8mcustomboard-legacy-m7 - Supports Variscite DART-MX8M-PLUS M7 LVDS on DT8MCustomBoard 1.x
imx8mp-var-dart-dt8mcustomboard-legacy-hdmi - Supports Variscite DART-MX8M-PLUS HDMI on DT8MCustomBoard 1.x
imx8mp-var-dart-dt8mcustomboard-basler-isp0 - Supports Variscite DART-MX8M-PLUS with Basler camera DT8MCustomBoard 2.x


Android 14 V 1.0 images

Image
Description
spl-imx8mp-var-dart-dual.bin U-Boot SPL without Trusty OS for eMMC/SD card boot.
SOM agnostics.
bootloader-imx8mp-var-dart-dual.img An image containing U-Boot proper and ATF without Trusty OS for eMMC/SD card boot.
SOM agnostics.
boot.img Android kernel image file.
SOM agnostics.
vendor_boot.img A composite image, which includes vendor RAMDisk and boot parameters.
SOM agnostics.
init_boot.img A composite image, which includes init process.
SOM agnostics.
super.img Android super image file.
SOM agnostics.
dtbo-<name>.img
vbmeta-<name>.img
configuration dependent
<name> is: imx8mp-var-dart-dt8mcustomboard - Supports DART-MX8M-PLUS on DT8MCustomBoard 2.x and above, with LVDS
imx8mp-var-dart-dt8mcustomboard-basler-isp0 - Supports DART-MX8M-PLUS on DT8MCustomBoard 2.x and above, with LVDS and Basler VCAM-AR0821B camera
imx8mp-var-dart-dt8mcustomboard-basler-isi0 -Supports DART-MX8M-PLUS on DT8MCustomBoard 2.x and above, with LVDS and Basler VCAM-AR1335B camera
imx8mp-var-dart-dt8mcustomboard-m7 - Supports DART-MX8M-PLUS on DT8MCustomBoard 2.x and above, with LVDS and Cortex M7
imx8mp-var-dart-dt8mcustomboard-basler-isp0-m7 - Supports DART-MX8M-PLUS on DT8MCustomBoard 2.x and above, with LVDS, Basler VCAM-AR0821B camera and Cortex M7
imx8mp-var-dart-dt8mcustomboard-basler-isi0-m7 - Supports DART-MX8M-PLUS on DT8MCustomBoard 2.x and above, with LVDS, Basler VCAM-AR1335B camera and Cortex M7
imx8mp-var-som-symphony - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS
imx8mp-var-som-symphony-basler-isp0 - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS and Basler VCAM-AR0821B camera
imx8mp-var-som-symphony-basler-isi0 - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS and Basler VCAM-AR1335B camera
imx8mp-var-som-symphony-2nd-ov5640 - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS and 2nd OV5640
imx8mp-var-som-symphony-m7 - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS and Cortex M7
imx8mp-var-som-symphony-basler-isp0-m7 - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS, Basler VCAM-AR0821B camera and Cortex M7
imx8mp-var-som-symphony-basler-isi0-m7 - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS, Basler VCAM-AR1335B camera and Cortex M7
imx8mp-var-som-1.x-symphony - Supports VAR-SOM-MX8M-PLUS V1.x on Symphony-Board, with LVDS
imx8mp-var-som-1.x-symphony-basler-isp0 - Supports VAR-SOM-MX8M-PLUS V1.x on Symphony-Board, with LVDS and Basler VCAM-AR0821B camera
imx8mp-var-som-1.x-symphony-basler-isi0 - Supports VAR-SOM-MX8M-PLUS V1.x on Symphony-Board, with LVDS and Basler VCAM-AR1335B camera
imx8mp-var-som-1.x-symphony-2nd-ov5640 - Supports VAR-SOM-MX8M-PLUS V1.x on Symphony-Board, with LVDS and 2nd OV5640
imx8mp-var-som-1.x-symphony-m7 - Supports VAR-SOM-MX8M-PLUS V1.x on Symphony-Board, with LVDS and Cortex M7
imx8mp-var-som-1.x-symphony-basler-isp0-m7 - Supports VAR-SOM-MX8M-PLUS V1.x on Symphony-Board, with LVDS, Basler VCAM-AR0821B camera and Cortex M7
imx8mp-var-som-1.x-symphony-basler-isi0-m7 - Supports VAR-SOM-MX8M-PLUS V1.x on Symphony-Board, with LVDS, Basler VCAM-AR1335B camera and Cortex M7
imx8mp-var-som-wbe-symphony - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS and WBE
imx8mp-var-som-wbe-symphony-basler-isp0 - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS, WBE and Basler VCAM-AR0821B camera
imx8mp-var-som-wbe-symphony-basler-isi0 - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS, WBE and Basler VCAM-AR1335B camera
imx8mp-var-som-wbe-symphony-2nd-ov5640 - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS, WBE and 2nd OV5640
imx8mp-var-som-wbe-symphony-m7 - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS, WBE and Cortex M7
imx8mp-var-som-wbe-symphony-basler-isp0-m7 - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS, WBE, Basler VCAM-AR0821B camera and Cortex M7
imx8mp-var-som-wbe-symphony-basler-isi0-m7 - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS, WBE, Basler VCAM-AR1335B camera and Cortex M7


Android 10 V2.5.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mp/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mp/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mp/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mp/boot.img
$ sudo `which fastboot` flash super out/target/product/dart_mx8mp/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mp/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mp/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` reboot


Android 10 V2.5.0 V1.0 UUU

Copy Variscite's uuu scripts to the Android build output folder:

$ cp ~/var_imx-o8.1.0_1.3.0_8m/android_build/device/variscite/scripts/uuu_scripts/* out/target/product/dart_mx8mp/

And run uuu to program the eMMC:

$ sudo ./uuu <uuu script>.lst

where <uuu script> should be one of the following:

emmc_burn_android_imx8mp_var_som.lst - Supports Variscite VAR-SOM-MX8M-PLUS LVDS on Symphony-Board
emmc_burn_android_imx8mp_var_dart.lst - Supports Variscite DART-MX8M-PLUS LVDS on DT8MCustomBoard 1.x


Android 10 V2.6.0 V1.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mp/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mp/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mp/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mp/boot.img
$ sudo `which fastboot` flash super out/target/product/dart_mx8mp/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mp/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mp/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` reboot


Android 10 V2.6.0 V1.0 UUU

Copy Variscite's uuu scripts to the Android build output folder:

$ cp ~/var_imx-o8.1.0_1.3.0_8m/android_build/device/variscite/scripts/uuu_scripts/* out/target/product/dart_mx8mp/

And run uuu to program the eMMC:

$ sudo ./uuu <uuu script>.lst

where <uuu script> should be one of the following:

emmc_burn_android_imx8mp_var_som_symphony.lst - Supports Variscite VAR-SOM-MX8M-PLUS LVDS on Symphony-Board
emmc_burn_android_imx8mp_var_som_symphony_2nd_ov5640.lst  - Supports Variscite VAR-SOM-MX8M-PLUS with 2nd OV5640 on Symphony-Board
emmc_burn_android_imx8mp_var_dart_dt8mcustomboard.lst - Supports Variscite DART-MX8M-PLUS LVDS on DT8MCustomBoard 2.x
emmc_burn_android_imx8mp_var_dart_dt8mcustomboard_hdmi.lst  - Supports Variscite DART-MX8M-PLUS HDMI on DT8MCustomBoard 2.x
emmc_burn_android_imx8mp_var_dart_dt8mcustomboard_legacy.lst - Supports Variscite DART-MX8M-PLUS LVDS on DT8MCustomBoard 1.x
emmc_burn_android_imx8mp_var_dart_dt8mcustomboard_legacy_hdmi.lst  - Supports Variscite DART-MX8M-PLUS HDMI on DT8MCustomBoard 1.x


Android 14 V1.0 UUU

Copy Variscite's uuu scripts to the Android build output folder:

$ cp ~/var_imx-o8.1.0_1.3.0_8m/android_build/device/variscite/scripts/uuu_scripts/* out/target/product/dart_mx8mp/

And run uuu to program the eMMC:

$ sudo ./uuu <uuu script>.lst

where <uuu script> should be one of the following:

emmc_burn_android_imx8mp_var_dart_dt8mcustomboard_basler_isi0.lst - Supports DART-MX8M-PLUS on DT8MCustomBoard 2.x and above, with LVDS and Basler VCAM-AR1335B camera
emmc_burn_android_imx8mp_var_dart_dt8mcustomboard_basler_isp0.lst - Supports DART-MX8M-PLUS on DT8MCustomBoard 2.x and above, with LVDS and Basler VCAM-AR0821B camera
emmc_burn_android_imx8mp_var_dart_dt8mcustomboard.lst - Supports DART-MX8M-PLUS on DT8MCustomBoard 2.x and above, with LVDS
emmc_burn_android_imx8mp_var_som_1.x_symphony_2nd_ov5640.lst - Supports VAR-SOM-MX8M-PLUS V1.x on Symphony-Board, with LVDS and 2nd OV5640
emmc_burn_android_imx8mp_var_som_1.x_symphony_basler_isi0.lst - Supports VAR-SOM-MX8M-PLUS V1.x on Symphony-Board, with LVDS and Basler VCAM-AR1335B camera
emmc_burn_android_imx8mp_var_som_1.x_symphony_basler_isp0.lst - Supports VAR-SOM-MX8M-PLUS V1.x on Symphony-Board, with LVDS and Basler VCAM-AR0821B camera
emmc_burn_android_imx8mp_var_som_1.x_symphony.lst - Supports VAR-SOM-MX8M-PLUS V1.x on Symphony-Board, with LVDS
emmc_burn_android_imx8mp_var_som_symphony_2nd_ov5640.lst - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS and 2nd OV5640
emmc_burn_android_imx8mp_var_som_symphony_basler_isi0.lst - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS and Basler VCAM-AR1335B camera
emmc_burn_android_imx8mp_var_som_symphony_basler_isp0.lst - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS and Basler VCAM-AR0821B camera
emmc_burn_android_imx8mp_var_som_symphony.lst - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS
emmc_burn_android_imx8mp_var_som_wbe_symphony_2nd_ov5640.lst - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS, WBE and 2nd OV5640
emmc_burn_android_imx8mp_var_som_wbe_symphony_basler_isi0.lst - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS, WBE and Basler VCAM-AR1335B camera
emmc_burn_android_imx8mp_var_som_wbe_symphony_basler_isp0.lst - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS, WBE and Basler VCAM-AR0821B camera
emmc_burn_android_imx8mp_var_som_wbe_symphony.lst - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS and WBE

optional <uuu script> for Android build with Trusty OS support enabled:

emmc_burn_android_imx8mp_var_dart_dt8mcustomboard_trusty.lst - Supports DART-MX8M-PLUS on DT8MCustomBoard 2.x and above, with LVDS and Trusty OS
emmc_burn_android_imx8mp_var_som_1.x_symphony_trusty.lst - Supports VAR-SOM-MX8M-PLUS V1.x on Symphony-Board, with LVDS and Trusty OS
emmc_burn_android_imx8mp_var_som_symphony_trusty.lst - Supports VAR-SOM-MX8M-PLUS on Symphony-Board, with LVDS and Trusty OS


Android 11 V1.2.0 V1.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mp/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mp/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mp/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mp/boot.img
$ sudo `which fastboot` flash vendor_boot_a out/target/product/dart_mx8mp/vendor_boot.img
$ sudo `which fastboot` flash vendor_boot_b out/target/product/dart_mx8mp/vendor_boot.img
$ sudo `which fastboot` flash super out/target/product/dart_mx8mp/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mp/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mp/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` reboot


Android 11 V2.2.0 V1.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mp/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mp/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mp/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mp/boot.img
$ sudo `which fastboot` flash vendor_boot_a out/target/product/dart_mx8mp/vendor_boot.img
$ sudo `which fastboot` flash vendor_boot_b out/target/product/dart_mx8mp/vendor_boot.img
$ sudo `which fastboot` flash super out/target/product/dart_mx8mp/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mp/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mp/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` reboot


Android 13 V1.0 fastboot

$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mp/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mp/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mp/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mp/boot.img
$ sudo `which fastboot` flash init_boot_a out/target/product/dart_mx8mp/init_boot.img
$ sudo `which fastboot` flash init_boot_b out/target/product/dart_mx8mp/init_boot.img
$ sudo `which fastboot` flash vendor_boot_a out/target/product/dart_mx8mp/vendor_boot.img
$ sudo `which fastboot` flash vendor_boot_b out/target/product/dart_mx8mp/vendor_boot.img
$ sudo `which fastboot` flash super out/target/product/dart_mx8mp/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mp/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mp/vbmeta-<name>.img --disable-verity
$ sudo `which fastboot` reboot


Android 14 V1.0 fastboot

$ sudo `which fastboot` flash bootloader_a out/target/product/dart_mx8mp/bootloader-imx8mp-var-dart-dual.img
$ sudo `which fastboot` flash bootloader_b out/target/product/dart_mx8mp/bootloader-imx8mp-var-dart-dual.img
$ sudo `which fastboot` flash dtbo_a out/target/product/dart_mx8mp/dtbo-<name>.img
$ sudo `which fastboot` flash dtbo_b out/target/product/dart_mx8mp/dtbo-<name>.img
$ sudo `which fastboot` flash boot_a out/target/product/dart_mx8mp/boot.img
$ sudo `which fastboot` flash boot_b out/target/product/dart_mx8mp/boot.img
$ sudo `which fastboot` flash init_boot_a out/target/product/dart_mx8mp/init_boot.img
$ sudo `which fastboot` flash init_boot_b out/target/product/dart_mx8mp/init_boot.img
$ sudo `which fastboot` flash vendor_boot_a out/target/product/dart_mx8mp/vendor_boot.img
$ sudo `which fastboot` flash vendor_boot_b out/target/product/dart_mx8mp/vendor_boot.img
$ sudo `which fastboot` flash super out/target/product/dart_mx8mp/super.img
$ sudo `which fastboot` flash vbmeta_a out/target/product/dart_mx8mp/vbmeta-<name>.img
$ sudo `which fastboot` flash vbmeta_b out/target/product/dart_mx8mp/vbmeta-<name>.img
$ sudo `which fastboot` reboot


Android 14 V1.0 trusty

Building Android with Trusty support enabled


Set PRODUCT_IMX_TRUSTY to true in ~/var_imx-android-14.0.0_1.0.0/android_build/device/variscite/imx8m/dart_mx8mp/SharedBoardConfig.mk
Follow the instructions from "Build Android Images" section

Note: To build Android with Trusty support for the DART-MX8M-PLUS machine you need to set TARGET_TEE_DART to true, e.g. from command line like this below:
TARGET_TEE_DART=true ./imx-make.sh -j4 2>&1 | tee build1-1.log 

The images from "Images created by the Android build" section will only be partially different for the bootloader.

Image
Description
spl-imx8mp-var-dart-trusty-dual.bin U-Boot SPL with Trusty related configurations for eMMC boot
for Android build with Trusty OS support enabled
to burn only to eMMC

DART-MX8M-PLUS needs TARGET_TEE_DART=true passed to the build

bootloader-imx8mp-var-dart-trusty-dual.img An image containing U-Boot proper, ATF and Trusty OS for eMMC boot
for Android build with Trusty OS support enabled
to burn only to eMMC

DART-MX8M-PLUS needs TARGET_TEE_DART=true passed to the build


VAR-SOM-AM62

AM62 Android 14 V 1.0 images

Image
Description
tiboot3-am62x-sk-hsfs.bin
tiboot3-am62x-sk.bin
tispl-am62x-sk.bin
u-boot-am62x-sk.img
Bootloader images for eMMC/SD card boot.
bootloader.img = (tispl.bin + u-boot.img).
boot.img Kernel Image + dtbs.
vendor_boot.img Vendor modules, vendor ramdisk.
init_boot.img Generic init ramdisk.
dtbo.img dtbo.img or dtbo-unsigned.img (list of overlays).
vbmeta.img With AVB feature or user images.
vbmeta_vendor_dlkm AVB info for vendor_dlkm.
persist.img Used for OP-TEE secure storage.
super.img Android super image file.(Contains system, vendor).


AM62 Android 14 V1.0 fastboot

$ sudo fastboot flash dtbo_a out/target/product/am62x_var_som/dtbo.img
$ sudo fastboot flash dtbo_b out/target/product/am62x_var_som/dtbo.img
$ sudo fastboot flash boot_a out/target/product/am62x_var_som/boot.img
$ sudo fastboot flash boot_b out/target/product/am62x_var_som/boot.img
$ sudo fastboot flash init_boot_a out/target/product/am62x_var_som/init_boot.img
$ sudo fastboot flash init_boot_b out/target/product/am62x_var_som/init_boot.img
$ sudo fastboot flash vendor_boot_a out/target/product/am62x_var_som/vendor_boot.img
$ sudo fastboot flash vendor_boot_b out/target/product/am62x_var_som/vendor_boot.img
$ sudo fastboot flash vbmeta_a out/target/product/am62x_var_som/vbmeta.img
$ sudo fastboot flash vbmeta_b out/target/product/am62x_var_som/vbmeta.img
$ sudo fastboot flash vbmeta_vendor_dlkm_a out/target/product/am62x_var_som/vbmeta_vendor_dlkm.img
$ sudo fastboot flash vbmeta_vendor_dlkm_b out/target/product/am62x_var_som/vbmeta_vendor_dlkm.img
$ sudo fastboot flash super out/target/product/am62x_var_som/super.img
$ sudo `which fastboot` reboot


AM62 Android 14 V1.0 SD Tree

/opt/images/
├── Android
│   ├── boot.img
│   ├── bootloader-am62x-sk.img
│   ├── dtbo.img
│   ├── init_boot.img
│   ├── metadata.img
│   ├── persist.img
│   ├── super_raw.img.gz
│   ├── tiboot3-am62x-sk.bin
│   ├── tiboot3-am62x-sk-hsfs.bin
│   ├── vbmeta.img
│   ├── vbmeta_vendor_dlkm.img
│   └── vendor_boot.img
└── Yocto
    ├── boot
    │   ├── tiboot3.bin
    │   ├── tispl.bin
    │   ├── u-boot.img
    │   └── uEnv.txt
    ├── rootfs.tar.zst -> var-default-image-am62x-var-som.tar.zst
    └── var-default-image-am62x-var-som.tar.zst


Release Notes

Based on release Google: [1] NXP BSP: Android O8.1.0_1.3.0
Release tag [2]
Release date
Supported platforms DART-MX8M
SOM revision
NXP BSP FTP imx-o8.1.0_1.3.0_8m.tar.gz
Variscite BSP git https://github.com/varigit/MX6x-android
Variscite BSP branch o8.1.0_1.3.0_8m-ga-var01
Kernel git https://github.com/varigit/linux-imx
Kernel branch o8.1.0_1.3.0_8m-ga_var01
U-Boot git https://github.com/varigit/uboot-imx
U-Boot branch imx_v2017.03_4.9.51_imx8m_ga_var01
File System build system Android
Recovery SD card link dart-mx8m-recovery-sd.v14.img.gz

Platform Customizations

VAR-SOM-MX6

  • RELEASE_NAME = o8.0.0_1.0.0-ga-v1.0
  • RELEASE_LINK = RELEASE_O8.0.0_1.0.0_VAR-SOM-MX6
  • ANDROID_NAME = Oreo
  • ANDROID_VERSION = O8.0.0_r25
  • NXP_BSP_VERSION = IMX6_8.0.0_1.0.0_ANDROID
  • RECOVERY_SD_NAME = mx6__yocto-kirkstone-5.15.71_2.2.0-v1.0__android-8.0.0_1.0.0-v1.0.wic.gz
  • RECOVERY_SD_URL = https://variscite-public.nyc3.cdn.digitaloceanspaces.com/VAR-SOM-MX6/Software
  • RELEASE_NOTES_LINK = https://variwiki.com/index.php?title=VAR-SOM-MX6_Release_Notes&release=RELEASE_O8.0.0_1.0.0_VAR-SOM-MX6
  • MACHINE_NAME = var-som-mx6
  • KERNEL_GIT = https://github.com/varigit/linux-imx
  • KERNEL_BRANCH = o8.0.0_1.0.0-ga_var01
  • KERNEL_IMAGE = uImage
  • KERNEL_DEFCONFIG = imx_v7_var_android_defconfig
  • U-BOOT_GIT = https://github.com/varigit/uboot-imx.git
  • U-BOOT_BRANCH = imx_v2017.03_4.9.11_1.0.0_ga_var01
  • U-BOOT_SD_DEFCONFIG = mx6var_som_sd_android_defconfig
  • U-BOOT_NAND_DEFCONFIG = mx6var_som_nand_android_defconfig
  • U-BOOT_SD_IMAGE_NAME = u-boot.img-sd
  • U-BOOT_NAND_IMAGE_NAME = u-boot.img-nand
  • SPL_SD_IMAGE_NAME = SPL-sd
  • SPL_NAND_IMAGE_NAME = SPL-nand
  • YOCTO_GIT = https://github.com/varigit/variscite-bsp-platform.git
  • YOCTO_META_GIT = '
  • YOCTO_BRANCH = rocko
  • YOCTO_BUILD_RESULTS_SECTION = VAR-SOM-MX6_BUILD_RESULTS
  • YOCTO_BOOT_BOARD_SECTION = VAR-SOM-MX6_BOOT_BOARD
  • KERNEL_DTB_SECTION = VAR-SOM-MX6_DTB
  • SD_TREE_SECTION = VAR-SOM-MX6_SD_TREE
  • YOCTO_FLASH_SD_FROM_GUI_SECTION = '
  • EMMC_FAT_PARTITION_NAME = BOOT-VARMX6
  • EMMC_ROOTFS_DEV = mmcblk0
  • EMMC_ROOTFS_PARTITION_NUM = p1
  • NAND_ROOTFS_DEV = mtd3
  • QT_PLATFORM_PLUGIN = eglfs
  • RAM_LOAD_ADDRESS = 0x18100000
  • UBOOT_CONFIG_FILE = include/configs/mx6var_som.h
  • UBOOT_PAD_SIZE = 0x1e0000
  • KERNEL_PAD_SIZE = 0x800000
  • DTB_START_ADDRESS = 0x3e0000

DART-MX8M

RELEASE_O8.1.0_1.3.0_8M_DART-MX8M

  • RELEASE_NAME = morty-imx-4.9.51-v1.0
  • RELEASE_LINK = RELEASE_O8.1.0_1.3.0_8M_DART-MX8M
  • ANDROID_NAME = Oreo
  • ANDROID_VERSION = Android O8.1.0_r14
  • ANDROID_FASTBOOT_NEED_UNLOCK = true
  • NXP_BSP_VERSION = imx_8.1.0_1.3.0_8m_ANDROID
  • RECOVERY_SD_NAME = dart-mx8m-recovery-sd.v14.img.gz
  • RECOVERY_SD_URL = https://variscite-public.nyc3.cdn.digitaloceanspaces.com/DART-MX8M/Software
  • RELEASE_NOTES_LINK = TBD
  • MACHINE_NAME = imx8m-var-dart
  • KERNEL_GIT = https://github.com/varigit/linux-imx
  • KERNEL_BRANCH = o8.1.0_1.3.0_8m-ga_var01
  • KERNEL_IMAGE = zImage
  • KERNEL_DEFCONFIG = imx8m_var_dart_android_defconfig
  • U-BOOT_GIT = https://github.com/varigit/uboot-imx.git
  • U-BOOT_BRANCH = imx_v2017.03_4.9.51_imx8m_ga_var01
  • U-BOOT_SD_DEFCONFIG = imx8m_var_dart_config
  • U-BOOT_SD_IMAGE_NAME = u-boot-imx8m-var-dart.imx
  • YOCTO_BUILD_RESULTS_SECTION = DART-MX8M_BUILD_RESULTS
  • YOCTO_BOOT_BOARD_SECTION = DART-MX8M_BOOT_BOARD
  • KERNEL_DTB_SECTION = DART-MX8M_DTB
  • SD_TREE_SECTION = DART-MX8M_SD_TREE_MORTY
  • EMMC_ROOTFS_DEV = mmcblk0
  • EMMC_ROOTFS_PARTITION_NUM = p0
  • UBOOT_CONFIG_FILE = include/configs/imx8m_var_dart.h

RELEASE_P9.0.0_1.0.0_GA_DART-MX8M

RELEASE_P9.0.0_2.0.0_GA_DART-MX8M

RELEASE_Q10.0.0_1.0.0_GA_DART-MX8M

RELEASE_10.0.0_2.3.0_GA_DART-MX8M

RELEASE_10.0.0_2.3.0_GA_DART-MX8M_V1.1

RELEASE_10.0.0_2.3.0_GA_DART-MX8M_V1.2

RELEASE_11.0.0_1.0.0_DART-MX8M

RELEASE_11.0.0_1.0.0_DART-MX8M_V1.1

RELEASE_11.0.0_1.0.0_DART-MX8M_V1.2

RELEASE_11.0.0_1.0.0_DART-MX8M_V1.3
















DART-MX8M-MINI

RELEASE_P9.0.0_1.0.0_GA_DART-MX8M-MINI

RELEASE_P9.0.0_2.0.0_GA_DART-MX8M-MINI

RELEASE_Q10.0.0_1.0.0_GA_DART-MX8M-MINI

RELEASE_Q10.0.0_1.0.0_GA_DART-MX8M-MINI_V1.3

RELEASE_Q10.0.0_1.0.0_GA_DART-MX8M-MINI_V1.4

RELEASE_Q10.0.0_1.0.0_GA_DART-MX8M-MINI_V1.5

RELEASE_Q10.0.0_1.0.0_GA_DART-MX8M-MINI_V1.6

RELEASE_Q10.0.0_1.0.0_GA_DART-MX8M-MINI_V1.7

RELEASE_10.0.0_2.6.0_DART-MX8M-MINI_V1.0

RELEASE_11.0.0_1.0.0_V1.0_DART-MX8M-MINI

RELEASE_11.0.0_1.0.0_V1.1_DART-MX8M-MINI

RELEASE_11.0.0_2.4.0_V1.0_DART-MX8M-MINI

RELEASE_11.0.0_2.4.0_V1.1_DART-MX8M-MINI


RELEASE_11.0.0_2.4.0_V1.2_DART-MX8M-MINI

RELEASE_11.0.0_2.4.0_V1.3_DART-MX8M-MINI


RELEASE_11.0.0_2.4.0_V1.4_DART-MX8M-MINI

RELEASE_11.0.0_2.6.0_V1.0_DART-MX8M-MINI

RELEASE_11.0.0_2.6.0_V1.1_DART-MX8M-MINI





















VAR-SOM-MX8X

RELEASE_P9.0.0_2.0.0_GA_VAR-SOM-MX8X

  • RELEASE_NAME = sumo-imx-4.14.98-v1.0
  • RELEASE_LINK = RELEASE_P9.0.0_2.0.0_GA_VAR-SOM-MX8X
  • ANDROID_NAME = Pie
  • ANDROID_VERSION = Android P9.0.0_r30
  • ANDROID_FASTBOOT_NEED_UNLOCK = true
  • NXP_BSP_VERSION = imx_9.0.0_2.0.0_ga_ANDROID
  • RECOVERY_SD_NAME = var-som-mx8x-recovery-sd.v15.img.gz
  • RECOVERY_SD_URL = https://variscite-public.nyc3.cdn.digitaloceanspaces.com/VAR-SOM-MX8X/Software
  • RELEASE_NOTES_LINK = TBD
  • MACHINE_NAME = imx8m-var-dart
  • KERNEL_GIT = https://github.com/varigit/linux-imx
  • KERNEL_BRANCH = p9.0.0_2.0.0-ga_var01
  • KERNEL_IMAGE = zImage
  • KERNEL_DEFCONFIG = imx8_var_android_defconfig
  • U-BOOT_GIT = https://github.com/varigit/uboot-imx.git
  • U-BOOT_BRANCH = imx_v2018.03_4.14.98_2.0.0_ga_var01
  • U-BOOT_SD_DEFCONFIG = imx8qxp_var_som_android_defconfig
  • U-BOOT_SD_IMAGE_NAME = u-boot-imx8qxp.imx
  • YOCTO_BUILD_RESULTS_SECTION = DART-MX8M_BUILD_RESULTS
  • YOCTO_BOOT_BOARD_SECTION = DART-MX8M_BOOT_BOARD
  • KERNEL_DTB_SECTION = DART-MX8M_DTB
  • SD_TREE_SECTION = VAR-SOM-MX8X_SD_TREE_SUMO
  • EMMC_ROOTFS_DEV = mmcblk0
  • EMMC_ROOTFS_PARTITION_NUM = p0
  • UBOOT_CONFIG_FILE = include/configs/imx8qxp_var_som_android.h

RELEASE_P9.0.0_2.3.4_GA_VAR-SOM-MX8X

RELEASE_P9.0.0_2.3.4_GA_VAR-SOM-MX8X_V2.4

RELEASE_10.0.0_2.5.0_VAR-SOM-MX8X_V1.0

RELEASE_10.0.0_2.5.0_VAR-SOM-MX8X_V1.1

RELEASE_11.0.0_1.0.0_VAR-SOM-MX8X_V1.0


RELEASE_11.0.0_1.0.0_VAR-SOM-MX8X_V1.1

RELEASE_11.0.0_1.0.0_VAR-SOM-MX8X_V1.2




VAR-SOM-MX8

RELEASE_P9.0.0_2.0.0_GA_VAR-SOM-MX8

  • RELEASE_NAME = p9.0.0_2.0.0-ga_var-som-mx8_v21
  • RELEASE_LINK = RELEASE_P9.0.0_2.0.0_GA_VAR-SOM-MX8
  • ANDROID_NAME = Pie
  • ANDROID_VERSION = Android P9.0.0_r30
  • ANDROID_FASTBOOT_NEED_UNLOCK = true
  • NXP_BSP_VERSION = imx_9.0.0_2.0.0_ga_ANDROID
  • RECOVERY_SD_NAME = var-som-mx8-recovery-sd.v22.img.gz
  • RECOVERY_SD_URL = https://variscite-public.nyc3.cdn.digitaloceanspaces.com/VAR-SOM-MX8/Software
  • RELEASE_NOTES_LINK = TBD
  • MACHINE_NAME = imx8m-var-dart
  • KERNEL_GIT = https://github.com/varigit/linux-imx
  • KERNEL_BRANCH = p9.0.0_2.0.0-ga_var01
  • KERNEL_IMAGE = zImage
  • KERNEL_DEFCONFIG = imx8_var_android_defconfig
  • U-BOOT_GIT = https://github.com/varigit/uboot-imx.git
  • U-BOOT_BRANCH = imx_v2018.03_4.14.98_2.0.0_ga_var01
  • U-BOOT_SD_DEFCONFIG = imx8qm_var_som_android_defconfig
  • U-BOOT_SD_IMAGE_NAME = u-boot-imx8qm.imx
  • YOCTO_BUILD_RESULTS_SECTION = DART-MX8M_BUILD_RESULTS
  • YOCTO_BOOT_BOARD_SECTION = VAR-SOM-MX8_BOOT_BOARD
  • KERNEL_DTB_SECTION = VAR-SOM-MX8_DTB
  • SD_TREE_SECTION = VAR-SOM-MX8_SD_TREE_SUMO
  • EMMC_ROOTFS_DEV = mmcblk0
  • EMMC_ROOTFS_PARTITION_NUM = p0
  • UBOOT_CONFIG_FILE = include/configs/imx8qm_var_som_android.h

RELEASE_10.0.0_2.5.0_VAR-SOM-MX8

RELEASE_11.0.0_1.0.0_VAR-SOM-MX8

RELEASE_11.0.0_1.0.0_V1.1VAR-SOM-MX8

RELEASE_11.0.0_1.0.0_V1.2VAR-SOM-MX8







VAR-SOM-MX8M-NANO

RELEASE_P9.0.0_2.3.4_GA_VAR-SOM-MX8M-NANO

RELEASE_10.0.0_2.3.0_GA_VAR-SOM-MX8M-NANO

RELEASE_10.0.0_2.3.0_GA_VAR-SOM-MX8M-NANO_V1.1

RELEASE_10.0.0_2.3.0_GA_VAR-SOM-MX8M-NANO_V1.2

RELEASE_10.0.0_2.3.0_GA_VAR-SOM-MX8M-NANO_V1.3

RELEASE_10.0.0_2.3.0_GA_VAR-SOM-MX8M-NANO_V1.4

RELEASE_10.0.0_2.3.0_GA_VAR-SOM-MX8M-NANO_V1.5

RELEASE_11.0.0_1.0.0_VAR-SOM-MX8M-NANO_V1.0

RELEASE_11.0.0_1.0.0_VAR-SOM-MX8M-NANO_V1.1

RELEASE_11.0.0_2.6.0_VAR-SOM-MX8M-NANO_V1.0

RELEASE_11.0.0_2.6.0_VAR-SOM-MX8M-NANO_V1.1


RELEASE_11.0.0_2.6.0_VAR-SOM-MX8M-NANO_V1.2










DART-MX8M-PLUS

RELEASE_10.0.0_2.5.0_DART-MX8M-PLUS

RELEASE_10.0.0_2.6.0_V1.0_DART-MX8M-PLUS

RELEASE_10.0.0_2.6.0_V1.1_DART-MX8M-PLUS

RELEASE_10.0.0_2.6.0_V1.2_DART-MX8M-PLUS

RELEASE_10.0.0_2.6.0_V1.3_DART-MX8M-PLUS

RELEASE_11.0.0_1.2.0_V1.0_DART-MX8M-PLUS

RELEASE_11.0.0_2.2.0_V1.0_DART-MX8M-PLUS

RELEASE_11.0.0_2.2.0_V1.1_DART-MX8M-PLUS


RELEASE_11.0.0_2.2.0_V1.2_DART-MX8M-PLUS

RELEASE_11.0.0_2.6.0_V1.0_DART-MX8M-PLUS

































VAR-SOM-AM62

am62-android-13_09.00.00-v1.0

am62-android-14_09.02.00-v1.0