# PYNQ-ZU **Repository Path**: mirrors_Xilinx/PYNQ-ZU ## Basic Information - **Project Name**: PYNQ-ZU - **Description**: PYNQ-ZU, AUP UltraScale+ MPSoC academic board - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-03-03 - **Last Updated**: 2026-03-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Build PYNQ SD Image for Pynq-ZU ### Prerequisites **Required tools:** * Ubuntu 22.04 LTS 64-bit host PC * Passwordless SUDO privilege for the building user * Roughly 35GB of free space (build process only, not accounting for Xilinx tools) * At least 8GB of RAM (more is better) * AMD PetaLinux 2024.1 and Vivado 2024.1 You can find the instructions to setup the environment here https://pynq.readthedocs.io/en/latest/pynq_sd_card.html#prepare-the-building-environment Retrieve the Pynq-ZU board git into a NEW directory. ```shell git clone https://github.com/Xilinx/PYNQ-ZU.git cd && git submodule init && git submodule update ``` ### Build SD Image PYNQ is a submodule and it points to the corresponding branch. Configure and install build tools, this will take some effort and will be an iterative process. Install on your own any missing tools. Inside the `/` execute ```shell cd pynq/sdbuild make checkenv ``` In the root directory (`/`) run `make`. ```shell make 2>&1 | tee build.log ``` Once the build has completed, if successful a SD card image will be available under the directory `/sdbuild/output/Pynq-ZU-3.1.1.img`. Use Etcher or Win32DiskImager to write this image to an SD card. ---------------------------------------