[source] kernel: add kernel module package for the DS1374 RTC

LEDE Commits lede-commits at lists.infradead.org
Tue Nov 8 01:52:50 PST 2016


nbd pushed a commit to source.git, branch master:
https://git.lede-project.org/dfc14bd145c18787262680b6f08496a66d08405a

commit dfc14bd145c18787262680b6f08496a66d08405a
Author: Florian Larysch <fl at n621.de>
AuthorDate: Thu Aug 4 14:00:33 2016 +0200

    kernel: add kernel module package for the DS1374 RTC
    
    Package the driver for the DS1374 chip present on the T4240RDB.
    
    Signed-off-by: Florian Larysch <fl at n621.de>
    Signed-off-by: Felix Fietkau <nbd at nbd.name> [fix missing symbol]
---
 package/kernel/linux/modules/other.mk | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/package/kernel/linux/modules/other.mk b/package/kernel/linux/modules/other.mk
index 38b98f3..5ba0e5e 100644
--- a/package/kernel/linux/modules/other.mk
+++ b/package/kernel/linux/modules/other.mk
@@ -531,6 +531,24 @@ endef
 $(eval $(call KernelPackage,rtc-ds1307))
 
 
+define KernelPackage/rtc-ds1374
+  SUBMENU:=$(OTHER_MENU)
+  TITLE:=Dallas/Maxim DS1374 RTC support
+  DEPENDS:=@RTC_SUPPORT +kmod-i2c-core
+  KCONFIG:=CONFIG_RTC_DRV_DS1374 \
+	CONFIG_RTC_DRV_DS1374_WDT=n \
+	CONFIG_RTC_CLASS=y
+  FILES:=$(LINUX_DIR)/drivers/rtc/rtc-ds1374.ko
+  AUTOLOAD:=$(call AutoProbe,rtc-ds1374)
+endef
+
+define KernelPackage/rtc-ds1374/description
+ Kernel module for Dallas/Maxim DS1374.
+endef
+
+$(eval $(call KernelPackage,rtc-ds1374))
+
+
 define KernelPackage/rtc-ds1672
   SUBMENU:=$(OTHER_MENU)
   TITLE:=Dallas/Maxim DS1672 RTC support



More information about the lede-commits mailing list