Config.in 905 B

123456789101112131415161718192021222324252627282930
  1. comment "usbredir needs a toolchain w/ threads"
  2. depends on !BR2_TOOLCHAIN_HAS_THREADS
  3. config BR2_PACKAGE_USBREDIR
  4. bool "usbredir"
  5. depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
  6. select BR2_PACKAGE_LIBUSB
  7. help
  8. usbredir is the name of a network protocol for sending usb
  9. device traffic over a network connection. It is also the
  10. name of the software package offering a parsing library, a
  11. usbredirhost library and several utilities implementing this
  12. protocol.
  13. Note: only the library is installed, not the utilities. Say
  14. 'y' below if you want the server too.
  15. http://www.spice-space.org/page/UsbRedir
  16. if BR2_PACKAGE_USBREDIR
  17. config BR2_PACKAGE_USBREDIR_SERVER
  18. bool "usbredirserver on target"
  19. help
  20. If you want to serve usbredir requests on your target, say
  21. 'y' here to have the usbredir server on the target.
  22. Note: the server is not required to use the library.
  23. endif