mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-01-28 03:37:17 +01:00
kernel/modules: add BQ32000 I2C RTC kernel module support
Add support for the Texas Instruments BQ32000 I2C real-time clock chip. Tested on a custom board based on Hi-Link HLK-7628N. Signed-off-by: Ondrej Kolar <ondrej@kolarovo.cz> Link: https://github.com/openwrt/openwrt/pull/19764 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
parent
2282377841
commit
830cd4f64b
1 changed files with 18 additions and 0 deletions
|
|
@ -7,6 +7,24 @@
|
|||
|
||||
RTC_MENU:=RTC Real-Time Clock Support
|
||||
|
||||
define KernelPackage/rtc-bq32k
|
||||
SUBMENU:=$(RTC_MENU)
|
||||
TITLE:=Texas Instruments BQ32000 RTC support
|
||||
DEFAULT:=m if ALL_KMODS && RTC_SUPPORT
|
||||
DEPENDS:=+kmod-i2c-core
|
||||
KCONFIG:=CONFIG_RTC_DRV_BQ32K \
|
||||
CONFIG_RTC_CLASS=y
|
||||
FILES:=$(LINUX_DIR)/drivers/rtc/rtc-bq32k.ko
|
||||
AUTOLOAD:=$(call AutoProbe,rtc-bq32k)
|
||||
endef
|
||||
|
||||
define KernelPackage/rtc-bq32k/description
|
||||
Kernel module for Texas Instruments BQ32000 I2C RTC.
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,rtc-bq32k))
|
||||
|
||||
|
||||
define KernelPackage/rtc-ds1307
|
||||
SUBMENU:=$(RTC_MENU)
|
||||
TITLE:=Dallas/Maxim DS1307 (and compatible) RTC support
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue