On this page:
- Building TI/Embedian’s Arago SDK 7.0 Distribution
- Introduction
- Overview of the meta-embedian-SDK7 Yocto Layer
- Setting Up the Tools and Build Environment
- Building the target platforms
- Setup SD Card
- Install Root File System and Kernel Modules
- Install Root File System
- Writing Bitbake Recipes
- Setup eMMC
- Install Root File System
Building TI/Embedian’s Arago SDK 7.0 Distribution
Eric Lee
version 1.0a, 8/19/2014
Introduction
This document describes how Embedian builds a customized version of TI’s am335x AMSDK 7.0 release for Embedian's SMARC T335X product platform. The approach is to pull from Embedian's public facing GIT 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 T335X specific development.
TI makes their AMSDK Arago build scripts available via the following GIT repository:
It is this repository that actually pulls in the oe-layersetup project to perform the Linux AMSDK builds for TI’s entire suite of ARM CortextA chips. In this document we are only concerned with the oe-layersetup project.
Overview of the meta-embedian-SDK7 Yocto Layer
The supplied meta-embedian-sdk7 Yocto compliant layer has the following organization:
Notes on meta-embedian-sdk7 layer content
conf/machine/*
This folder contains the machine definitions for the smarct335x platform and backup repository in Embedian. These select the associated kernel, kernel config, u-boot, u-boot config, and UBI image settings.
recipes-bsp/u-boot/*
This folder contains recipes used to build DAS U-boot for smarct335x platform.
recipes-connectivity/lftp/*
This folder adds lftp ftp client utility for smarct335x platform.
recipes-core/base-files/*
This recipe is used to amend the device hostname for the platform.
recipes-core/busybox/*
This recipe modifies TI’s BusyBox configuration to remove telnet from the image.
recipes-core/images/*
These recipes are used to create the final target images for the devices. When you run Bitbake one of these recipes would be specified. For example, to build the root file system for the smarct335x platform:
recipes-core/init-ifupdown*
This recipe is used to amend device network interfaces
recipes-devtools/nodejs/*
These recipes build the Node.js Javascript server execution environment.
recipes-kernel/linux/*
Contains the recipes needed to build the smarct335x Linux kernels.
recipes-multimedia/amsdk-av-files/*
This recipe is to add smarct335x compatible machine for the platform.
recipes-multimedia/x264/*
This original commit history has been rewritten.
recipes-support/boost/*
Adds Boost to the images. Boost provides various C++ libraries that encourage cross-platform development.
recipes-support/ntp/*
Network time protocol support.
recipes-tisdk/ti-tisdk-makefile/*
Add smarct335x device tree into Makefile.
Setting Up the Tools and Build Environment
To build the latest TI am335x 7.0 AMSDK you first need an Unbuntu Linux 12.04LTS or Ubuntu 14.04LTS installation (preferably 32bit). 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 12.04 LTS or Ubuntu 14.04LTS running, install the additional required support packages using the following console command:
If you are using a 64-bit Linux, then you'd also need to install 32-bit support libraries, needed by the pre-built Linaro toolchain and other binary tools.
You’ll also need to change the default shell to bash from Ubuntu’s default dash shell (select the <No> option):
To build TI’s am335x SDK you will need to install the Linaro arm compiler that TI used for the release:
PATH
definition to the .bashrc
file in your $HOME
directory:
meta-embedian-sdk7
layer to the build process.
Please do not enable the sgx MACHINE FEATURES if your platform is SMARC T3352.
Building the target platforms
To build the Embedian SMARC T335X and am335x-evm developer board images, respectively, use the following commands:
Once it done, you can find all required images under ~/oe-layersetup-sdk7/build/arago-tmp-external-linaro-toolchain/deploy/images/
You may want to build programs that aren’t installed into a root file system so you can make them available via a feed site (described below.) To do this you can build the package directly and then build the package named package-index to add the new package to the feed site.
The following example builds the minicom program and makes it available on the feed site:
~/oe-layersetup-sdk7/build/arago-tmp-external-linaro-toolchain/deploy
.deploy/images/*
This folder contains the binary images for the root file system and the Embedian SMARCT335X specific version of the am335x SDK. Specifically the images are:
deploy/images/u-boot.img
This u-boot bootloader binary for SMARC T335X
deploy/images/MLO
The "Stage 1 Boot Loader" for SMARC T335X. Its purpose is load the Stage 2 Boot Loader (u-boot.img).
deploy/images/zImage
The kernel zImage for SMARC T335X.
deploy/images/zImage-am335x-smarct335x.dtb
The device tree binary file for SMARC T335X.
deploy/images/smarct335x-rootfs-image-smarct335x*
Embedian root file system images for software development on Embedian’s SMARC T335X platforms.
deploy/images/smarct335x-amsdk-image*
These files contain the entire TI AMSDK augmented with Boost and other options to simplify Embedian SMARC T335X software development.
deploy/images/arago-base-tisdk-image-smarct335x*
These images are used to create the SMARC T335X AMSDK (see smarct335x-amsdk-image-smarct335x*
).
deploy/images/tisdk-rootfs-image-am335x-evm*
TI Arago root file system images for software development on TI’s am335x-evm and BeagleBone platforms.
deploy/ipk/*
This folder contains all the packages used to construct the root file system images. They are in opkg format (similar format to Debian packages) and can be dynamically installed on the target plaform via a properly constructed feed file. Here is an example of the feed file (named arago-smarct335x-feed.conf) that is used internally at Embedian to install upgrades onto a smarct335x platform without reflashing the file system:
deploy/licenses/*
deploy/sdk/arago-2013.12-cortexa8-linux-gnueabi-tisdk.sh
Setup SD Card
For these instruction, we are assuming: DISK=/dev/mmcblk0, "lsblk" is very useful for determining the device id.
Erase SD card:
Create Partition Layout:
With util-linux v2.26, sfdisk was rewritten and is now based on libfdisk.
Create Partitions:
Format Partitions:
Mount Partitions:
On some systems, these partitions may be auto-mounted...
Install Bootloader
Copy MLO/u-boot.img to the boot partition
uEnv.txt based bootscript
Create "uEnv.txt" boot script: (vim uEnv.txt)
For 3.12.y or after :
Copy uEnv.txt to the boot partition:
Install Kernel zImage
Copy zImage to the boot partition:
Install Kernel Device Tree Binary
Copy device tree binary to /media/boot/dtbs (Note: the file name in /media/boot/dtbs/ has to be am335x-smarct335x.dtb)
Install Root File System and Kernel Modules
Install Root File System
Copy Root File System:
Arago:
Note:
Kernel modules are included in root file systems.
The following procedure can be used on a Embedian SMARC T335X device to download and utilize the feed file show above to install the minicom terminal emulation program:
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:
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.
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/arago-tmp-external-linaro-toolchain/work/armv7ahf-vfp-neon-3.8-oe-linux-gnueabi/<package name and version>
for most packages. If the package is machine-specific (rather than generic for the armv7ahf architecture), it may be located in the smarct335x-oe-linux-gnueabi 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
Setting up eMMC usually is the last step at development stage after the development work is done at your SD card or NFS environments. eMMC on module will be 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.
Mount Partitions:
On some systems, these partitions may be auto-mounted...
Copy MLO to rootfs partition:
Copy u-boot.img to rootfs partition:
Copy initramfs zImage to rootfs partition:
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)
For kernel v3.12.y+:
Copy real rootfs to rootfs partition:
Remove SD card:
Insert this SD card into your SMARC T335X device.
Now it will be almost the same as you did when setup your SD card, but the eMMC device descriptor is /dev/mmcblk1 now.
Erase SD card:
Create Partition Layout:
Format Partitions:
Mount Partitions:
Install binaries for partition 1
Copy MLO/u-boot.img/uEnv.txt/zImage to the boot partition
Install Kernel Device Tree Binary
Install Root File System
Unmount eMMC:
Switch your Boot Select to eMMC and you will be able to boot up from eMMC now.
version 1.0a, 8/19/2014
Last updated 2015-12-07