From: Luka Perkov Date: Sat, 12 Oct 2013 16:26:55 +0000 (+0000) Subject: kernel: add kirkwood thermal module X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=d22a1795c98b4eb80f5f23caf31f4b9ea44e1cb7 kernel: add kirkwood thermal module Signed-off-by: Luka Perkov SVN-Revision: 38371 --- diff --git a/package/kernel/linux/modules/other.mk b/package/kernel/linux/modules/other.mk index 65f2975a2b..453bedfc20 100644 --- a/package/kernel/linux/modules/other.mk +++ b/package/kernel/linux/modules/other.mk @@ -824,3 +824,20 @@ define KernelPackage/thermal-imx/description endef $(eval $(call KernelPackage,thermal-imx)) + + +define KernelPackage/thermal-kirkwood + SUBMENU:=$(OTHER_MENU) + TITLE:=Temperature sensor on Marvell Kirkwood SoCs + DEPENDS:=@TARGET_kirkwood +kmod-thermal + KCONFIG:=CONFIG_KIRKWOOD_THERMAL + FILES:=$(LINUX_DIR)/drivers/thermal/kirkwood_thermal.ko + AUTOLOAD:=$(call AutoProbe,kirkwood_thermal) +endef + +define KernelPackage/thermal-kirkwood/description + Support for the Kirkwood thermal sensor driver into the Linux thermal + framework. Only kirkwood 88F6282 and 88F6283 have this sensor. +endef + +$(eval $(call KernelPackage,thermal-kirkwood))