Config.in 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. config BR2_PACKAGE_LM_SENSORS
  2. bool "lm-sensors"
  3. help
  4. Lm-sensors is a hardware health monitoring package for
  5. Linux. It allows you to access information from
  6. temperature, voltage, and fan speed sensors. It
  7. works with most newer systems.
  8. https://hwmon.wiki.kernel.org
  9. if BR2_PACKAGE_LM_SENSORS
  10. comment "lm-sensors tools"
  11. config BR2_PACKAGE_LM_SENSORS_SENSORS
  12. bool "sensors"
  13. default y
  14. help
  15. Sensors is used to show the current readings of all sensor
  16. chips.
  17. config BR2_PACKAGE_LM_SENSORS_FANCONTROL
  18. bool "fancontrol"
  19. help
  20. Script for temperature driven fan control
  21. config BR2_PACKAGE_LM_SENSORS_ISADUMP
  22. bool "isadump"
  23. depends on BR2_i386 || BR2_x86_64
  24. help
  25. Isadump is a small helper program to examine registers
  26. visible through the ISA bus.
  27. config BR2_PACKAGE_LM_SENSORS_ISASET
  28. bool "isaset"
  29. depends on BR2_i386 || BR2_x86_64
  30. help
  31. Isaset is a small helper program to set register visible
  32. through the ISA bus.
  33. config BR2_PACKAGE_LM_SENSORS_PWMCONFIG
  34. bool "pwmconfig"
  35. help
  36. Pwmconfig searches your sensors for pulse width modulation
  37. (PWM) controls, and tests each one to see if it controls a fan
  38. on your motherboard.
  39. config BR2_PACKAGE_LM_SENSORS_SENSORS_DETECT
  40. bool "sensors-detect"
  41. depends on BR2_PACKAGE_PERL
  42. help
  43. Sensors-detect is an interactive program for detecting
  44. available hardware monitoring chips.
  45. comment "sensors-detect needs perl"
  46. depends on !BR2_PACKAGE_PERL
  47. endif