Fast Track - Fast Track - 2025.2 English - XD101

Vitis Tutorials: Platform Creation (XD101)

Document ID
XD101
Release Date
2025-12-11
Version
2025.2 English

Scripts are provided to re-create projects and generate outputs. To use these scripts, run the following steps.

  1. Run build:

    # cd to the step directory, e.g.
    cd step1_vivado
    make all
    
  2. To clean the generated files, run the following command:

    make clean
    

This script creates the same design, generate block diagram and export XSA.

A top level all in one build script is also provided. To build everything (step 1 to step 3) with one command, go to ref_files directory and run the following command:

make all COMMON_IMAGE_ZYNQMP=<path/to/common_image/>  #Specify the path of the common image

This command is to generate platform with pre-built software components and do software emulation by running vadd application to test this platform:

make sd_card COMMON_IMAGE_ZYNQMP=<path/to/common_image/>  #Specify the path of the common image

This command is to generate platform with pre-built software components and do hw test on board by running vadd application to test this platform. To clean all the generated files, run the following command:

make clean