xref: /OK3568_Linux_fs/buildroot/package/usbredir/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1comment "usbredir needs a toolchain w/ threads, gcc >= 4.9"
2	depends on !BR2_TOOLCHAIN_HAS_THREADS || \
3		!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
4
5config BR2_PACKAGE_USBREDIR
6	bool "usbredir"
7	depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
8	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
9	select BR2_PACKAGE_LIBUSB
10	help
11	  usbredir is the name of a network protocol for sending usb
12	  device traffic over a network connection. It is also the
13	  name of the software package offering a parsing library, a
14	  usbredirhost library and several utilities implementing this
15	  protocol.
16
17	  Note: only the library is installed, not the utilities. Say
18	  'y' below if you want the server too.
19
20	  http://www.spice-space.org/page/UsbRedir
21
22if BR2_PACKAGE_USBREDIR
23
24config BR2_PACKAGE_USBREDIR_SERVER
25	bool "usbredirserver on target"
26	help
27	  If you want to serve usbredir requests on your target, say
28	  'y' here to have the usbredir server on the target.
29
30	  Note: the server is not required to use the library.
31
32endif
33