summaryrefslogtreecommitdiffstats
path: root/package/ar7-net
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-10-17 15:03:52 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-10-17 15:03:52 +0000
commit7cc1fcadc9db2b035d59d4b417636dd58eb72b08 (patch)
treec5139fa5d3b239a4ab81571672821e2846bc417b /package/ar7-net
parent26bee8c09fb123b20f1786590d6a92bf126701e1 (diff)
move the ar7 network driver into a separate package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5186 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/ar7-net')
-rw-r--r--package/ar7-net/Makefile51
1 files changed, 51 insertions, 0 deletions
diff --git a/package/ar7-net/Makefile b/package/ar7-net/Makefile
new file mode 100644
index 000000000..89ce23940
--- /dev/null
+++ b/package/ar7-net/Makefile
@@ -0,0 +1,51 @@
+#
+# 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:=avalanche-cpmac
+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:=ce46849a8f1055cef09c59c6bdb7f86a
+PKG_CAT:=bzcat
+
+PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/kmod-avalanche-cpmac
+ 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 Build/Compile
+ $(MAKE) -C "$(LINUX_DIR)" \
+ CROSS_COMPILE="$(TARGET_CROSS)" \
+ ARCH="$(LINUX_KARCH)" \
+ SUBDIRS="$(PKG_BUILD_DIR)" \
+ EXTRA_CFLAGS="-DCONFIG_AVALANCHE_CPMAC_AUTO -DCONFIG_MIPS_CPMAC_INIT_BUF_MALLOC" \
+ modules
+endef
+
+define Package/kmod-avalanche-cpmac/install
+ install -m0755 -d $(1)/lib/modules/$(LINUX_VERSION)
+ $(CP) $(PKG_BUILD_DIR)/avalanche_cpmac.$(LINUX_KMOD_SUFFIX) \
+ $(1)/lib/modules/$(LINUX_VERSION)
+endef
+
+$(eval $(call BuildPackage,kmod-avalanche-cpmac))