Prerequisites For Quartus Pro 24.1¶
1. Prerequisites 2. Building the FPGA and Bootloader 3. Building the Filesystem 4. Building the SD Card
- Table of contents
- Prerequisites For Quartus Pro 24.1
Needed tools¶
Building the FPGA¶
- Windows or Linux
- Windows Requires installation of WSL2 with Ubuntu 22.04 LTS
- Intel Quartus 24.1 Pro
Building the bootloader, filesystem, and SD card¶
- Ubuntu 22.04 LTS
- GCC-ARM-11.2
wget https://developer.arm.com/-/media/Files/downloads/gnu/11.2-2022.02/binrel/gcc-arm-11.2-2022.02-x86_64-aarch64-none-linux-gnu.tar.xz tar xf gcc-arm-11.2-2022.02-x86_64-aarch64-none-linux-gnu.tar.xz rm -f gcc-arm-11.2-2022.02-x86_64-aarch64-none-linux-gnu.tar.xz export PATH=`pwd`/gcc-arm-11.2-2022.02-x86_64-aarch64-none-linux-gnu/bin:$PATH export ARCH=arm64 export CROSS_COMPILE=aarch64-none-linux-gnu-
1. Prerequisites 2. Building the FPGA and Bootloader 3. Building the Filesystem 4. Building the SD Card
Go to top