Kconfig 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. config CARL9170
  2. tristate "Linux Community AR9170 802.11n USB support"
  3. depends on USB && MAC80211
  4. select ATH_COMMON
  5. select FW_LOADER
  6. select CRC32
  7. help
  8. This is the mainline driver for the Atheros "otus" 802.11n USB devices.
  9. It needs a special firmware (carl9170-1.fw), which can be downloaded
  10. from our wiki here:
  11. <http://wireless.kernel.org/en/users/Drivers/carl9170>
  12. If you choose to build a module, it'll be called carl9170.
  13. config CARL9170_LEDS
  14. bool "SoftLED Support"
  15. depends on CARL9170
  16. select MAC80211_LEDS
  17. select LEDS_CLASS
  18. select NEW_LEDS
  19. default y
  20. help
  21. This option is necessary, if you want your device' LEDs to blink
  22. Say Y, unless you need the LEDs for firmware debugging.
  23. config CARL9170_DEBUGFS
  24. bool "DebugFS Support"
  25. depends on CARL9170 && DEBUG_FS && MAC80211_DEBUGFS
  26. default n
  27. help
  28. Export several driver and device internals to user space.
  29. Say N.
  30. config CARL9170_WPC
  31. bool
  32. depends on CARL9170 && (INPUT = y || INPUT = CARL9170)
  33. default y
  34. config CARL9170_HWRNG
  35. bool "Random number generator"
  36. depends on CARL9170 && (HW_RANDOM = y || HW_RANDOM = CARL9170)
  37. default n
  38. help
  39. Provides a hardware random number generator to the kernel.
  40. SECURITY WARNING: It's relatively easy to eavesdrop all
  41. generated random numbers from the transport stream with
  42. usbmon [software] or special usb sniffer hardware.
  43. Say N, unless your setup[i.e.: embedded system] has no
  44. other rng source and you can afford to take the risk.