Config.in 862 B

1234567891011121314151617181920212223242526272829303132
  1. config BR2_PACKAGE_LIBRTLSDR
  2. bool "librtlsdr"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  4. select BR2_PACKAGE_LIBUSB
  5. help
  6. Library and command line programs for accessing
  7. RTL2832U SDR dongles.
  8. http://sdr.osmocom.org/trac/wiki/rtl-sdr/
  9. if BR2_PACKAGE_LIBRTLSDR
  10. config BR2_PACKAGE_LIBRTLSDR_DETACH_DRIVER
  11. bool "Detach kernel driver"
  12. default y
  13. help
  14. Enable this option if you would like librtlsdr to
  15. automatically detach any kernel driver associated to the
  16. RTL2832U USB device on startup if one is loaded.
  17. config BR2_PACKAGE_LIBRTLSDR_ZEROCOPY
  18. bool "Enable usbfs zero-copy support"
  19. default y
  20. help
  21. This option allows to use kernel usbfs mmap instead
  22. of buffers in userspace. If you experiment crash with
  23. kernel < 5.6, disable this option.
  24. endif
  25. comment "librtlsdr needs a toolchain w/ threads"
  26. depends on !BR2_TOOLCHAIN_HAS_THREADS