buildroot/package/gr-osmosdr/Config.in
Gwenhael Goavec-Merou 89d210449c gr-osmosdr: new package
Add support for gr-osmosdr - a GNU Radio block for interfacing with various
radio hardware.

Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
[Thomas:
 - instead of selecting BR2_PACKAGE_GNURADIO, use "depends
   on". Indeed, it is fairly obvious for a user that some GNURadio
   extensions require GNURadio to be built. And it avoids the need to
   replicate all the complex dependencies of GNURadio.
 - remove comment that the Python support needs Python. It's fairly
   obvious, no?
 - remove comment about the thread dependency of
   BR2_PACKAGE_GR_OSMOSDR_RTLSDR, since anyway GNURadio already need
   threads. Yes, we sometimes still add such dependencies, but in the
   case of GNURadio, it's highly unlikely that GNURadio will ever
   loose the thread dependency.
 - use "NO" instead of "no" as the value for
   GR_OSMOSDR_SUPPORTS_IN_SOURCE_BUILD since we always use upper-case
   letters for the value of such booleans.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-02-21 22:50:41 +01:00

38 lines
832 B
Plaintext

config BR2_PACKAGE_GR_OSMOSDR
bool "gr-osmosdr"
depends on BR2_PACKAGE_GNURADIO
select BR2_PACKAGE_GNURADIO_BLOCKS
help
GNU Radio block for interfacing with various radio hardware
if BR2_PACKAGE_GR_OSMOSDR
config BR2_PACKAGE_GR_OSMOSDR_PYTHON
bool "python support"
depends on BR2_PACKAGE_GNURADIO_PYTHON
help
Enable Python support
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"
select BR2_PACKAGE_LIBRTLSDR
help
Enable Osmocom RTLSDR support
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