Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update vivado version to newer #108

Merged
merged 1 commit into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nebula/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def linux_tools_map(self, branch, board):
elif "2019_r1" in branch.lower() or "2019.1" in branch.lower():
vivado = "2018.3"
elif branch == "master":
vivado = "2019.1"
vivado = "2021.2"
else:
raise Exception("Unsupported branch")
if "zcu102" in board.lower():
Expand Down
2 changes: 1 addition & 1 deletion nebula/jtag.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class jtag(utils):

def __init__(
self,
vivado_version="2019.1",
vivado_version="2021.2",
custom_vivado_path=None,
yamlfilename=None,
board_name=None,
Expand Down
4 changes: 2 additions & 2 deletions nebula/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,15 +298,15 @@ def usbmux_backup_bootfiles(

@task(
help={
"vivado_version": "Set vivado version. Defaults to 2019.1",
"vivado_version": "Set vivado version. Defaults to 2021.2",
"custom_vivado_path": "Full path to vivado settings64 file. When set ignores vivado version",
"yamlfilename": "Path to yaml config file. Default: /etc/default/nebula",
"board_name": "Name of DUT design (Ex: zynq-zc706-adv7511-fmcdaq2). Require for multi-device config files",
},
)
def jtag_reboot(
c,
vivado_version="2019.1",
vivado_version="2021.2",
custom_vivado_path=None,
yamlfilename="/etc/default/nebula",
board_name=None,
Expand Down
Loading