Kconfig 952 B

1234567891011121314151617181920212223242526272829303132333435
  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_REGULATOR
  23. tristate "Generic rfkill regulator driver"
  24. depends on RFKILL || !RFKILL
  25. depends on REGULATOR
  26. help
  27. This options enable controlling radio transmitters connected to
  28. voltage regulator using the regulator framework.
  29. To compile this driver as a module, choose M here: the module will
  30. be called rfkill-regulator.