aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/python
diff options
context:
space:
mode:
Diffstat (limited to 'mpm/python')
-rw-r--r--mpm/python/usrp_mpm/components.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mpm/python/usrp_mpm/components.py b/mpm/python/usrp_mpm/components.py
index a87dbdce7..b79c1d9cb 100644
--- a/mpm/python/usrp_mpm/components.py
+++ b/mpm/python/usrp_mpm/components.py
@@ -102,7 +102,8 @@ class ZynqComponents(object):
self.log.trace("Compatibility check MPM <-> FPGA via DTS enabled")
dtsfilepath = filebasename + '.dts'
if not os.path.exists(dtsfilepath):
- self._log_and_raise("DTS file not found: {}".format(dtsfilepath))
+ self.log.warning("DTS file not found: {}, cannot check version of bitfile without DTS.".format(dtsfilepath))
+ return
self.log.trace("Parse DTS file {} for version information"\
.format(dtsfilepath))
fpga_versions = self._parse_dts_version_info_from_file(dtsfilepath)