Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #
  2. # Wireless USB Core configuration
  3. #
  4. config USB_WUSB
  5. tristate "Enable Wireless USB extensions (EXPERIMENTAL)"
  6. depends on EXPERIMENTAL
  7. depends on USB
  8. depends on PCI
  9. depends on UWB
  10. select CRYPTO
  11. select CRYPTO_BLKCIPHER
  12. select CRYPTO_CBC
  13. select CRYPTO_MANAGER
  14. select CRYPTO_AES
  15. help
  16. Enable the host-side support for Wireless USB.
  17. To compile this support select Y (built in). It is safe to
  18. select even if you don't have the hardware.
  19. config USB_WUSB_CBAF
  20. tristate "Support WUSB Cable Based Association (CBA)"
  21. depends on USB
  22. help
  23. Some WUSB devices support Cable Based Association. It's used to
  24. enable the secure communication between the host and the
  25. device.
  26. Enable this option if your WUSB device must to be connected
  27. via wired USB before establishing a wireless link.
  28. It is safe to select even if you don't have a compatible
  29. hardware.
  30. config USB_WUSB_CBAF_DEBUG
  31. bool "Enable CBA debug messages"
  32. depends on USB_WUSB_CBAF
  33. help
  34. Say Y here if you want the CBA to produce a bunch of debug messages
  35. to the system log. Select this if you are having a problem with
  36. CBA support and want to see more of what is going on.