Skip to content
Snippets Groups Projects
Commit c403828c authored by Gabor Juhos's avatar Gabor Juhos
Browse files

package/kernel: move hwmon-vid into a separate package

SVN-Revision: 31655
parent d640a15b
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,21 @@ define AddDepends/hwmon
DEPENDS:=kmod-hwmon-core $(1)
endef
define KernelPackage/hwmon-vid
TITLE:=VID/VRM/VRD voltage conversion module.
KCONFIG:=CONFIG_HWMON_VID
FILES:=$(LINUX_DIR)/drivers/hwmon/hwmon-vid.ko
AUTOLOAD:=$(call AutoLoad,41,hwmon-vid)
$(call AddDepends/hwmon,)
endef
define KernelPackage/hwmon-vid/description
VID/VRM/VRD voltage conversion module for hardware monitoring.
endef
$(eval $(call KernelPackage,hwmon-vid))
define KernelPackage/hwmon-lm63
TITLE:=LM63/64 monitoring support
KCONFIG:=CONFIG_SENSORS_LM63
......@@ -119,14 +134,10 @@ $(eval $(call KernelPackage,hwmon-sht21))
define KernelPackage/hwmon-pc87360
TITLE:=PC87360 monitoring support
KCONFIG:= \
CONFIG_SENSORS_PC87360 \
CONFIG_HWMON_VID
FILES:= \
$(LINUX_DIR)/drivers/hwmon/hwmon-vid.ko \
$(LINUX_DIR)/drivers/hwmon/pc87360.ko
AUTOLOAD:=$(call AutoLoad,50,hwmon-vid pc87360)
$(call AddDepends/hwmon,@TARGET_x86)
KCONFIG:=CONFIG_SENSORS_PC87360
FILES:=$(LINUX_DIR)/drivers/hwmon/pc87360.ko
AUTOLOAD:=$(call AutoLoad,50,pc87360)
$(call AddDepends/hwmon,@TARGET_x86 +kmod-hwmon-vid)
endef
define KernelPackage/hwmon-pc87360/description
......@@ -138,14 +149,10 @@ $(eval $(call KernelPackage,hwmon-pc87360))
define KernelPackage/hwmon-w83627hf
TITLE:=Winbond W83627HF monitoring support
KCONFIG:= \
CONFIG_SENSORS_W83627HF \
CONFIG_HWMON_VID
FILES:= \
$(LINUX_DIR)/drivers/hwmon/hwmon-vid.ko \
$(LINUX_DIR)/drivers/hwmon/w83627hf.ko
AUTOLOAD:=$(call AutoLoad,50,hwmon-vid w83627hf)
$(call AddDepends/hwmon,@TARGET_rdc||TARGET_x86)
KCONFIG:=CONFIG_SENSORS_W83627HF
FILES:=$(LINUX_DIR)/drivers/hwmon/w83627hf.ko
AUTOLOAD:=$(call AutoLoad,50,w83627hf)
$(call AddDepends/hwmon,@TARGET_rdc||TARGET_x86 +kmod-hwmon-vid)
endef
define KernelPacakge/hwmon-w83627hf/description
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment