aboutsummaryrefslogtreecommitdiffstats
path: root/package/system/rtc-rv5c386a/.svn
diff options
context:
space:
mode:
Diffstat (limited to 'package/system/rtc-rv5c386a/.svn')
-rw-r--r--package/system/rtc-rv5c386a/.svn/entries65
-rw-r--r--package/system/rtc-rv5c386a/.svn/text-base/Makefile.svn-base38
2 files changed, 103 insertions, 0 deletions
diff --git a/package/system/rtc-rv5c386a/.svn/entries b/package/system/rtc-rv5c386a/.svn/entries
new file mode 100644
index 0000000..32decf4
--- /dev/null
+++ b/package/system/rtc-rv5c386a/.svn/entries
@@ -0,0 +1,65 @@
+10
+
+dir
+36060
+svn://svn.openwrt.org/openwrt/trunk/package/system/rtc-rv5c386a
+svn://svn.openwrt.org/openwrt
+
+
+
+2013-01-03T01:53:30.992116Z
+34988
+hauke
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+3c298f89-4303-0410-b956-a3cf2f4a3e73
+
+src
+dir
+
+Makefile
+file
+
+
+
+
+2013-03-17T12:13:14.000000Z
+d9a3489d25391e47c0886bff0b7451f4
+2012-10-17T22:45:58.668189Z
+33830
+blogic
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+842
+
diff --git a/package/system/rtc-rv5c386a/.svn/text-base/Makefile.svn-base b/package/system/rtc-rv5c386a/.svn/text-base/Makefile.svn-base
new file mode 100644
index 0000000..e13ead5
--- /dev/null
+++ b/package/system/rtc-rv5c386a/.svn/text-base/Makefile.svn-base
@@ -0,0 +1,38 @@
+#
+# 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
+ DEPENDS:=@TARGET_brcm47xx
+ TITLE:=Driver for RTC RV5C386A (used in WL-700gE and WL-HDD)
+ AUTOLOAD:=$(call AutoLoad,70,rtc)
+ FILES:=$(PKG_BUILD_DIR)/rtc.ko
+endef
+
+define Build/Prepare
+ mkdir -p $(PKG_BUILD_DIR)
+ $(CP) ./src/* $(PKG_BUILD_DIR)/
+endef
+
+define Build/Compile
+ $(MAKE) -C "$(LINUX_DIR)" \
+ CROSS_COMPILE="$(TARGET_CROSS)" \
+ ARCH="$(LINUX_KARCH)" \
+ SUBDIRS="$(PKG_BUILD_DIR)" \
+ EXTRA_CFLAGS="$(BUILDFLAGS)" \
+ modules
+endef
+
+$(eval $(call KernelPackage,rtc-rv5c386a))