Config.in 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. config BR2_PACKAGE_GR_OSMOSDR
  2. bool "gr-osmosdr"
  3. depends on BR2_PACKAGE_GNURADIO
  4. select BR2_PACKAGE_GNURADIO_BLOCKS
  5. select BR2_PACKAGE_GNURADIO_FFT
  6. select BR2_PACKAGE_GNURADIO_FILTER
  7. help
  8. GNU Radio block for interfacing with various radio hardware
  9. http://osmocom.org/projects/osmosdr
  10. if BR2_PACKAGE_GR_OSMOSDR
  11. config BR2_PACKAGE_GR_OSMOSDR_IQFILE
  12. bool "IQ File Source support"
  13. help
  14. Enable IQ File Source support
  15. config BR2_PACKAGE_GR_OSMOSDR_RTLSDR
  16. bool "Osmocom RTLSDR support"
  17. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # librtlsdr -> libusb
  18. select BR2_PACKAGE_LIBRTLSDR
  19. help
  20. Enable Osmocom RTLSDR support
  21. comment "Osmocom RTLSDR support needs a toolchain w/ gcc >= 4.9"
  22. depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
  23. config BR2_PACKAGE_GR_OSMOSDR_RTLSDR_TCP
  24. bool "RTLSDR TCP Client support"
  25. help
  26. Enable RTLSDR TCP client support
  27. config BR2_PACKAGE_GR_OSMOSDR_RFSPACE
  28. bool "RFSPACE Receivers support"
  29. help
  30. Enable RFSPACE Receivers support
  31. config BR2_PACKAGE_GR_OSMOSDR_HACKRF
  32. bool "Osmocom HACKRF support"
  33. depends on !BR2_STATIC_LIBS # hackrf
  34. depends on BR2_TOOLCHAIN_HAS_THREADS # hackrf
  35. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # hackrf
  36. select BR2_PACKAGE_HACKRF
  37. help
  38. Enable Osmocom HACKRF support
  39. comment "hackrf support needs a toolchain w/ threads, dynamic library, gcc >= 4.9"
  40. depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || \
  41. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
  42. endif