Kconfig 1.5 KB

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