diff options
author | Chris Blake <chrisrblake93@gmail.com> | 2017-01-14 10:20:25 -0600 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2017-01-16 20:40:13 +0100 |
commit | 0d9f922230aa02821c538a87c1d10584cff6c61c (patch) | |
tree | 361957d66cb4a8b5ca08ba8db5852ead3046f93e /target/linux/x86/modules.mk | |
parent | 4fab08183b973728a5db2fc691f4845e6a48d0b4 (diff) | |
download | upstream-0d9f922230aa02821c538a87c1d10584cff6c61c.tar.gz upstream-0d9f922230aa02821c538a87c1d10584cff6c61c.tar.bz2 upstream-0d9f922230aa02821c538a87c1d10584cff6c61c.zip |
x86: add kernel module for sp5100_tco watchdog
This change adds the sp5100_tco driver as a kernel module for the x86
target. Specifically, this can be used by the PCEngines APU2/APU3. The
reason for having this as a kernel module is to allow users to
load/unload it on demand, as the I2C interface on the APU2/APU3 will not
work while this module is loaded. More info can be found on GitHub at
https://github.com/riptidewave93/LEDE-APU2/pull/5#issuecomment-255667736
Signed-off-by: Chris Blake <chrisrblake93@gmail.com>
Diffstat (limited to 'target/linux/x86/modules.mk')
-rw-r--r-- | target/linux/x86/modules.mk | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/target/linux/x86/modules.mk b/target/linux/x86/modules.mk index 656500b290..87733c2850 100644 --- a/target/linux/x86/modules.mk +++ b/target/linux/x86/modules.mk @@ -19,3 +19,18 @@ define KernelPackage/sound-cs5535audio/description endef $(eval $(call KernelPackage,sound-cs5535audio)) + +define KernelPackage/sp5100_tco + SUBMENU:=$(OTHER_MENU) + TITLE:=SP5100 Watchdog Support + DEPENDS:=@TARGET_x86 + KCONFIG:=CONFIG_SP5100_TCO + FILES:=$(LINUX_DIR)/drivers/watchdog/sp5100_tco.ko + AUTOLOAD:=$(call AutoLoad,50,sp5100_tco,1) +endef + +define KernelPackage/sp5100_tco/description + Kernel module for the SP5100_TCO hardware watchdog. +endef + +$(eval $(call KernelPackage,sp5100_tco)) |