2007-09-23 20:14:24 +03:00
|
|
|
#
|
2010-04-24 14:42:17 +03:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2007-09-23 20:14:24 +03:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
HWMON_MENU:=Hardware Monitoring Support
|
|
|
|
|
|
|
|
define KernelPackage/hwmon-core
|
|
|
|
SUBMENU:=$(HWMON_MENU)
|
|
|
|
TITLE:=Hardware monitoring support
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_HWMON \
|
|
|
|
CONFIG_HWMON_DEBUG_CHIP=n
|
|
|
|
FILES:= \
|
2010-07-12 17:06:13 +03:00
|
|
|
$(LINUX_DIR)/drivers/hwmon/hwmon.ko
|
2008-03-25 17:18:16 +02:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,hwmon)
|
2007-09-23 20:14:24 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/hwmon-core/description
|
|
|
|
Kernel modules for hardware monitoring
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,hwmon-core))
|
|
|
|
|
|
|
|
|
2010-04-24 14:42:17 +03:00
|
|
|
define AddDepends/hwmon
|
2009-07-22 14:13:03 +03:00
|
|
|
SUBMENU:=$(HWMON_MENU)
|
2010-01-22 10:18:04 +02:00
|
|
|
DEPENDS:=kmod-hwmon-core $(1)
|
|
|
|
endef
|
|
|
|
|
2010-10-04 12:17:42 +03:00
|
|
|
define KernelPackage/hwmon-lm63
|
|
|
|
TITLE:=LM63/64 monitoring support
|
|
|
|
KCONFIG:=CONFIG_SENSORS_LM63
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/hwmon/lm63.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,60,lm63)
|
|
|
|
$(call AddDepends/hwmon,+kmod-i2c-core)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/hwmon-lm63/description
|
|
|
|
Kernel module for lm63 and lm64 thermal monitor chip
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,hwmon-lm63))
|
|
|
|
|
2010-01-22 10:18:04 +02:00
|
|
|
|
|
|
|
define KernelPackage/hwmon-lm75
|
2009-07-22 14:13:03 +03:00
|
|
|
TITLE:=LM75 monitoring support
|
|
|
|
KCONFIG:=CONFIG_SENSORS_LM75
|
2010-07-12 17:06:13 +03:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/hwmon/lm75.ko
|
2009-07-22 14:13:03 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,lm75)
|
2010-04-29 07:04:19 +03:00
|
|
|
$(call AddDepends/hwmon,+kmod-i2c-core)
|
2009-07-22 14:13:03 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/hwmon-lm75/description
|
|
|
|
Kernel module for lm75 thermal monitor chip
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,hwmon-lm75))
|
|
|
|
|
|
|
|
|
2007-09-24 00:21:51 +03:00
|
|
|
define KernelPackage/hwmon-lm77
|
|
|
|
TITLE:=LM77 monitoring support
|
|
|
|
KCONFIG:=CONFIG_SENSORS_LM77
|
2010-07-12 17:06:13 +03:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/hwmon/lm77.ko
|
2007-09-24 00:21:51 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,lm77)
|
2010-04-29 07:04:19 +03:00
|
|
|
$(call AddDepends/hwmon,+kmod-i2c-core)
|
2007-09-24 00:21:51 +03:00
|
|
|
endef
|
2009-07-22 14:13:03 +03:00
|
|
|
|
2007-09-24 00:21:51 +03:00
|
|
|
define KernelPackage/hwmon-lm77/description
|
2009-07-22 14:13:03 +03:00
|
|
|
Kernel module for LM77 thermal monitor chip
|
2007-09-24 00:21:51 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,hwmon-lm77))
|
|
|
|
|
2010-04-29 07:04:19 +03:00
|
|
|
|
2008-07-30 02:49:16 +03:00
|
|
|
define KernelPackage/hwmon-lm90
|
|
|
|
TITLE:=LM90 monitoring support
|
|
|
|
KCONFIG:=CONFIG_SENSORS_LM90
|
2010-07-12 17:06:13 +03:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/hwmon/lm90.ko
|
2008-07-30 02:49:16 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,lm90)
|
2010-04-29 07:04:19 +03:00
|
|
|
$(call AddDepends/hwmon,+kmod-i2c-core)
|
2008-07-30 02:49:16 +03:00
|
|
|
endef
|
2009-07-22 14:13:03 +03:00
|
|
|
|
2008-07-30 02:49:16 +03:00
|
|
|
define KernelPackage/hwmon-lm90/description
|
2009-07-22 14:13:03 +03:00
|
|
|
Kernel module for LM90 thermal monitor chip
|
2008-07-30 02:49:16 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,hwmon-lm90))
|
2007-09-24 00:21:51 +03:00
|
|
|
|
2011-09-30 15:55:30 +03:00
|
|
|
define KernelPackage/hwmon-lm95241
|
|
|
|
TITLE:=LM95241 monitoring support
|
|
|
|
KCONFIG:=CONFIG_SENSORS_LM95241
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/hwmon/lm95241.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,60,lm95241)
|
|
|
|
$(call AddDepends/hwmon,+kmod-i2c-core)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/hwmon-lm95241/description
|
|
|
|
Kernel module for LM95241 thermal monitor chip
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,hwmon-lm95241))
|
|
|
|
|
2010-04-29 07:04:19 +03:00
|
|
|
|
2007-09-23 20:14:24 +03:00
|
|
|
define KernelPackage/hwmon-pc87360
|
|
|
|
TITLE:=PC87360 monitoring support
|
2008-03-25 17:18:16 +02:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_SENSORS_PC87360 \
|
|
|
|
CONFIG_HWMON_VID
|
|
|
|
FILES:= \
|
2010-07-12 17:06:13 +03:00
|
|
|
$(LINUX_DIR)/drivers/hwmon/hwmon-vid.ko \
|
|
|
|
$(LINUX_DIR)/drivers/hwmon/pc87360.ko
|
2008-03-25 17:18:16 +02:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,hwmon-vid pc87360)
|
2010-05-16 23:51:19 +03:00
|
|
|
$(call AddDepends/hwmon,@TARGET_x86)
|
2007-09-23 20:14:24 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/hwmon-pc87360/description
|
|
|
|
Kernel modules for PC87360 chips
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,hwmon-pc87360))
|
|
|
|
|
2010-04-29 07:04:19 +03:00
|
|
|
|
2009-05-07 02:50:11 +03:00
|
|
|
define KernelPackage/hwmon-w83627hf
|
|
|
|
TITLE:=Winbond W83627HF monitoring support
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_SENSORS_W83627HF \
|
|
|
|
CONFIG_HWMON_VID
|
|
|
|
FILES:= \
|
2010-07-12 17:06:13 +03:00
|
|
|
$(LINUX_DIR)/drivers/hwmon/hwmon-vid.ko \
|
|
|
|
$(LINUX_DIR)/drivers/hwmon/w83627hf.ko
|
2010-03-21 16:06:32 +02:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,hwmon-vid w83627hf)
|
2010-05-16 23:51:19 +03:00
|
|
|
$(call AddDepends/hwmon,@TARGET_rdc||TARGET_x86)
|
2009-05-07 02:50:11 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPacakge/hwmon-w83627hf/description
|
|
|
|
Kernel module for the Winbond W83627HF chips.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,hwmon-w83627hf))
|