Versions Compared

Key

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


Table of Contents

Table of Contents
excludeTable of Contents

Install Xilinx Yocto

Yocto Host Dependencies

Install the standard Yocto dependencies for your host machine per the Yocto Reference Manual.

Repo

Repo is a repository management tool that is built on top of Git. Repo unifies the many Git repositories when necessary, and automates parts of the development workflow. Repo is not meant to replace Git, only to make it easier to work with Git in the context of development.The repo command is an executable Python script that you can put anywhere in your path. In working with the source files, you will use Repo for across-network operations. For example, with a single Repo command you can download files from multiple repositories into your local working directory.

Info

For more info about Repo, please see https://source.android.com/source/developing.html.

Install Repo

Here we will simply install the repo script from Google.

...

Info

You may run "mkimage -l <fitimage>" to view the partitions


Note

This article does not show how to configure the u-boot scripts to boot a FIT image

...

Finally bitbake the target image "petalinux-image-minimal".  You can pass the target machine on the command line or add it to your local.conf as the default machine.  When the build is completes, your images are located in "build/tmp/deploy/images/<machine>".  In this example we are building for the ZCU102.

Code Block
themeMidnight
$ MACHINE=zcu102-zynqmp bitbake petalinux-image-minimal

...

References

  1. U-boot Distro Boot
  2. Yocto Initramfs

...