-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Makefile: Update to Vivado Version 2021.1"
This reverts commit 315422d.
- Loading branch information
1 parent
f3073ff
commit 2ea3aa8
Showing
2 changed files
with
31 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,17 @@ | ||
hsi open_hw_design build/system_top.xsa | ||
hsi open_hw_design build/system_top.hdf | ||
set cpu_name [lindex [hsi get_cells -filter {IP_TYPE==PROCESSOR}] 0] | ||
platform create -name hw0 -hw build/system_top.xsa -os standalone -out ./build/sdk -proc $cpu_name | ||
platform generate | ||
|
||
sdk setws ./build/sdk | ||
sdk createhw -name hw_0 -hwspec build/system_top.hdf | ||
|
||
# Workaround for broken write_sysdev in vivado 2018.2 | ||
catch { | ||
set copyfiles [glob ./build/ps7_init*] | ||
if {[llength $copyfiles]} { | ||
file copy {*}$copyfiles ./build/sdk/hw_0/ | ||
} | ||
} | ||
sdk createapp -name fsbl -hwproject hw_0 -proc $cpu_name -os standalone -lang C -app {Zynq FSBL} | ||
configapp -app fsbl build-config release | ||
sdk projects -build -type all | ||
#xsdk -batch -source create_fsbl_project.tcl |