From aff7fa008f8752cf192f8be79fb01acc162c3c1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Tue, 12 Jun 2018 19:14:43 +0200 Subject: [PATCH] Revert "artiq_flash/sayma: check for DONE after load" This reverts commit 2de5b0cf2510ec97b76cce4e33a5ca4c5ac877b1. would make artiq uninstallable on windows as win buildbot is broken --- artiq/frontend/artiq_flash.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/artiq/frontend/artiq_flash.py b/artiq/frontend/artiq_flash.py index d9589066d..813cd7846 100755 --- a/artiq/frontend/artiq_flash.py +++ b/artiq/frontend/artiq_flash.py @@ -114,8 +114,6 @@ class Programmer: self._loaded = defaultdict(lambda: None) self._script = ["init"] - add_commands(self._script, "source xilinx-stat.cfg") - def _transfer_script(self, script): if isinstance(self._client, LocalClient): return "[find {}]".format(script) @@ -146,13 +144,6 @@ class Programmer: "pld load {pld} {{{filename}}}", pld=pld, filename=bitfile) - def check_done(self, tap): - add_commands(self._script, - "set stat [xilinx_get_stat {tap}]", - "echo [format {{{tap} stat: 0b%032b}} $stat]", - "if ![expr $stat & 0x1000] {{echo \"not DONE\"; exit 1;}}", - tap=tap) - def load_proxy(self): raise NotImplementedError @@ -364,10 +355,8 @@ def main(): if args.target == "sayma": rtm_gateware_bit = artifact_path("rtm_gateware", "rtm.bit") programmer.load(rtm_gateware_bit, 0) - programmer.check_done("xc7.tap") gateware_bit = artifact_path(variant, "gateware", "top.bit") programmer.load(gateware_bit, 1) - programmer.check_done("xcu.tap") else: gateware_bit = artifact_path(variant, "gateware", "top.bit") programmer.load(gateware_bit, 0)