diff options
author | Martin Braun <martin.braun@ettus.com> | 2018-01-12 17:11:05 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-01-12 17:30:53 -0800 |
commit | deccab5a1b90df299b7b194bfef9da046f8f319b (patch) | |
tree | dac633f8e1fdabc370ff6bbacbf53d22332f260c /mpm/tools/CMakeLists.txt | |
parent | efc0b22f7ea9b808512cb59a5a52202adf84b6e1 (diff) | |
download | uhd-deccab5a1b90df299b7b194bfef9da046f8f319b.tar.gz uhd-deccab5a1b90df299b7b194bfef9da046f8f319b.tar.bz2 uhd-deccab5a1b90df299b7b194bfef9da046f8f319b.zip |
mpm: Add EEPROM utilities for N310
Actually-written-by: Moritz Fischer <moritz.fischer@ettus.com>
Diffstat (limited to 'mpm/tools/CMakeLists.txt')
-rw-r--r-- | mpm/tools/CMakeLists.txt | 35 |
1 files changed, 31 insertions, 4 deletions
diff --git a/mpm/tools/CMakeLists.txt b/mpm/tools/CMakeLists.txt index 75cda4853..727635a02 100644 --- a/mpm/tools/CMakeLists.txt +++ b/mpm/tools/CMakeLists.txt @@ -1,10 +1,37 @@ # -# Copyright 2017 Ettus Research, National Instruments Company +# Copyright 2017 Ettus Research, a National Instruments Company # # SPDX-License-Identifier: GPL-3.0 # INSTALL(PROGRAMS - mpm_shell.py - mpm_debug.py - DESTINATION ${RUNTIME_DIR}) + mpm_shell.py + mpm_debug.py + DESTINATION ${RUNTIME_DIR} +) + +SET(eeprom_tool_sources) +SET(eeprom_tool_libs) + +IF("${MPM_DEVICE}" STREQUAL "n310") + MESSAGE(STATUS "Adding N310-specific EEPROM tools...") + SET(eeprom_tool_libs eeprom.c) + SET(eeprom_tool_sources + db-dump.c + db-id.c + db-init.c + eeprom-blank.c + eeprom-dump.c + eeprom-id.c + eeprom-init.c + eeprom-set-flags.c + fan-limits.c + ) +ENDIF("${MPM_DEVICE}" STREQUAL "n310") + +#for each source: build an executable and install +FOREACH(eeprom_tool_source ${eeprom_tool_sources}) + GET_FILENAME_COMPONENT(eeprom_tool ${eeprom_tool_source} NAME_WE) + ADD_EXECUTABLE(${eeprom_tool} ${eeprom_tool_source} ${eeprom_tool_libs}) + INSTALL(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/${eeprom_tool} DESTINATION ${RUNTIME_DIR}) +ENDFOREACH(eeprom_tool_source ${eeprom_tool_sources}) |