Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #
  2. # RF switch subsystem configuration
  3. #
  4. menuconfig RFKILL
  5. tristate "RF switch subsystem support"
  6. help
  7. Say Y here if you want to have control over RF switches
  8. found on many WiFi and Bluetooth cards.
  9. To compile this driver as a module, choose M here: the
  10. module will be called rfkill.
  11. config RFKILL_PM
  12. bool "Power off on suspend"
  13. depends on RFKILL && PM
  14. default y
  15. # LED trigger support
  16. config RFKILL_LEDS
  17. bool
  18. depends on RFKILL
  19. depends on LEDS_TRIGGERS = y || RFKILL = LEDS_TRIGGERS
  20. default y
  21. config RFKILL_INPUT
  22. bool "RF switch input support" if EXPERT
  23. depends on RFKILL
  24. depends on INPUT = y || RFKILL = INPUT
  25. default y if !EXPERT
  26. config RFKILL_REGULATOR
  27. tristate "Generic rfkill regulator driver"
  28. depends on RFKILL || !RFKILL
  29. depends on REGULATOR
  30. help
  31. This options enable controlling radio transmitters connected to
  32. voltage regulator using the regulator framework.
  33. To compile this driver as a module, choose M here: the module will
  34. be called rfkill-regulator.
  35. config RFKILL_GPIO
  36. tristate "GPIO RFKILL driver"
  37. depends on RFKILL
  38. depends on GPIOLIB || COMPILE_TEST
  39. default n
  40. help
  41. If you say yes here you get support of a generic gpio RFKILL
  42. driver.