diff options
author | Moritz Fischer <moritz.fischer@ettus.com> | 2018-01-04 11:31:45 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-01-04 15:01:41 -0800 |
commit | 46fd41725308e8abcfed4420162eb1cdf83923a3 (patch) | |
tree | 390860412663f1b868a0ca9ddb18674a158bf974 /mpm/systemd/CMakeLists.txt | |
parent | 83dd47dc882421f96830fa55bd86405d1d80907f (diff) | |
download | uhd-46fd41725308e8abcfed4420162eb1cdf83923a3.tar.gz uhd-46fd41725308e8abcfed4420162eb1cdf83923a3.tar.bz2 uhd-46fd41725308e8abcfed4420162eb1cdf83923a3.zip |
mpm: systemd: Add a systemd service file for MPM
Add a service file to start MPM on bootup via systemd.
Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com>
Diffstat (limited to 'mpm/systemd/CMakeLists.txt')
-rw-r--r-- | mpm/systemd/CMakeLists.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mpm/systemd/CMakeLists.txt b/mpm/systemd/CMakeLists.txt new file mode 100644 index 000000000..bd8dded91 --- /dev/null +++ b/mpm/systemd/CMakeLists.txt @@ -0,0 +1,21 @@ +# +# Copyright 2018 Ettus Research, National Instruments Company +# +# SPDX-License-Identifier: GPL-3.0 +# + +INCLUDE(FindPkgConfig) +PKG_CHECK_MODULES(SYSTEMD "systemd" REQUIRED) + +PKG_GET_VARIABLE(SYSTEMD_SYSTEM_UNITDIR systemd systemdsystemunitdir) +MESSAGE(STATUS "Systemd system unit directory ${SYSTEMD_SYSTEM_UNITDIR}") + +CONFIGURE_FILE( + ${CMAKE_CURRENT_SOURCE_DIR}/usrp-hwd.service.in + ${CMAKE_CURRENT_BINARY_DIR}/usrp-hwd.service +) + +INSTALL(FILES + ${CMAKE_CURRENT_BINARY_DIR}/usrp-hwd.service + DESTINATION ${SYSTEMD_SYSTEM_UNITDIR} +) |