summaryrefslogtreecommitdiffstats
path: root/package/kernel/modules/hwmon.mk
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-09-23 21:21:51 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-09-23 21:21:51 +0000
commit48e6e98d6c64a2c8e3d37eeeebaa3c473672fa01 (patch)
tree62d3533180405811c16c71b4046ad387655e9e84 /package/kernel/modules/hwmon.mk
parent6fadc72b1db0aea3328f7156fb086c2b2b68dc31 (diff)
add LM77 sensors support (closes: #2419)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9002 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kernel/modules/hwmon.mk')
-rw-r--r--package/kernel/modules/hwmon.mk18
1 files changed, 17 insertions, 1 deletions
diff --git a/package/kernel/modules/hwmon.mk b/package/kernel/modules/hwmon.mk
index 753c45575..3dd3f4ceb 100644
--- a/package/kernel/modules/hwmon.mk
+++ b/package/kernel/modules/hwmon.mk
@@ -29,13 +29,29 @@ endef
$(eval $(call KernelPackage,hwmon-core))
+define KernelPackage/hwmon-lm77
+ SUBMENU:=$(HWMON_MENU)
+ TITLE:=LM77 monitoring support
+ DEPENDS:=kmod-hwmon-core
+ KCONFIG:=CONFIG_SENSORS_LM77
+ FILES:=$(LINUX_DIR)/drivers/hwmon/lm77.$(LINUX_KMOD_SUFFIX)
+ AUTOLOAD:=$(call AutoLoad,60,lm77)
+endef
+
+define KernelPackage/hwmon-lm77/description
+ Kernel module for LM77 thermal monitor chip
+endef
+
+$(eval $(call KernelPackage,hwmon-lm77))
+
+
define KernelPackage/hwmon-pc87360
SUBMENU:=$(HWMON_MENU)
TITLE:=PC87360 monitoring support
+ DEPENDS:=kmod-hwmon-core
KCONFIG:=CONFIG_SENSORS_PC87360
FILES:=$(LINUX_DIR)/drivers/hwmon/pc87360.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,50,pc87360)
- DEPENDS:=kmod-hwmon-core
endef
define KernelPackage/hwmon-pc87360/description