aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/python/usrp_mpm/periph_manager
diff options
context:
space:
mode:
authorMichael Auchter <michael.auchter@ni.com>2020-10-22 10:34:56 -0500
committerAaron Rossetto <aaron.rossetto@ni.com>2021-02-09 07:36:08 -0600
commitfa6e7a7430b3f4e4b534ac6d8f7d07b3319e0e39 (patch)
tree3c0b2ae125322eecf75f88a2d5165e908c8e91de /mpm/python/usrp_mpm/periph_manager
parent5824046ff307f62b22207c53fb9f7ccc0f13980b (diff)
downloaduhd-fa6e7a7430b3f4e4b534ac6d8f7d07b3319e0e39.tar.gz
uhd-fa6e7a7430b3f4e4b534ac6d8f7d07b3319e0e39.tar.bz2
uhd-fa6e7a7430b3f4e4b534ac6d8f7d07b3319e0e39.zip
mpm: filesystem_status: tolerate absence of mender
If the mender utility is not installed or exits with a failure, return NULL for the artifact rather than raising an exception (and disrupting device initialization).
Diffstat (limited to 'mpm/python/usrp_mpm/periph_manager')
-rw-r--r--mpm/python/usrp_mpm/periph_manager/base.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/base.py b/mpm/python/usrp_mpm/periph_manager/base.py
index 324e47dc9..a6bffafed 100644
--- a/mpm/python/usrp_mpm/periph_manager/base.py
+++ b/mpm/python/usrp_mpm/periph_manager/base.py
@@ -168,7 +168,9 @@ class PeriphManagerBase(object):
version_string = ""
mboard_info["mpm_sw_version"] = version_string
- mboard_info["fs_version"] = get_fs_version()
+ fs_version = get_fs_version()
+ if fs_version is not None:
+ mboard_info["fs_version"] = fs_version
# Mender artifacts are generally not present on a machine hosting
# a simulated device--let it slide if not found on sim devices
try: