This repository provides Repo manifests to setup the Yocto build system for supported AMD products.
The Yocto Project allows the creation of custom linux distributions for embedded systems, including AMD based systems. It is a collection of git repositories known as layers each of which provides recipes to build software packages as well as configuration information.
Repo is a tool that enables the management of many git repositories given a single manifest file. Tell repo to fetch a manifest from this repository and it will fetch the git repositories specified in the manifest and, by doing so, setup a Yocto Project build environment for you!
There are multiple manifest files, the purpose of each one is listed below:
-
default.xml - PetaLinux manifest
-
default-edf.xml - Embedded Development Framework Project manifest
Pre-requisites:
- See Preparing Build Host documentation.
- Configure the git settings before you run the repo commands.
$ git config --global user.email "[email protected]" $ git config --global user.name "Your Name"- Make sure build host shell is bash not csh or dash.
- A basic understanding of the Yocto build system is assumed - please consult the documentation for further information https://docs.yoctoproject.org/
-
Download and install Repo tool (if it wasn't installed in a previous step). Note that if you have repo installed through a package manager that should be removed first as it is likely out of date and will cause issues.
$ curl https://storage.googleapis.com/git-repo-downloads/repo > repo $ chmod a+x repo $ mv repo ~/bin/ $ PATH=~/bin:$PATH $ repo --help -
Initialize a Repo client.
- Create the project directory.
$ mkdir -p yocto/<release_version> $ cd yocto/<release_version> - Clone the Yocto meta layer source using yocto manifest as show below. A
successful initialization will end with a message stating that Repo is
initialized in your working directory. Your directory should now contain a
.repo directory where repo control files such as the manifest are stored
but you should not need to touch this directory.
To learn more about repo, look at https://source.android.com/setup/develop/repo
Note: If you are using default-edf.xml then follow https://github.com/Xilinx/meta-amd-edf/blob/rel-v2025.2/README.build.md
$ repo init -u https://github.com/Xilinx/yocto-manifests.git -b <release_version>
- Create the project directory.
-
Fetch all the repositories.
$ repo sync -
Start a branch with for development starting from the revision specified in the manifest. This is an optional step.
$ repo start <branch_name> --all -
Setup the Yocto OE Init scripts by sourcing
setupsdkscript.$ source setupsdk -
Set hardware
MACHINEconfiguration variable in /build/conf/local.conf file for a specific target which can boot and run the in the board or QEMU.
MACHINE = "<target_machine_name>"
-
For list of available target machines see meta layer README files.
- For NFS build host system modify the build/conf/local.conf and add TMPDIR path as shown below. On local storage $TMPDIR will be set to build/tmp
TMPDIR = "/tmp/$USER/yocto/release_version/build"
- Modify the build/conf/local.conf file to add wic image to default target image as shown below.
IMAGE_FSTYPES += "wic"
WKS_FILES = "xilinx-default-sd.wks"
- Build the qemu-helper-native package to setup QEMU network tap devices.
$ bitbake qemu-helper-native
- Manually configure a tap interface for your build system. As root run /sources/poky/scripts/runqemu-gen-tapdevs, which should generate a list of tap devices. Once tap interfaces are successfully create you should be able to see all the interfaces by running ifconfig command.
$ sudo ./<path-to-layer>/poky/scripts/runqemu-gen-tapdevs $(id -g $USER) 4
- Building the target image.
$ bitbake petalinux-image-minimal
- Simulate and Boot target image using QEMU.
Note: Use
slirpoption if you don't have sudo permissions and tap devices are enabled on your build host.
- Without slirp
$ runqemu nographic
- With slirp
$ runqemu nographic slirp
- Booting from HW, Use dd command or balena etcher to flash the wic image file to SD card. WIC image will be build/tmp/deploy/${MACHINE}/target-image-machine-datetimestamp.rootfs.wic, See Flashing Images Using bmaptool for fast and easy way to flash the image.
To pick up the latest changes for all source repositories, run:
$ repo sync
For more information see https://github.com/Xilinx/meta-xilinx/blob/master/README.md