Scripts are provided to re-create projects and generate outputs. To use these scripts, run the following steps.
Run build:
# cd to the step directory, e.g. cd step1_vivado make all
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