summaryrefslogtreecommitdiffstats
path: root/package/ar7-atm
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-10-17 14:47:54 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-10-17 14:47:54 +0000
commit26bee8c09fb123b20f1786590d6a92bf126701e1 (patch)
tree12e666673f711fd7ede97d87685f8594885d7d99 /package/ar7-atm
parent5c3a3ae6f2b513b94760bdc1fe4e280edc713b69 (diff)
move the ar7 adsl driver into a separate package directory with external build and source download
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5185 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/ar7-atm')
-rw-r--r--package/ar7-atm/Makefile68
1 files changed, 68 insertions, 0 deletions
diff --git a/package/ar7-atm/Makefile b/package/ar7-atm/Makefile
new file mode 100644
index 000000000..c305f33d6
--- /dev/null
+++ b/package/ar7-atm/Makefile
@@ -0,0 +1,68 @@
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+# $Id:$
+
+include $(TOPDIR)/rules.mk
+include $(INCLUDE_DIR)/kernel.mk
+
+PKG_NAME:=sangam-atm
+PKG_VERSION:=0.1
+PKG_RELEASE:=1
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
+PKG_SOURCE_URL:=http://downloads.openwrt.org/sources
+PKG_MD5SUM:=90c10702c9c3129e2ad1c01ce3975bf5
+PKG_CAT:=bzcat
+
+PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/kmod-sangam-atm-annex-a
+ SECTION:=kernel
+ CATEGORY:=Kernel modules
+ SUBMENU:=Network Devices
+ DEPENDS:=@LINUX_2_4_AR7 +kmod-atm
+ DEFAULT:=y
+ TITLE:=AR7 ADSL driver (Annex A)
+ DESCRIPTION:=The AR7 ADSL driver for Annex A
+ VERSION:=$(PKG_VERSION)+$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE)
+endef
+
+define Package/kmod-sangam-atm-annex-b
+ $(call Package/kmod-sangam-atm-annex-a)
+ TITLE:=AR7 ADSL driver (Annex B)
+ DESCRIPTION:=The AR7 ADSL driver for Annex B
+endef
+
+define Build/Compile
+ $(MAKE) -C "$(LINUX_DIR)" \
+ CROSS_COMPILE="$(TARGET_CROSS)" \
+ ARCH="$(LINUX_KARCH)" \
+ SUBDIRS="$(PKG_BUILD_DIR)" \
+ modules
+endef
+
+define install
+ install -m0755 -d $(1)/lib/modules/$(LINUX_VERSION)
+ $(CP) $(PKG_BUILD_DIR)/tiatm.$(LINUX_KMOD_SUFFIX) \
+ $(1)/lib/modules/$(LINUX_VERSION)
+ install -m0644 $(PKG_BUILD_DIR)/ar0700xx_a.bin $(1)/lib/modules/ar0700xx.bin
+ install -m0755 -d $(1)/etc/modules.d/
+ printf 'tiatm\n' > $(1)/etc/modules.d/20-switch
+endef
+
+define Package/kmod-sangam-atm-annex-a/install
+ $(call install,$(1),a)
+endef
+
+define Package/kmod-sangam-atm-annex-b/install
+ $(call install,$(1),b)
+endef
+
+$(eval $(call BuildPackage,kmod-sangam-atm-annex-a))
+$(eval $(call BuildPackage,kmod-sangam-atm-annex-b))