Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Introduction

The following guide will give you a technical overview about the SOM and by the end of it you should be able to build a Buildroot image from sources.

Image Download

Writing the Image to an SD card

Use the following commands for writing the image to the SD card:

Code Block
umount /media/<relevant directory>
unxz microsd-<commit-hash>.img.xz 
sudo dd if=microsd-<commit-hash>.img of=/dev/sdX bs=4M conv=fsync

Build From Sources

To build from sources, please follow these steps:

Clone the sources and build the image

1. Please run the following commands:

Code Block
git clone https://github.com/SolidRun/ti_am64x_build.git
cd ti_am64x_build

2. Please run the following command in order to check for required tools, clone and build the image

Code Block
./runme.sh

...

For development and verification we are providing a tool that creates bootable microsd images from source-code. It includes required firmware blobs, arm-trusted-firmware, u-boot, Linux - along with a choice of eitehr Debian or buildroot rootfs.

For details please find sources and documentation on GitHub: https://github.com/SolidRun/ti_am64x_build

...

Please Note :

...