IoTGateway/BSP/Linux/TI/Yocto LBVC User Guide

From ESS-WIKI
Revision as of 08:02, 10 July 2024 by Ning.pan (talk | contribs)
Jump to: navigation, search


Introduction

This page provides the steps to build the Processor SDK and individual components from source. The Processor SDK build is based on the Arago Project which provides a set of layers for OpenEmbedded and the Yocto Project targeting TI platforms.

This page will provide the basic steps require to recreate the Processor SDK along with a reference of Processor SDK specific configurations, build targets, and target devices. Also, tips and suggestions are provided along with links for more in-depth information.

 

Getting Start

Prerequisites

Host Setup-Ubuntu(Recommended)

Generally,for Linux development, you’ll need a host PC running Linux. For development with the Advantech SDK, it is strongly recommend to use Ubuntu 22.04 LTS as the developing environment. This is because we have successfully tested our BSP on this OS version. Please install the Ubuntu 22.04 LTS on your PC/NB in advance.

The following build host packages are required for Ubuntu. The following command will install the required tools on the Ubuntu Linux distribution. For ubuntu 22.04, please run the following:

$ sudo apt-get update
$ sudo apt-get -f -y install git build-essential diffstat texinfo gawk chrpath socat doxygen dos2unix python3 bison flex libssl-dev u-boot-tools mono-devel mono-complete curl python3-distutils repo pseudo python3-sphinx g++-multilib libc6-dev-i386 jq git-lfs pigz zstd liblz4-tool cpio file zstd lz4

By default Ubuntu uses "dash" as the default shell for /bin/sh. You must reconfigure to use bash by running the following command:

$ sudo dpkg-reconfigure dash

Be sure to select “No” when you are asked to use dash as the default system shell.

Docker install and setting

If you don't have docker in your system, then you can follow the below steps to install docker and run it first.

To install Docker Engine on your platform please refer to Docker Installation Guide for details.

To pull ubuntu 22.04 image from Docker Hub

$ docker pull advrisc/u22.04-amxxlbv1

To create container

$ docker run -it --name ${CONTAINER_NAME} -v ${WORKSPACE}:/home/adv/yocto_bsp:rw advrisc/u22.04-amxxlbv1 /bin/bash

 

Build Steps

The following example shows how to download the Advantech Yocto BSP from GitHub.

For this example, a directory called yocto_bsp is created for the project.

$ sudo chown adv:adv -R yocto_bsp
$ cd yocto_bsp/
$ mkdir tisdk
$ cd tisdk/
$ repo init -u https://kag-sw.visualstudio.com/AM335x-Linux/_git/am335x-manifests -b main -m am335x_epcr3220a1_2024_04-15.xml  
$ repo sync

After repo sync finished. Please modify the following meta files below: meta-layer-files-update.png

The final command below build the tisdk-default-image, which is the Processor SDK image with arago filesystem.

$ ./oe-layertool-setup.sh
$ cd build
$ . conf/setenv
$ MACHINE=<machine> bitbake tisdk-default-image

Your tisdk-default-image tar.xz image will be generated in the deploy-ti directory. Use Processor SDK Linux Create SD Card to flash this image on the SD-Card.  

Attention: You may be experience the following issue: Bitbake-error-1.png

Add CONNECTIVITY_CHECK_URIS = "" in build/conf/local.conf, aim at skipping connectivity checks.

Processor SDK Build Reference

The following sections provide information for configuration, build options, and supported platforms of the Processor SDK.

Layer Configuration

Processor SDK uses the following oe-layertool-setup configs to configure the meta layers.

$ ./oe-layertool-setup.sh

 

Build Options

Images

In addition to individual components packages, the following table provides a list of build targets supported. These are the <target> used in the command:

$ MACHINE=<machine> bitbake <target>

The "Build Output" is given relative to the deploy-ti directory.

Target

Build Output

Description

tisdk-core-bundle

images/<machine>/tisdk-core-bundle-<machine>.tar.xz

Full SDK

tisdk-default-image

images/<machine>/tisdk-default-image-<machine>.tar.xz

Target Filesystem

u-boot-ti-staging

images/<machine>/u-boot-<machine>.img

images/<machine>/MLO-<machine>

u-boot

linux-ti-staging

images/<machine>/zImage-<machine>.bin

images/<machine>/zImage-<machine>.dtb

kernel

 

Platforms

The following platforms are supported in Processor SDK. These are the <machine> in the command:

$ MACHINE=<machine> bitbake <target>


MACHINE

Supported Product

am335xepcr3220a1

EPC-R3220A1

 

RT Support

Processor SDK Linux supports RT Linux Kernel for the following machines. Use the command below to make the RT builds:

$ MACHINE=<machine> ARAGO_RT_ENABLE=1 bitbake <target>


MACHINE

Supported Product

am335xepcr3220a1

EPC-R3220A1

Command

Build command

$ MACHINE=<machine> bitbake <target>

Take uboot as an example:

$ MACHINE=am335xepcr3220a1 bitbake u-boot-ti-staging

The MLO and u-boot.img will be located in the directory, ./arago-tmp-default-glibc/work/am335xepcr3220a1-oe-linux-gnueabi/u-boot-ti-staging.

When the target is tisdk-core-bundle, MLO, u-boot.img, zImage, devicetree file, filesystem and full SDK will compiled.

 

Recipes

Recipe Basics

One or more recipes can be specified for the <target> for greater granularity of recipe development and debug. Specifying a recipe name, minus the version (if the version is appended to the name), will build the recipe and all its dependencies.

For example, the command below builds only the opencl recipe and all the dependencies it defines.

$ MACHINE=<machine> bitbake opencl

After the bitbake command above is successfully done, arago-tmp-default-glibc/work/<machine>-linux-gnueabi/opencl directory will be available including the original source code under the git folder, independent shared objects (.so files) under packages-split folder, and IPKs under deploy-ipks folder.

Forced Re-compilation

When needed, source code under the work directory (e.g.,arago-tmp-default-glibc/work/<machine>-linux-gnueabi/<target>/[version]/git) can be modified. After the modification is done, run the following commands to force recompilation with the new code and rebuilding of the recipe, e.g.,

$ MACHINE=<machine> bitbake <target> --force -c compile
$ MACHINE=<machine> bitbake <target>

Take uboot as an example:

$ MACHINE=am335xepcr3220a1 bitbake u-boot-ti-staging --force -c compile
$ MACHINE=am335xepcr3220a1 bitbake u-boot-ti-staging

 

Installing Package

To install a modified and rebuilt package, copy the new IPKs from the deploy-ipks folder (e.g., arago-tmp-default-glibc/work/a<machine>-linux-gnueabi/opencl/[version]/deploy-ipks) to the target system and then run the following command to install the IPKs:

$ opkg install [package_ipk].ipk

Cleaning a Built Recipe

A built recipe can be cleaned using:

$ MACHINE=<machine> bitbake <target> -c cleansstate

or

$ MACHINE=<machine> bitbake <target> -c cleanall

Take uboot as an example:

$ MACHINE=am335xepcr3220a1 bitbake u-boot-ti-staging -c cleansstate

The cleansstate task will clean recipe's work directory and remove the recipe's output from the dependency tree used by other recipe's during compilation.

Create a Linux System Boot Media

Our motherboard generally supports from SD card and onboard flash. This section will take EPC-R3220 as an example to introduce how to make a system boot media.

Create a Linux System SD Card

Copy full SDK(tisdk-core-bundle-<machine>.tar.xz) package to your desktop

$ mkdir ti-sdk-XXX(XXX represents numbers, e.g. ti-sdk-001)
$ tar –xJf Desktop/tisdk-core-bundle-<machine>.tar.xz –C ti-sdk-XXX

The create-sdcard.sh script can be run from any location but must be run with root permissions. This usually means using the sudo command to start execution of the script.

$ cd ti-sdk-XXX/bin
$ sudo ./create-sdcard.sh

Select SD card Device:

The first step of the script will ask you to select the drive representing the SD card that you want to format. In most cases your host root file system drive has been masked off to prevent damage to the host system. When prompted enter the device number corresponding to the SD card. For example if the output looks like:

AM33xx select sd 1.png

You would enter 2 to select the sdd device.

Select number of partitions which ask you how many partitions you want to create for SD card:

AM33xx partition 1.png

Whether to continue:

AM33xx continue 1.png

Select Pre-built System image:

AM33xx pre 1.png

There is no multiple rootfs tarball, user does not need to make a manual selection. Select tisdk-default-image-XXX.tar.xz(XXX represents machine name, e.g. am335xepcr3220a1) as default, due to filesystem directory include one *.tar.xz tarball here.

If you need to transfer whole system to on-board flash, please press y followed by Enter.

AM33xx upgrade 1.png

While "[Operation Finished]" shows up means the transferring is finished.

Then insert the Linux system SD card to EPC-R3220, it will boot up with Linux environment.

Boot from Onboard Flash

If you have already get a Linux system SD card and the last step of make process selected "y", you can refer to the following steps to burn the system to the onboard flash.

Please insert the Linux system SD card to EPC-R3220, and then power up. It boot from the SD card.

$ cd /mk_inand
$ ./mk-eMMC-boot.sh

Select eMMC:

AM33xx select emmc 1.png

Select number of partitions:

AM33xx partition emmc 3.png

Partition completion. Continue the burning system or not?

AM33xx continue emmc 1.png

If “y” was pressed, the system will be burned to eMMC.

While "[Operation Finished]" shows up means the burning is finished.

Then you can boot from onboard flash without SD card. 

Debug console information

If you want to see debug message from device, you need to prepare for hardware device and software tool.

Preparing for hardware device

  • The following URL provides information about the debug port slot and the debug port line for each device

Debug Port Information

Preparing for software tool

  • You need to prepare the debug console tool. For example: "minicom" tool or "putty" tool.
  • Baud rate: 115200

   

Local development

All instructions in this guide are based on Ubuntu 22.04 LTS developing environment. Please install the Ubuntu 22.04 LTS on your PC/NB in advance.

Set up Build Environment

Perform the following command in terminal console

$ cd ti-sdk-XXX/
$ ./sdk-install.sh

After run sdk-install.sh, Rules.make and linux-devkit which is toolchain sdk directory will be gernerated.

Rebuild sources

Using the top-level makefile in the SDK root directory. For example:

Rebuilds all components in the SDK:

$ make all

Configures and builds the kernel:

$ make linux

Clean the builds for the kernel:

$ make linux_clean

If you want to copy the compiled module to the specified directory:

Please specifying the installation directory in the Rules.make file firstly

DESTDIR=<install_directory>

Then executing the following instructions:

Install the Kernel Modules

$ make linux_modules_install

Install the kernel Image and Device Tree binaries

$ make linux_install

Note: make linux_modules_install will create a directory tree in DESTDIR from that location like lib/modules/<uname -r>/ which will contain the dynamic modules corresponding to this version of the kernel, make linux_install will copy the kernel image and device tree binaries to the specified directory.

Builds u-boot, u-boot-spl and MLO:

$ make u-boot

Clean the builds for u-boot, u-boot-spl and MLO:

$ make u-boot_clean

   

Customization

Package addition

To add vsftpd & crontab

Navigate to the directory where tisdk-default-image.bbappend located
$ cd ${BSP_HOME}/sources/meta-advantech2/meta-ti-adv/recipes-core/images/
Add following line to tisdk-default-image.bbappend
IMAGE_INSTALL += " cronie vsftpd "
Then, follow the Build Steps above to generate the image.