xilinx-minimal
Summary
| Latest Version | Unknown |
|---|---|
| License | Unknown |
| CI Status | Failing |
| Stars | 1 |
| Forks | 1 |
| Open Issues | 0 |
| Last Commit | 2026-06-18 |
| Downloads | 0 |
| Last Indexed | 2026-08-12 05:10 |
Installation
nimble install xilinx-minimal
choosenim install xilinx-minimal
git clone https://gitlab.com/balister/xilinx-minimal
OS Compatibility
| Platform | Linux | macOS | Windows | FreeBSD | OpenBSD | NetBSD | Android | iOS | WASM | Embedded |
|---|---|---|---|---|---|---|---|---|---|---|
| xilinx-minimal | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Source
| Repository | https://gitlab.com/balister/xilinx-minimal |
|---|---|
| Homepage | https://gitlab.com/balister/xilinx-minimal |
| Registry Source | gitlab |
README
Building Xilinx based systems with meta-xilinx
This repository provides git submodules to setup the OpenEmbedded build system with meta-xilinx to build images for Xilnx development boards and some vendor boards.
OpenEmbedded allows the creation of custom linux distributions for embedded 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.
Information about the branch names is available at https://wiki.yoctoproject.org/wiki/Releases.
Getting Started
-
Clone the git repository:
$ git clone https://github.com/balister/xilinx-minimal.git
-
Check out the appropriate branch (default is OK for now):
$ cd xilinx-minimal
-
Update the submodules (meta-xilinx also has a submodule):
$ git submodule update --init --recursive
-
Initialize the build system:
-
For a supported host distro
$ TEMPLATECONF=`pwd`/meta-xilinx-minimal/conf/templates/default source ./openembedded-core/oe-init-build-env ./build ./bitbake
-
For an unsupported host distro, use pyrex to containerize the build:
$ source pyrex.source
$ TEMPLATECONF=`pwd`/meta-xilinx-minimal/conf/templates/default source pyrex-init-build-env
-
Select the MACHINE to build for:
$ export MACHINE=zynqmp-zcu104-sdt-full (default from local.conf)
-
Build an image:
$ bitbake core-image-minimal
-
Build an sdk:
$ bitbake -c populate_sdk core-image-minimal