Kconfig 1.5 KB

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