sysfs-class-rfkill 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. rfkill - radio frequency (RF) connector kill switch support
  2. For details to this subsystem look at Documentation/rfkill.txt.
  3. For the deprecated /sys/class/rfkill/*/state and
  4. /sys/class/rfkill/*/claim knobs of this interface look in
  5. Documentation/ABI/obsolete/sysfs-class-rfkill.
  6. What: /sys/class/rfkill
  7. Date: 09-Jul-2007
  8. KernelVersion: v2.6.22
  9. Contact: linux-wireless@vger.kernel.org,
  10. Description: The rfkill class subsystem folder.
  11. Each registered rfkill driver is represented by an rfkillX
  12. subfolder (X being an integer > 0).
  13. What: /sys/class/rfkill/rfkill[0-9]+/name
  14. Date: 09-Jul-2007
  15. KernelVersion v2.6.22
  16. Contact: linux-wireless@vger.kernel.org
  17. Description: Name assigned by driver to this key (interface or driver name).
  18. Values: arbitrary string.
  19. What: /sys/class/rfkill/rfkill[0-9]+/type
  20. Date: 09-Jul-2007
  21. KernelVersion v2.6.22
  22. Contact: linux-wireless@vger.kernel.org
  23. Description: Driver type string ("wlan", "bluetooth", etc).
  24. Values: See include/linux/rfkill.h.
  25. What: /sys/class/rfkill/rfkill[0-9]+/persistent
  26. Date: 09-Jul-2007
  27. KernelVersion v2.6.22
  28. Contact: linux-wireless@vger.kernel.org
  29. Description: Whether the soft blocked state is initialised from non-volatile
  30. storage at startup.
  31. Values: A numeric value.
  32. 0: false
  33. 1: true
  34. What: /sys/class/rfkill/rfkill[0-9]+/hard
  35. Date: 12-March-2010
  36. KernelVersion v2.6.34
  37. Contact: linux-wireless@vger.kernel.org
  38. Description: Current hardblock state. This file is read only.
  39. Values: A numeric value.
  40. 0: inactive
  41. The transmitter is (potentially) active.
  42. 1: active
  43. The transmitter is forced off by something outside of
  44. the driver's control.
  45. What: /sys/class/rfkill/rfkill[0-9]+/soft
  46. Date: 12-March-2010
  47. KernelVersion v2.6.34
  48. Contact: linux-wireless@vger.kernel.org
  49. Description: Current softblock state. This file is read and write.
  50. Values: A numeric value.
  51. 0: inactive
  52. The transmitter is (potentially) active.
  53. 1: active
  54. The transmitter is turned off by software.