Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/archive.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Prindeville <philipp@redfish-solutions.com>2017-01-10 03:18:21 +0300
committerPhilip Prindeville <philipp@redfish-solutions.com>2017-01-11 19:19:25 +0300
commit0aedb52af95fa88c24d11e776df778809af72f0f (patch)
tree2cd132d2a38ed31645913d844649be991b6643bb
parent1a7b132013057ff38964c8ae1c27a36f24e4d9be (diff)
gpio-ich/itco-wdt/w83627hf-wdt: add modules for Xeon platforms
Drivers for supporting current Xeon motherboards. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
-rw-r--r--package/kernel/linux/modules/other.mk52
1 files changed, 52 insertions, 0 deletions
diff --git a/package/kernel/linux/modules/other.mk b/package/kernel/linux/modules/other.mk
index 9d01e3e0b3..f697513f7c 100644
--- a/package/kernel/linux/modules/other.mk
+++ b/package/kernel/linux/modules/other.mk
@@ -1129,3 +1129,55 @@ endef
$(eval $(call KernelPackage,tpm-i2c-infineon))
+define KernelPackage/gpio-ich
+ TITLE:=Intel ICH GPIO support
+ SUBMENU:=$(OTHER_MENU)
+ KCONFIG:= \
+ CONFIG_GPIO_ICH
+ FILES:= \
+ $(LINUX_DIR)/drivers/gpio/gpio-ich.ko
+ AUTOLOAD:=$(call AutoLoad,55,gpio-ich)
+ DEPENDS:=@GPIO_SUPPORT
+endef
+
+define KernelPackage/gpio-ich/description
+ Intel ICH GPIO support.
+endef
+
+$(eval $(call KernelPackage,gpio-ich))
+
+
+define KernelPackage/iTCO_wdt
+ TITLE:=Intel TCO Watchdog Timer
+ SUBMENU:=$(OTHER_MENU)
+ KCONFIG:= \
+ CONFIG_ITCO_WDT \
+ CONFIG_ITCO_VENDOR_SUPPORT=n
+ FILES:= \
+ $(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/iTCO_wdt.ko
+ AUTOLOAD:=$(call AutoLoad,50,iTCO_wdt,1)
+ DEPENDS:=+kmod-i2c-core
+endef
+
+define KernelPackage/iTCO_wdt/description
+ Kernel module for Intel TCO Watchdog Timer
+endef
+
+$(eval $(call KernelPackage,iTCO_wdt))
+
+
+define KernelPackage/w83627hf-wdt
+ SUBMENU:=$(OTHER_MENU)
+ TITLE:=Winbond 83627HF Watchdog Timer
+ KCONFIG:=CONFIG_W83627HF_WDT
+ FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/w83627hf_wdt.ko
+ AUTOLOAD:=$(call AutoLoad,50,w83627hf-wdt,1)
+endef
+
+define KernelPackage/w83627hf-wdt/description
+ Kernel module for Winbond 83627HF Watchdog Timer
+endef
+
+$(eval $(call KernelPackage,w83627hf-wdt))
+
+