Kconfig 774 B

12345678910111213141516171819202122232425262728293031323334
  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. # LED trigger support
  12. config RFKILL_LEDS
  13. bool
  14. depends on RFKILL
  15. depends on LEDS_TRIGGERS = y || RFKILL = LEDS_TRIGGERS
  16. default y
  17. config RFKILL_INPUT
  18. bool "RF switch input support" if EXPERT
  19. depends on RFKILL
  20. depends on INPUT = y || RFKILL = INPUT
  21. default y if !EXPERT
  22. config RFKILL_GPIO
  23. tristate "GPIO RFKILL driver"
  24. depends on RFKILL
  25. depends on GPIOLIB || COMPILE_TEST
  26. default n
  27. help
  28. If you say yes here you get support of a generic gpio RFKILL
  29. driver.