2009-08-01 11:09:02 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006-2009 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
|
|
|
|
PKG_NAME:=rtc-rv5c386a
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define KernelPackage/rtc-rv5c386a
|
|
|
|
SUBMENU:=Other modules
|
2020-02-07 14:42:54 +00:00
|
|
|
DEPENDS:=@TARGET_bcm47xx @!IN_SDK
|
2009-08-01 11:09:02 +00:00
|
|
|
TITLE:=Driver for RTC RV5C386A (used in WL-700gE and WL-HDD)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,70,rtc)
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(PKG_BUILD_DIR)/rtc.ko
|
2009-08-01 11:09:02 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2022-12-14 21:34:19 +00:00
|
|
|
$(KERNEL_MAKE) \
|
2020-01-20 14:42:00 +00:00
|
|
|
M="$(PKG_BUILD_DIR)" \
|
2009-08-01 11:09:02 +00:00
|
|
|
EXTRA_CFLAGS="$(BUILDFLAGS)" \
|
|
|
|
modules
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,rtc-rv5c386a))
|