Personal tools

Difference between revisions of "VisionSOM imx-meta-somlabs-hardknott"

From SomLabs Wiki

Jump to: navigation, search
Line 3: Line 3:
 
This tutorial explains how to build the iMX Yocto Hardknott system for the VisionSOM modules. The Yocto system uses the following kernel and u-boot repositories:
 
This tutorial explains how to build the iMX Yocto Hardknott system for the VisionSOM modules. The Yocto system uses the following kernel and u-boot repositories:
  
* kernel (5.10.52): https://github.com/SoMLabs/somlabs-linux-imx/tree/somlabs_imx_5.10.52_2.1.0
+
* kernel (5.10.72): https://github.com/SoMLabs/somlabs-linux-imx/tree/somlabs_imx_5.10.72-2.2.0
* u-boot (2021.04): https://github.com/SoMLabs/somlabs-uboot-imx/tree/somlabs-imx_v2021.04_5.10.52_2.1.0
+
* u-boot (2021.04): https://github.com/SoMLabs/somlabs-uboot-imx/tree/somlabs-imx_v2021.04_5.10.72-2.2.0
  
 
== Introduction ==
 
== Introduction ==
Line 50: Line 50:
 
mkdir imx-yocto-bsp
 
mkdir imx-yocto-bsp
 
cd imx-yocto-bsp
 
cd imx-yocto-bsp
repo init -u https://github.com/SoMLabs/imx-meta-somlabs -b hardknott -m imx-somlabs-5.10.52-2.1.0.xml
+
repo init -u https://github.com/SoMLabs/imx-meta-somlabs -b hardknott -m imx-somlabs-5.10.72-2.2.0.xml
 
repo sync
 
repo sync
 
</pre>
 
</pre>
Line 60: Line 60:
 
* visionsbc-8mmini - VisionSBC-8Mmini board
 
* visionsbc-8mmini - VisionSBC-8Mmini board
 
* starsom-cb-6ull - StarCB-6ULL board with StarSOM-6ULL modules
 
* starsom-cb-6ull - StarCB-6ULL board with StarSOM-6ULL modules
 +
* starsbc-6ull - StarSBC-6ULL board with or without the COMM shield
  
 
System building may be started by the following commands (the first one needs to be called from the ''imx-yocto-bsp'' directory):
 
System building may be started by the following commands (the first one needs to be called from the ''imx-yocto-bsp'' directory):

Revision as of 11:00, 1 April 2022

VisionSOM imx-meta-somlabs layer for iMX Yocto Hardknott


This tutorial explains how to build the iMX Yocto Hardknott system for the VisionSOM modules. The Yocto system uses the following kernel and u-boot repositories:

Introduction

Meta-somlabs is a layer providing the SoMLabs modules and carrier boards hardware support for Yocto-based NXP Linux system.

Host system prerequisites

This tutorial was prepared for the Ubuntu 18.04.5 LTS host operating system. All of the files required for system image compilation may require up to 120 GB of the disk space. The SDK build requires additional 25 GB (145 GB in total).

The following packages need to be installed before the building process:

sudo apt-get install gawk wget git diffstat unzip texinfo gcc-multilib build-essential chrpath socat libsdl1.2-dev xterm sed cvs subversion coreutils texi2html docbook-utils python-pysqlite2 help2man make gcc g++ desktop-file-utils libgl1-mesa-dev libglu1-mesa-dev mercurial autoconf automake groff curl lzop asciidoc u-boot-tools

The source code will be obtained using git, so it needs to be configured by setting the user name and email with correctly set values:

git config --global user.email "you@example.com"
git config --global user.name "Your Name"

A new repo tool version is also required. It may be downloaded directly from the project site. The repo binary needs to be available in the system PATH variable and have the execution privilege:

wget https://storage.googleapis.com/git-repo-downloads/repo
sudo mv repo /usr/bin/repo
sudo chmod a+x /usr/bin/repo

System image

This layer should be used in order to build the system image. This layer adds a new example image called somlabs-image. It includes the SoMLabs demo application using the GTK and GStreamer libraries.

Building the system image

The general description of the building process is described in the iMX Yocto Project User's Guide document:

https://www.nxp.com/docs/en/user-guide/IMXLXYOCTOUG.pdf

The summary of required steps including the meta-somlabs layer is shown below:

mkdir imx-yocto-bsp
cd imx-yocto-bsp
repo init -u https://github.com/SoMLabs/imx-meta-somlabs -b hardknott -m imx-somlabs-5.10.72-2.2.0.xml
repo sync

System building may be configured for one of the available machine configurations:

  • visioncb-6ull-std - VisionCB-6ULL-STD board with VisionSOM-6ULL modules
  • visionsom-8mm-cb - VisionCB-8M board family with VisionSOM-8Mmini modules
  • visionsbc-8mmini - VisionSBC-8Mmini board
  • starsom-cb-6ull - StarCB-6ULL board with StarSOM-6ULL modules
  • starsbc-6ull - StarSBC-6ULL board with or without the COMM shield

System building may be started by the following commands (the first one needs to be called from the imx-yocto-bsp directory):

DISTRO=fsl-imx-xwayland MACHINE=<SELECTED_MACHINE> source imx-somlabs-setup-release.sh -b <BUILD_DIRECTORY>
bitbake somlabs-image

The system image is located in the somlabs-image-<SELECTED_MACHINE>.wic.bz2 file in the tmp/deploy/images/<SELECTED_MACHINE> directory. It should be extracted and installed on a SD-card:

bunzip2 -dkf somlabs-image-<SELECTED_MACHINE>.wic.bz2 
sudo dd if=somlabs-image-<SELECTED_MACHINE>.wic of=/dev/sdX bs=1M

The instruction for the eMMC memory image installation may be found on the following wiki pages:

NXP Partner ST Partner Renesas Partner