aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/tools
diff options
context:
space:
mode:
authorBrent Stapleton <brent.stapleton@ettus.com>2018-02-22 11:06:23 -0800
committerMartin Braun <martin.braun@ettus.com>2018-03-05 15:56:41 -0800
commit1b49089d85006964b450bc3c3d70e6197c518efc (patch)
tree106382e55030320e782c3680fc6caa428b166a87 /mpm/tools
parent94fcb32310eecad96f77394f9e66d69593e9d1f6 (diff)
downloaduhd-1b49089d85006964b450bc3c3d70e6197c518efc.tar.gz
uhd-1b49089d85006964b450bc3c3d70e6197c518efc.tar.bz2
uhd-1b49089d85006964b450bc3c3d70e6197c518efc.zip
mpm: break up device compilation
Breaking up dboard compilation based on the target MPM_DEVICE.
Diffstat (limited to 'mpm/tools')
-rw-r--r--mpm/tools/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/mpm/tools/CMakeLists.txt b/mpm/tools/CMakeLists.txt
index 727635a02..1aa079f28 100644
--- a/mpm/tools/CMakeLists.txt
+++ b/mpm/tools/CMakeLists.txt
@@ -13,8 +13,8 @@ INSTALL(PROGRAMS
SET(eeprom_tool_sources)
SET(eeprom_tool_libs)
-IF("${MPM_DEVICE}" STREQUAL "n310")
- MESSAGE(STATUS "Adding N310-specific EEPROM tools...")
+IF("${MPM_DEVICE}" STREQUAL "n3xx")
+ MESSAGE(STATUS "Adding N3XX-specific EEPROM tools...")
SET(eeprom_tool_libs eeprom.c)
SET(eeprom_tool_sources
db-dump.c
@@ -27,7 +27,7 @@ IF("${MPM_DEVICE}" STREQUAL "n310")
eeprom-set-flags.c
fan-limits.c
)
-ENDIF("${MPM_DEVICE}" STREQUAL "n310")
+ENDIF("${MPM_DEVICE}" STREQUAL "n3xx")
#for each source: build an executable and install
FOREACH(eeprom_tool_source ${eeprom_tool_sources})