This document describes how Embedian builds a customized version of NXP’s i.MX8M official Yocto Mickledore Desktop BSP (Ubuntu 22.04) release for Embedian’s SMARC-iMX8M product platform. The approach is to pull from Embedian’s Github repository and build that using bitbake. The reason why we use this approach is that it allows co-development. The build output is comprised of binary images, feed packages, and an SDK for SMARC-iMX8M specific development. Once it’s done, user can use Ubuntu apt-get install
command to add additional packages.

NXP makes their i.MX series official bsp build scripts available via the following GIT repository:
Freescale community BSP release build script is available via the following repository:
It is this repository that actually pulls in the meta-imx/meta-bsp project to perform the Linux BSP builds for NXP’s i.MX8M ARM Cortext-A53 chips.
Overview of the meta-embedian Yocto Layer
The supplied meta-embedian Yocto compliant layer has the following organization:
.
|-- conf
| |-- layer.conf
| |-- machine
| |-- include
| | |-- imx8mp-emb.inc
| |-- pitximx8mp2gdesktop.conf
| |-- pitximx8mp4gdesktop.conf
| |-- pitximx8mp6gdesktop.conf
| |-- smarcimx8qm8gdesktop.conf
| |-- smarcimx8qm4gdesktop.conf
| |-- smarcimx8mp6gdesktop.conf
| |-- smarcimx8mp4gdesktop.conf
| |-- smarcimx8mp2gdesktop.conf
| |-- smarcimx8mq4gdesktop.conf
| | `-- smarcimx8mq2gdesktop.conf
|-- README
|-- recipes-bsp
| |-- u-boot
| |-- u-boot-imx-common_2023.04.inc
| `-- u-boot-imx_2023.04.bb
| |-- imx-atf
| `-- imx-atf_2.8.bbappend
| | |-- imx-atf
| | | `-- imx8mm-atf-uart4.patch
| |-- imx-sc-firmware
| `-- imx-sc-firmware_%.bbappend
| | |-- imx-sc-firmware
| | | |-- mx8qm-smarc-8g-scfw-tcm.bin
| | | `-- mx8qm-smarc-4g-scfw-tcm.bin
| |-- alsa-state
| | |-- alsa-state
| | | `-- asound.state
| `-- alsa-state.bbappend
| |-- pm-utils
| `-- pm-utils_%.bbappend
| |-- imx-mkimage
| `-- imx-boot_1.0.bbappend
|-- recipes-core
| |-- busybox
| `-- busybox_%.bbappend
| | |-- busybox
| | | |-- ftpget.cfg
| | | `-- defconfig
| |-- base-files
| `-- base-files_%.bbappend
| | |-- base-files
| | | |-- issue
| | | `-- issue.net
| |-- systemd
| `-- systemd-serialgetty.bbappend
| | |-- systemd-serialgetty
| | | |-- disable-serialgetty.service
| | | `-- disable-serialgetty.sh
| |-- packagegroups
| `-- packagegroup-core-tools-testapps.bbappend
| |-- psplash
| `-- psplash_git.bbappend
| | |-- files
| | | |-- 0001-psplash-Change-colors-for-the-Embedian-Yocto-logo.patch
| | | |-- psplash-poky.png
| | | `-- psplash-bar.png
| |-- udev
| | |-- files
| | | | `-- usb-power.rules
| `-- udev-rules-imx.bbappend
|-- recipes-kernel
| |-- linux
| `-- linux-imx.bb
`-- scripts
| `-- emb_mk_yocto_sdcard
Notes on meta-embedian layer content
conf/machine/*
This folder contains the machine definitions for all Embedian’s platform and backup repository in Embedian. These select the associated kernel, kernel config, u-boot, u-boot config, and tar.bz2 image settings.
recipes-bsp/u-boot/*
This folder contains recipes used to build DAS U-boot for all Embedian’s platform.
recipes-bsp/imx-atf/*
This folder contains recipes used to enable console port for Embedian’s i.MX8MM and pITX-MX8M-Plus platform.
recipes-bsp/imx-sc-firmware/*
This folder contains system control firmware binary for Embedian’s i.MX8QM platform.
recipes-bsp/alsa-state/*
This folder contains sgtl5000 sound chip default state for all Embedian’s platform.
recipes-bsp/imx-mkimage/*
This folder contains imx-mkimage tool for Embedian’s i.MX93, i.MX8MQ, i.MX8MM, i.MX8QM, i.MX8MP platform.
recipes-core/busybox/*
This folder remove telnetd from bysybox for all Embedian’s platform.
recipes-core/psplash/*
This folder customized Yocto boot psplash for all Embedian’s platform.
recipes-kernel/linux/*
Contains the recipes needed to build for all Embedian’s platform Linux kernels.
Setting Up the Tools and Build Environment
To build the latest NXP i.MX8M meta-bsp, you first need an Ubuntu 20.04 or 22.04 LTS installation. Since bitbake does not accept building images using root privileges, please do not login as a root user when performing the instructions in this section.
Once you have Ubuntu 20.04 or 22.04 LTS running, install the additional required support packages using the following console command:
$ sudo apt install gawk wget git diffstat unzip texinfo gcc build-essential chrpath socat cpio python3 python3-pip python3-pexpect xz-utils debianutils iputils-ping python3-git python3-jinja2 libegl1-mesa libsdl1.2-dev python3-subunit mesa-common-dev zstd liblz4-tool file libssl-dev pv device-tree-compiler locales -y
$ sudo locale-gen en_US.UTF-8
To get the BSP you need to have ‘repo’ installed and use it as:
Install the ‘repo’ utility:
$ mkdir ~/bin
$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$ chmod a+x ~/bin/repo
$ export PATH=~/bin:$PATH
Download the BSP Yocto Project Environment.
$ mkdir ~/mickledore-desktop
$ cd ~/mickledore-desktop
$ repo init -u https://github.com/nxp-imx/imx-manifest -b imx-linux-mickledore -m imx-6.1.55-2.2.0_desktop.xml
$ repo sync
Download the Embedian Yocto build script and meta layer.
$ wget ftp://ftp.embedian.com/public/dev/minfs/mickledore/emb-imx-setup-release.sh
$ wget ftp://ftp.embedian.com/public/dev/minfs/mickledore/emb-imx-setup-desktop.sh
$ chmod 444 emb-imx-setup-desktop.sh
$ cd sources
$ git clone https://github.com/embedian/meta-embedian.git -b mickledore-6.1.55_2.2.0_desktop
$ cd ~/mickledore-desktop
$ DISTRO=fsl-imx-xwayland MACHINE=smarcimx8mq4gdesktop source emb-imx-setup-desktop.sh -b build-desktop
Choose “y” to accept EULA.
This script will create and bring you to ~/mickledore-desktop/build-xwayland directory.
Notes
The last line of the above script
$ DISTRO=imx-desktop-xwayland MACHINE=<machine name> source emb-imx-setup-desktop.sh -b <build dir
1.
<machine name>
– smarcimx8mq2gdesktop - if your board is quad core i.MX8M and 2GB LPDDR4.
– smarcimx8mq4gdesktop - if your board is quad core i.MX8M and 4GB LPDDR4.
The default console debug port is
SER3.
In this document, we will use smarcimx8mq4gdesktop as the example of machine name. Users need to change different machine name if you have different SMARC card variants.
Building the Target Platforms
To build Embedian/Freescale Yocto BSP, use the following commands:
$ MACHINE=smarcimx8mq4gdesktop bitbake -k imx-image-desktop
Once it done, you can find all required images under ~/mickledore-desktop/<build directory>/tmp/deploy/images/<machine name>/
Once the build(s) are completed, you will find the resulting images, rpm and licenses in folder ~/mickledore-desktop/<build directory>/tmp/deploy
.
deploy/images/<machine name>/imx-image-desktop-<machine name>*
This folder contains the binary images for the root file system and the Embedian SMARC-iMX8M specific version of the boot file, Image and device tree file. Specifically the images are:
deploy/images/<machine name>/imx-boot-<machine name>-sd.bin-flash_singleboot
This is boot file binary for SMARC-iMX8M.
deploy/images/<machine name>/Image
The kernel Image for SMARC-iMX8M.
deploy/images/<machine name>/<device tree file>
Selecting display configuration is a matter of selecting an appropriate DTB file under deploy/images/<machine name>/<device tree file>
All available DTB files are listed in the table below.
DTB FILENAME | DESCRIPTION |
imx8mq-smarc.dtb | Device tree blob for no display configuration. |
imx8mq-smarc-hdmi.dtb | Device tree blob for HDMI display configuration. (DCSS) |
imx8mq-smarc-dp.dtb | Device tree blob for Display Port (DP) display configuration. (DCSS) |
imx8mq-smarc-lcdif-lvds.dtb | Device tree blob for LCDIF LVDS display configuration. |
imx8mq-smarc-dcss-lvds.dtb | Device tree blob for DCSS LVDS display configuration. |
imx8mq-smarc-dual-display.dtb | Device tree blob for dual (LVDS and HDMI) display configuration. |
deploy/images/<machine name>/imx-image-desktop-<machine name>.*
Embedian Ubuntu 22.04 root file system images for software development on Embedian’s SMARC-iMX8M platforms.
deploy/rpm/*
This folder contains all the packages used to construct the root file system images. They are in rpm format and can be dynamically installed on the target platform without reflashing the file system:
deploy/licenses/*
A database of all licenses used in all packages built for the system.
Setup SD Card Manually
For these instruction, we are assuming: DISK=/dev/mmcblk0, “lsblk” is very useful for determining the device id.
$ export DISK=/dev/mmcblk0
Erase SD card:
$ sudo dd if=/dev/zero of=${DISK} bs=1M count=160
Create Partition Layout: Leave 2MB offset for boot file. With util-linux v2.26, sfdisk was rewritten and is now based on libfdisk.
(sfdisk)
$ sudo sfdisk --version
sfdisk from util-linux 2.34
Create Partitions:
(sfdisk >=2.26.x)
$ sudo sfdisk ${DISK} <<-__EOF__
2M,48M,0x83,*
50M,,,
__EOF__
Format Partitions:
for: DISK=/dev/mmcblk0$ sudo mkfs.vfat -F 16 ${DISK}p1 -n boot
$ sudo mkfs.ext4 ${DISK}p2 -L rootfs
for: DISK=/dev/sdX$ sudo mkfs.vfat -F 16 ${DISK}1 -n boot
$ sudo mkfs.ext4 ${DISK}2 -L rootfs
Mount Partitions:
On some systems, these partitions may be auto-mounted…
$ sudo mkdir -p /media/boot/
$ sudo mkdir -p /media/rootfs/
for: DISK=/dev/mmcblk0$ sudo mount ${DISK}p1 /media/boot/
$ sudo mount ${DISK}p2 /media/rootfs/
for: DISK=/dev/sdX$ sudo mount ${DISK}1 /media/boot/
$ sudo mount ${DISK}2 /media/rootfs/
Boot file is factory default flashed at on-module eMMC flash.
Install Boot File (
)imx-boot-<machine name>-sd.bin-flash_evk
In some cases, when eMMC flash is erased or the u-boot is under development, we need a way to boot from SD card first. Users need to shunt cross the TEST# pin to ground. In this way, SMARC-iMX8M will always boot up from SD card.
Write flash.bin to SD card.
~/mickledore-desktop/<build dir>/tmp/deploy/images/<machine name>/
$ sudo dd if=<boot file> of=${DISK} bs=1024 seek=33
The <boot file> is pre-installed in on-module eMMC flash at factory default. SMARC-iMX8M is designed to always boot up from on-module eMMC flash and to load Image, device tree blob and root file systems based on the setting of BOOT_SEL. If users need to fuse your own flash.bin or perform u-boot upgrade. This section will instruct you how to do that.
Copy <boot file> to the second partition home directory of your SD card and boot into SD card. Go to home directory and you should see flash.bin file.
~/mickledore-desktop/<build dir>/tmp/deploy/images/<machine name>/
$ sudo cp -v <boot file> /media/rootfs/home/root/
Write <boot file> to the on-module eMMC flash. (The eMMC flash is emulated as /dev/mmcblk0 in SMARC-iMX8MQ.)
(home directory of device)
$
sudo dd if=<boot file> of=/dev/mmcblk0 bs=1024 seek=33
Notes
1. imx-boot-smarcimx8mq4g-sd.bin-flash_dp_evk
is boot file with DisplayPort, imx-boot-smarcimx8mq4g-sd.bin-flash_evk
is boot file with HDMI and imx-boot-smarcimx8mq4g-sd.bin-flash_evk_no_hdmi
is boot file without any displays.
2. If your u-boot hasn’t been finalized and still under development, it is recommended to shunt cross the test pin and boot directly from SD card first (shunt cross TEST# to GND). Once your u-boot is fully tested and finalized, you can fuse your <boot file> to eMMC flash.
3. When TEST# pin of SMARC-iMX8M is not shunt crossed, it will always boot up from on-module eMMC flash. U-boot will read the BOOT_SEL configuration and determine where it should load Image and device tree blob. When TEST# is shunt crossed (pull low), it will always boot up from SD card.
Install uEnv.txt based bootscript
Create “uEnv.txt” boot script: ($ vim uEnv.txt)
~/uEnv.txt
optargs="video=HDMI-A-1:1920x1080-32@60 consoleblank=0"
#optargs="video=HDMI-A-1:3840x2160-32@30 consoleblank=0"
#optargs="video=HDMI-A-1:3840x2160-32@60 consoleblank=0"
#console port SER3
console=ttymxc0,115200 earlycon=ec_imx6q,0x30860000,115200
#console port SER2
#console=ttymxc1,115200 earlycon=ec_imx6q,0x30890000,115200
#console port SER1
#console=ttymxc2,115200 earlycon=ec_imx6q,0x30880000,115200
#console port SER0
#console=ttymxc3,115200 earlycon=ec_imx6q,0x30A60000,115200
mmcdev=1
mmcpart=1
image=Image
loadaddr=0x40480000
fdt_addr=0x43000000
mmcroot=/dev/mmcblk1p2 rw
usbroot=/dev/sda2 rw
mmcrootfstype=ext4 rootwait fixrtc
netdev=eth0
ethact=FEC0
ipaddr=192.168.1.150
serverip=192.168.1.53
gatewayip=192.168.1.254
mmcargs=setenv bootargs ${mcore_clk} console=${console} root=${mmcroot} rootfstype=${mmcrootfstype} ${optargs}
uenvcmd=run loadimage; run loadfdt; run mmcboot
# USB Boot
#usbargs=setenv bootargs console=${console} root=${usbroot} rootfstype=${mmcrootfstype} ${optargs}
#uenvcmd=run loadusbimage; run loadusbfdt; run usbboot
Copy uEnv.txt to the boot partition:
~/
$
sudo cp -v ~/uEnv.txt /media/boot/
Install Linux Kernel Image
Copy Image to the boot partition:
~/mickledore-desktop/<build dir>/tmp/deploy/images/<machine name>/
$ sudo cp -v Image /media/boot/
Install Linux Kernel Device Tree Binary
~/mickledore-desktop/<build dir>/tmp/deploy/images/<machine name>/
$ sudo mkdir -p /media/boot/dtbs
$ sudo cp -v <device tree binary> /media/boot/dtbs/imx8mq-smarc.dtb
All available DTB binary files are listed in the table below.
DTB FILENAME | DESCRIPTION |
imx8mq-smarc.dtb | Device tree blob for no display configuration. |
imx8mq-smarc-hdmi.dtb | Device tree blob for HDMI display configuration. (DCSS) |
imx8mq-smarc-dp.dtb | Device tree blob for Display Port (DP) display configuration. (DCSS) |
imx8mq-smarc-lcdif-lvds.dtb | Device tree blob for LCDIF LVDS display configuration. |
imx8mq-smarc-dcss-lvds.dtb | Device tree blob for DCSS LVDS display configuration. |
imx8mq-smarc-dual-display.dtb | Device tree blob for dual (LVDS and HDMI) display configuration. |
Notes
The device tree name in your SD card has be to imx8mq-smarc.dtb
Install Root Filesystem
Extract the Yocto built root filesystem to your SD card
~/mickledore-desktop/<build dir>/tmp/deploy/images/<machine name>/
$ sudo tar jxvf <filename.tar.bz2> -C /media/rootfs
Notes
1. SMARC-iMX8M always boots up from on-module eMMC flash first. The boot file in eMMC flash is factory pre-installed from Embedian. It will read the BOOT_SEL configuration that defined by SMARC specification on your carrier board and load Image and device tree blob from the partition one of the device (could be SD card, eMMC, GBE,..etc) that you selected.
2. MAC address is factory pre-installed at on board I2C EEPROM at offset 60 bytes. It starts with Embedian’s vendor code 10:0D:32. u-boot will read it and pass this parameter to kernel.
3. The kernel modules is included in the Yocto rootfs.
Remove SD card:
$ sync
$ sudo umount /media/boot
$ sudo umount /media/rootfs
Setup SD Card Automatically
This section tells you how to set up an SD card automatically. It mainly uses a script to do all the steps in the above section.
$ cd ~/mickledore-desktop
$ sudo MACHINE=smarcimx8mq4gdesktop sources/meta-embedian/scripts/emb_mk_yocto_sdcard/emb-create-yocto-sdcard.sh /dev/sdX
Shunt cross TEST# pin to ground and set the BOOT_SEL to ON OFF OFF. The module will boot up from SD card.
Writing Bitbake Recipes
In order to package your application and include it in the root filesystem image, you must write a BitBake recipe for it.
When starting from scratch, it is easiest to learn by example from existing recipes.
Example HelloWorld recipe using autotools
For software that uses autotools (./configure; make; make install), writing recipes can be very simple:
DESCRIPTION = "Hello World Recipe using autotools"
HOMEPAGE = "http://www.embedian.com/"
SECTION = "console/utils"
PRIORITY = "optional"
LICENSE = "GPL"
PR = "r0"
SRC_URI = "git://github.com/embedian/helloworld-autotools.git;protocol=https"
S = "${WORKDIR}/git"
inherit autotools
SRC_URI
specifies the location to download the source from. It can take the form of any standard URL using http://, ftp://, etc. It can also fetch from SCM systems, such as git in the example above.
PR
is the package revision variable. Any time a recipe is updated that should require the package to be rebuilt, this variable should be incremented.
inherit autotools
brings in support for the package to be built using autotools, and thus no other instructions on how to compile and install the software are needed unless something needs to be customized.
S
is the source directory variable. This specifies where the source code will exist after it is fetched from SRC_URI and unpacked. The default value is ${WORKDIR}/${PN}-${PV}
, where PN
is the package name and PV
is the package version. Both PN
and PV
are set by default using the filename of the recipe, where the filename has the format PN_PV.bb
.
Example HelloWorld recipe using a single source file
This example shows a simple case of building a helloworld.c file directly using the default compiler (gcc). Since it isn’t using autotools or make, we have to tell BitBake how to build it explicitly.
DESCRIPTION = "HelloWorld"
SECTION = "examples"
LICENSE = "GPL"
SRC_URI = "file://helloworld.c"
S = "${WORKDIR}"
do_compile() {
${CC} ${CFLAGS} ${LDFLAGS} helloworld.c -o helloworld
}
do_install() {
install -d ${D}${bindir}
install -m 0755 helloworld ${D}${bindir}
}
In this case, SRC_URI
specifies a file that must exist locally with the recipe. Since there is no code to download and unpack, we set S
to WORKDIR
since that is where helloworld.c will be copied to before it is built.
WORKDIR
is located at ${OETREE}/<build directory>/tmp/work/armv8a-poky-linux/<package name and version>
for most packages. If the package is machine-specific (rather than generic for the armv8a architecture), it may be located in the smarcimx8mp4g-poky-linux
subdirectory depending on your hardware (this applies to kernel packages, images, etc).
do_compile
defines how to compile the source. In this case, we just call gcc directly. If it isn’t defined, do_compile
runs make
in the source directory by default.
do_install
defines how to install the application. This example runs install
to create a bin directory where the application will be copied to and then copies the application there with permissions set to 755.
D
is the destination directory where the application is installed to before it is packaged.
${bindir}
is the directory where most binary applications are installed, typically /usr/bin
.
For a more in-depth explanation of BitBake recipes, syntax, and variables, see the Recipe Chapter of the OpenEmbedded User Manual.
Setup eMMC Manually
Setting up eMMC usually is the last step at development stage after the development work is done at your SD card or NFS environments. From software point of view, eMMC is nothing but a non-removable SD card on board. For SMARC-iMX8M, the SD card is always emulated as /dev/mmcblk1
and on-module eMMC is always emulated as /dev/mmcblk0
. Setting up eMMC now is nothing but changing the device descriptor.
This section gives a step-by-step procedure to setup eMMC flash. Users can write a shell script your own at production to simplify the steps.
First, we need to backup the final firmware from your SD card or NFS.
Prepare for eMMC binaries from SD card (or NFS):
Insert SD card into your Linux PC. For these instructions, we are assuming: DISK=/dev/mmcblk0, “lsblk” is very useful for determining the device id.
For these instruction, we are assuming: DISK=/dev/mmcblk0
, “lsblk
” is very useful for determining the device id.
$ export DISK=/dev/mmcblk0
Mount Partitions:
On some systems, these partitions may be auto-mounted…
$ sudo mkdir -p /media/boot/
$ sudo mkdir -p /media/rootfs/
for: DISK=/dev/mmcblk0
$ sudo mount ${DISK}p1 /media/boot/
$ sudo mount ${DISK}p2 /media/rootfs/
for: DISK=/dev/sdX
$ sudo mount ${DISK}1 /media/boot/
$ sudo mount ${DISK}2 /media/rootfs/
Copy Image to rootfs partition
~/mickledore-desktop/<build dir>/tmp/deploy/images/<machine name>/
$ sudo cp -v Image /media/rootfs/home/root
Copy uEnv.txt to rootfs partition
Copy and paste the following contents to /media/rootfs/home/root ($ sudo vim /media/rootfs/home/root/uEnv.txt)
~/uEnv.txt
optargs="video=HDMI-A-1:1920x1080-32@60 consoleblank=0"
#optargs="video=HDMI-A-1:3840x2160-32@30 consoleblank=0"
#optargs="video=HDMI-A-1:3840x2160-32@60 consoleblank=0"
#console port SER3
console=ttymxc0,115200 earlycon=ec_imx6q,0x30860000,115200
#console port SER2
#console=ttymxc1,115200 earlycon=ec_imx6q,0x30890000,115200
#console port SER1
#console=ttymxc2,115200 earlycon=ec_imx6q,0x30880000,115200
#console port SER0
#console=ttymxc3,115200 earlycon=ec_imx6q,0x30A60000,115200
mmcdev=0
mmcpart=1
image=Image
loadaddr=0x40480000
fdt_addr=0x43000000
mmcroot=/dev/mmcblk0p2 rw
usbroot=/dev/sda2 rw
mmcrootfstype=ext4 rootwait fixrtc
netdev=eth0
ethact=FEC0
ipaddr=192.168.1.150
serverip=192.168.1.53
gatewayip=192.168.1.254
mmcargs=setenv bootargs ${mcore_clk} console=${console} root=${mmcroot} rootfstype=${mmcrootfstype} ${optargs}
uenvcmd=run loadimage; run loadfdt; run mmcboot
# USB Boot
#usbargs=setenv bootargs console=${console} root=${usbroot} rootfstype=${mmcrootfstype} ${optargs}
#uenvcmd=run loadusbimage; run loadusbfdt; run usbboot
Copy device tree binary to rootfs partition
~/mickledore-desktop/<build dir>/tmp/deploy/images/<machine name>/
$ sudo cp -v <device tree file> /media/rootfs/home/root/imx8mq-smarc.dtb
Copy boot file to rootfs partition
~/mickledore-desktop/<build dir>/tmp/deploy/images/<machine name>/
$ sudo cp -v imx-boot-smarcimx8mq4g-sd.bin-flash_evk
/media/rootfs/home/root/flash.bin
Copy final root file system to rootfs partition
~/mickledore-desktop/<build dir>/tmp/deploy/images/<machine name>/
$ pushd /media/rootfs
$ sudo tar cvfz ~/smarcimx8mq-emmc-rootfs.tar.gz .
$ sudo mv ~/smarcimx8mq-emmc-rootfs.tar.gz /media/rootfs/home/root
$ popd
Remove SD card:
$ sync
$ sudo umount /media/boot
rootfs$ sudo umount /media/
Copy Binaries to eMMC from SD card
Insert this SD card into your SMARC-iMX8M device.
Now it will be almost the same as you did when setup your SD card, but the eMMC device descriptor is /dev/mmcblk0 now. Booting up the device from SD card (shunt cross TEST#).
$ export DISK=/dev/mmcblk0
Erase eMMC:
$ sudo dd if=/dev/zero of=${DISK} bs=1M count=160
Create Partition Layout:
$ sudo sfdisk ${DISK} <<-__EOF__
2M,48M,0x83,*
50M,,,
__EOF__
Format Partitions:
$ sudo mkfs.vfat -F 16 ${DISK}p1 -n boot
$ sudo mkfs.ext4 ${DISK}p2 -L rootfs
Mount Partitions:
$ sudo mkdir -p /media/boot/
$ sudo mkdir -p /media/rootfs/
$ sudo mount ${DISK}p1 /media/boot/
$ sudo mount ${DISK}p2 /media/rootfs/
Copy binaries to boot partition
Copy uEnv.txt/Image/*.dtb to the boot partition
$ sudo cp -v Image uEnv.txt /media/boot/
Copy Linux kernel device tree binary
$ sudo mkdir -p /media/boot/dtbs
$ sudo cp -v imx8mq-smarc.dtb /media/boot/dtbs/
Copy root file system to rootfs partition
$ sudo tar -zxvf smarcimx8mq-emmc-rootfs.tar.gz -C /media/rootfs
Unmount eMMC:
$ sync
$ sudo umount /media/boot
$ sudo umount /media/rootfs
Write boot file to eMMC
$ sudo dd if=flash.bin of=${DISK} bs=1024 seek=33
Switch your Boot Select to eMMC (OFF ON ON) and you will be able to boot up from eMMC now.
Setup eMMC Automatically
Boot up the module from SD card and run the following script. The Yocto images will be written into on-module eMMC.
$ smarc-imx8mq-create-yocto-emmc.sh /dev/mmcblk0 >/dev/null 2>&1
Default User and Pass
The default Yocto desktop (ubuntu 22.04) build will create the account “user” with the password “user” for desktop evaluation, In order to change the account or password, uncomment and update APTGET_ADD_USERS in <build_dir>/conf/local.conf.
Video Decoding
For playing video, we can use three solutions to support it.
1. $ gplay-1.0 <video file>
2. $ gst-launch-1.0 playbin uri=file://<video absolute path>
3. (i) if video container on .mp4 format$ gst-launch-1.0 filesrc location=<file name.mp4> typefind=true ! video/quicktime ! qtdemux ! queue max-size-time=0 ! vpudec ! queue max-size-time=0 ! kmssink force-hantrope=true sync=false &
(ii) if video container on .ts format$ gst-launch-1.0 filesrc location=<file name.ts> typefind=true ! video/mpegts ! tsdemux ! queue max-size-time=0 ! vpudec ! queue max-size-time=0 ! waylandsink
version 1.0a, 10/28/2024
Last updated 2024-10-28