aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Wild <ewild@sysmocom.de>2020-08-03 02:34:31 +0200
committerEric Wild <ewild@sysmocom.de>2020-08-03 02:34:31 +0200
commit911082ff85dd3bdff986b8928b041644b3824e72 (patch)
tree97a2739d775aec87efcc72db4af72a529a37f2da
parentdadabeceafdfb1c4b0487c8b20d79d47179f05b5 (diff)
disable OsmoSDR as well as MiriSDR device supportv0.2.1
The actual osmosdr had only a very limited production run many years ago and is therefore of little interest to most gr-osmosdr users. Mirisdr was experimental at best, because the dongles were never widely avaialble outside of Japan and had multiple unconnected antenna ports.
-rw-r--r--CMakeLists.txt4
-rw-r--r--lib/CMakeLists.txt16
2 files changed, 10 insertions, 10 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e89f584..9679f88 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -165,9 +165,9 @@ message (STATUS " Found Volk: ${Volk_FOUND}")
# Hardware drivers
####################
-find_package(LibOsmoSDR)
+#find_package(LibOsmoSDR)
find_package(LibRTLSDR)
-find_package(LibMiriSDR)
+#find_package(LibMiriSDR)
if(ENABLE_NONFREE)
find_package(LibSDRplay)
endif(ENABLE_NONFREE)
diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt
index a6b8580..f699c0d 100644
--- a/lib/CMakeLists.txt
+++ b/lib/CMakeLists.txt
@@ -138,10 +138,10 @@ endif(ENABLE_IQBALANCE)
########################################################################
# Setup OsmoSDR component
########################################################################
-GR_REGISTER_COMPONENT("sysmocom OsmoSDR" ENABLE_OSMOSDR LIBOSMOSDR_FOUND)
-if(ENABLE_OSMOSDR)
- add_subdirectory(osmosdr)
-endif(ENABLE_OSMOSDR)
+#GR_REGISTER_COMPONENT("sysmocom OsmoSDR" ENABLE_OSMOSDR LIBOSMOSDR_FOUND)
+#if(ENABLE_OSMOSDR)
+# add_subdirectory(osmosdr)
+#endif(ENABLE_OSMOSDR)
########################################################################
# Setup FCD component
@@ -186,10 +186,10 @@ endif(ENABLE_UHD)
########################################################################
# Setup MiriSDR component
########################################################################
-GR_REGISTER_COMPONENT("Osmocom MiriSDR" ENABLE_MIRI LIBMIRISDR_FOUND)
-if(ENABLE_MIRI)
- add_subdirectory(miri)
-endif(ENABLE_MIRI)
+#GR_REGISTER_COMPONENT("Osmocom MiriSDR" ENABLE_MIRI LIBMIRISDR_FOUND)
+#if(ENABLE_MIRI)
+# add_subdirectory(miri)
+#endif(ENABLE_MIRI)
########################################################################
# Setup SDRplay component