You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ This guide covers only what is required to gain access to and build demo project
40
40
1. Once Vivado is open, open the TCL Console at the bottom of the screen.
41
41
1. To initialize and open the Vivado project, run the following command in the TCL console, changing `<path>` to match the location of the directory that you noted down in Step 2 of the *Getting Demo Sources* section:
1. At this point you now have access to the Vivado Project and all of its sources. The project can be viewed, changes can be made, a bitstream can be generated, and Xilinx shell architecture file (XSA) can be generated for handoff to Vitis.
45
45
### Final Notes
46
46
At this point, you have access to a working copy of the demo repository. The chosen demo's README or wiki page will contain instructions on how to use this demo once it is programmed onto your board.
@@ -59,7 +59,7 @@ A front-end script, git_vivado.py, is provided to parse command line arguments a
59
59
## Commands / Scripts
60
60
### Checkout
61
61
#### Description
62
-
This subcommand calls into digilent_vivado_checkout.tcl in order to create a Vivado project, in the form of an XPR file, using the sources and scripts contained in the project repository.
62
+
This subcommand calls into checkout.tcl in order to create a Vivado project, in the form of an XPR file, using the sources and scripts contained in the project repository.
63
63
#### Optional Arguments
64
64
1.`-r <repo>`: Path to the repository directory. Default: `<digilent-vivado-scripts>/..`
65
65
1.`-x <xpr>`: Path to the project .xpr file the repo is to be checked out into. Default: `<repo>/proj/<repo name>.xpr`
@@ -74,12 +74,12 @@ This subcommand calls into digilent_vivado_checkout.tcl in order to create a Viv
74
74
##### TCL:
75
75
> `set argv "-r D:/Github/Zybo-Z7/hw"`
76
76
77
-
> `source digilent_vivado_checkout.tcl`
77
+
> `source checkout.tcl`
78
78
79
79
-----------
80
80
### Checkin
81
81
#### Description
82
-
This subcommand calls into digilent_vivado_checkin.tcl in order to collect sources and generate needed scripts from a Vivado project into the repository structure described below. Files required for checkout *that are not already present* in the repository (such as project_info.tcl and gitignores), are automatically created. These files are not overwritten if they already exist.
82
+
This subcommand calls into checkin.tcl in order to collect sources and generate needed scripts from a Vivado project into the repository structure described below. Files required for checkout *that are not already present* in the repository (such as project_info.tcl and gitignores), are automatically created. These files are not overwritten if they already exist.
83
83
#### Optional Arguments
84
84
1.`-r <repo>`: Path to the repository directory. Default: `<digilent-vivado-scripts>/..`
85
85
1.`-x <xpr>`: Path to the project .xpr file to be processed for checkin. Default: `<repo>/proj/*.xpr`
@@ -93,7 +93,7 @@ This subcommand calls into digilent_vivado_checkin.tcl in order to collect sourc
93
93
##### TCL:
94
94
> `set argv "-r D:/Github/Zybo-Z7/hw"`
95
95
96
-
> `source digilent_vivado_checkin.tcl`
96
+
> `source checkin.tcl`
97
97
98
98
------------------------------------
99
99
## Other Files and Overall Structure
@@ -143,7 +143,7 @@ Once the repo exists locally, the Vivado project can be checked out from source.
143
143
144
144
Alternatively, the project can be checked out from within Vivado, by calling the following command in the TCL console:
Both of these commands create a Vivado project within the repository's `proj` folder. In the case of the Python command, the project then needs to be opened from within Vivado.
0 commit comments