aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWade Fife <wade.fife@ettus.com>2022-05-04 13:59:14 -0500
committerAaron Rossetto <aaron.rossetto@ni.com>2022-06-10 13:24:04 -0500
commit3fb4e7b844ad313ae88bd1a02f2c7734f5f115a6 (patch)
treef7cad76f72fcac02d0fda5ef207851cc08dc2f96
parentefab53130dd569c92c0b0cc6adeb36a150902624 (diff)
downloaduhd-3fb4e7b844ad313ae88bd1a02f2c7734f5f115a6.tar.gz
uhd-3fb4e7b844ad313ae88bd1a02f2c7734f5f115a6.tar.bz2
uhd-3fb4e7b844ad313ae88bd1a02f2c7734f5f115a6.zip
mpm: Fix expected CPLD filename for x4xx
Change the filename expected by x4xx_update_cpld to match the name used by package_images and downloaded by uhd_images_downloader.
-rw-r--r--mpm/python/usrp_mpm/periph_manager/x4xx_update_cpld.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/x4xx_update_cpld.py b/mpm/python/usrp_mpm/periph_manager/x4xx_update_cpld.py
index 9592903b6..3edfdd8d8 100644
--- a/mpm/python/usrp_mpm/periph_manager/x4xx_update_cpld.py
+++ b/mpm/python/usrp_mpm/periph_manager/x4xx_update_cpld.py
@@ -208,8 +208,8 @@ def get_mb_compat_rev():
def get_default_cpld_image_names(compat_rev):
"""Determine the default CPLD image name based on the compat_rev"""
- default_cpld_image_10m04 = ['cpld-x410-10m04.rpd', 'x4xx_x410_cpld_default_10m04.rpd']
- default_cpld_image_10m08 = ['cpld-x410-10m08.rpd', 'x4xx_x410_cpld_default_10m08.rpd']
+ default_cpld_image_10m04 = ['cpld-x410-10m04.rpd', 'usrp_x410_cpld_10m04.rpd']
+ default_cpld_image_10m08 = ['cpld-x410-10m08.rpd', 'usrp_x410_cpld_10m08.rpd']
default_image_name_mapping = {
1: default_cpld_image_10m04,
2: default_cpld_image_10m04,