blob: 0cca78548a2016fd4200a04f5c6c570fe23f999d [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
2# Copyright (C) 2006-2009 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9include $(INCLUDE_DIR)/kernel.mk
10
11PKG_NAME:=rtc-rv5c386a
12PKG_RELEASE:=1
13
14include $(INCLUDE_DIR)/package.mk
15
16define KernelPackage/rtc-rv5c386a
17 SUBMENU:=Other modules
18 DEPENDS:=@TARGET_bcm47xx @!IN_SDK
19 TITLE:=Driver for RTC RV5C386A (used in WL-700gE and WL-HDD)
20 AUTOLOAD:=$(call AutoLoad,70,rtc)
21 FILES:=$(PKG_BUILD_DIR)/rtc.ko
22endef
23
24define Build/Compile
25 $(MAKE) -C "$(LINUX_DIR)" \
26 $(KERNEL_MAKE_FLAGS) \
27 M="$(PKG_BUILD_DIR)" \
28 EXTRA_CFLAGS="$(BUILDFLAGS)" \
29 modules
30endef
31
32$(eval $(call KernelPackage,rtc-rv5c386a))