f931ac2819
Drop BR2_PACKAGE_GR_OSMOSDR_PYTHON as disabling python will raise the following build failure if BR2_PACKAGE_GNURADIO_PYTHON is set since bump of gnuradio to version 3.10.4.0 in commite37c110bea
and51d3ad9732
: CMake Error at lib/CMakeLists.txt:51 (add_library): Target "gnuradio-osmosdr" links to target "Python::Module" but the target was not found. Perhaps a find_package() call is missing for an IMPORTED target, or an ALIAS target is missing? No entry in Config.in.legacy is needed as python support in gr-osmosdr will now automatically be enabled if BR2_PACKAGE_GNURADIO_PYTHON is set Fixes: - http://autobuild.buildroot.org/results/49e9f7bf8bfc7008688c1a3bc3744b7d3be3ce18 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
40 lines
984 B
Plaintext
40 lines
984 B
Plaintext
config BR2_PACKAGE_GR_OSMOSDR
|
|
bool "gr-osmosdr"
|
|
depends on BR2_PACKAGE_GNURADIO
|
|
select BR2_PACKAGE_GNURADIO_BLOCKS
|
|
select BR2_PACKAGE_GNURADIO_FFT
|
|
select BR2_PACKAGE_GNURADIO_FILTER
|
|
help
|
|
GNU Radio block for interfacing with various radio hardware
|
|
|
|
http://osmocom.org/projects/osmosdr
|
|
|
|
if BR2_PACKAGE_GR_OSMOSDR
|
|
|
|
config BR2_PACKAGE_GR_OSMOSDR_IQFILE
|
|
bool "IQ File Source support"
|
|
help
|
|
Enable IQ File Source support
|
|
|
|
config BR2_PACKAGE_GR_OSMOSDR_RTLSDR
|
|
bool "Osmocom RTLSDR support"
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # librtlsdr -> libusb
|
|
select BR2_PACKAGE_LIBRTLSDR
|
|
help
|
|
Enable Osmocom RTLSDR support
|
|
|
|
comment "Osmocom RTLSDR support needs a toolchain w/ gcc >= 4.9"
|
|
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
|
|
|
config BR2_PACKAGE_GR_OSMOSDR_RTLSDR_TCP
|
|
bool "RTLSDR TCP Client support"
|
|
help
|
|
Enable RTLSDR TCP client support
|
|
|
|
config BR2_PACKAGE_GR_OSMOSDR_RFSPACE
|
|
bool "RFSPACE Receivers support"
|
|
help
|
|
Enable RFSPACE Receivers support
|
|
|
|
endif
|