Project

General

Profile

Building the Filesystem

1. Prerequisites 2. Building the FPGA and Bootloader 3. Building the Filesystem 4. Building the SD Card

Introduction

The filesystem is built through Yocto. The Yocto version is nanbield and should be compiled using Ubuntu 22.04.

The meta-layers for the Yocto build are as follows.
Repository URL Branch
poky https://git.yoctoproject.org/poky nanbield
meta-openembedded https://github.com/openembedded/meta-openembedded nanbield
meta-mitysom https://support.criticallink.com/git/meta-mitysom.git nanbield

It is recommended to use Docker for the Yocto build. Instructions for installing Docker can be found here: Docker Installation Guide
The recommended Docker container can be fetched using the command below.

docker pull crops/poky:ubuntu-22.04

Setting up Yocto

Yocto is made up of multiple meta layers, these layers are stored in git repositories. To get everything set up to build, these repositories will need to be cloned and a few config files will need to be copied over.

Clone the Yocto layers

git clone -b nanbield https://git.yoctoproject.org/poky
cd poky
git clone -b nanbield https://github.com/openembedded/meta-openembedded
git clone -b nanbield https://support.criticallink.com/git/meta-mitysom.git

Launch the Docker container

docker run --rm -it -v `pwd`:/work --workdir=/work crops/poky:ubuntu-22.04 /bin/bash

Source the Yocto environment

. ./oe-init-build-env

Copy the example configuration files

cp ../meta-mitysom/conf/bblayers.conf.sample conf/bblayers.conf
cp ../meta-mitysom/conf/local.conf.sample conf/local.conf

Performing the Yocto build

Launch the Docker container

docker run --rm -it -v `pwd`:/work --workdir=/work crops/poky:ubuntu-22.04 /bin/bash

Source the Yocto environment

. ./oe-init-build-env

Build the filesystem

MACHINE=mitysbc-agilex5 bitbake mitysom-image-base

Outputs

Description Location
Filesystem Tarball <Yocto Directory>/build/tmp/deploy/images/mitysbc-agilex5/mitysom-image-base-mitysbc-agilex5.tar.gz

Build the SDK

Launch the Docker container

docker run --rm -it -v `pwd`:/work --workdir=/work crops/poky:ubuntu-22.04 /bin/bash

Source the Yocto environment

. ./oe-init-build-env

Build the SDK

MACHINE=mitysbc-agilex5 bitbake mitysom-image-base -c populate_sdk

Outputs

Description Location
SDK Script <Yocto Directory>/build/tmp/deploy/sdk/poky-*mitysom-image-base-*.sh

1. Prerequisites 2. Building the FPGA and Bootloader 3. Building the Filesystem 4. Building the SD Card

Go to top
Add picture from clipboard (Maximum size: 1 GB)