From 24f331504a924745fcc0442554c78803c9bb4154 Mon Sep 17 00:00:00 2001 From: Trecia Agoylo Date: Mon, 11 Mar 2024 12:06:26 +0800 Subject: [PATCH] update vivado version to newer Signed-off-by: Trecia Agoylo --- nebula/builder.py | 2 +- nebula/jtag.py | 2 +- nebula/tasks.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nebula/builder.py b/nebula/builder.py index fbf9e9b0..4cc66436 100644 --- a/nebula/builder.py +++ b/nebula/builder.py @@ -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(): diff --git a/nebula/jtag.py b/nebula/jtag.py index c2e6c664..849b5dde 100644 --- a/nebula/jtag.py +++ b/nebula/jtag.py @@ -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, diff --git a/nebula/tasks.py b/nebula/tasks.py index d6b8155e..925abd91 100644 --- a/nebula/tasks.py +++ b/nebula/tasks.py @@ -298,7 +298,7 @@ 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", @@ -306,7 +306,7 @@ def usbmux_backup_bootfiles( ) def jtag_reboot( c, - vivado_version="2019.1", + vivado_version="2021.2", custom_vivado_path=None, yamlfilename="/etc/default/nebula", board_name=None,