# AUP-ZU3 **Repository Path**: mirrors_Xilinx/AUP-ZU3 ## Basic Information - **Project Name**: AUP-ZU3 - **Description**: AUP-ZU3 - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-05 - **Last Updated**: 2026-08-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Build PYNQ SD Image for AUP-ZU3 ### 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 Retrieve the AUP-ZU3 board git into a NEW directory. ```shell git clone https://github.com/Xilinx/AUP-ZU3.git cd && git submodule init && git submodule update ``` ### Build SD Image The full details on the SD Image build process can be found on the [PYNQ website](https://pynq.readthedocs.io/en/latest/pynq_sd_card.html) 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 ``` The AUP-ZU3 comes in two configurations: 4GB and 8GB DDR4 Each board is marked as 4G (4GB) and 8G (8GB) Run the corresponding makefile with `image-4gb` or `image-8gb` accordingly. In the root directory (`/`) run `make`. ```shell make image-4gb 2>&1 | tee build.log ``` OR ```shell make image-8gb 2>&1 | tee build.log ``` Once the build has completed, if successful a SD card image will be available under the directory `/sdbuild/output/AUP-ZU3-3.1.img`. To write the AUP-ZU3-3.1.img to an SD card follow the steps on in [PYNQ SD card documentation](https://pynq.readthedocs.io/en/latest/appendix/sdcard.html) Use [balenaEtcher](https://etcher.balena.io), [Win32DiskImager](https://win32diskimager.org), or directly through the Operating System to write this image to an SD card. ---------------------------------------