summaryrefslogtreecommitdiffstats
path: root/package/acx-mac80211/Makefile
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-08-28 16:02:14 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-08-28 16:02:14 +0000
commitd8af39f3e4177dcf1eaae8148e1578a75936cac0 (patch)
tree6ef2b6ded934f7abb1073de897a955175880f5cf /package/acx-mac80211/Makefile
parent0f54272dce72f8847654af9035df07f33e49745b (diff)
add acx-mac80211 (thanks to Matteo Croce)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8531 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/acx-mac80211/Makefile')
-rw-r--r--package/acx-mac80211/Makefile58
1 files changed, 58 insertions, 0 deletions
diff --git a/package/acx-mac80211/Makefile b/package/acx-mac80211/Makefile
new file mode 100644
index 000000000..ee3f65326
--- /dev/null
+++ b/package/acx-mac80211/Makefile
@@ -0,0 +1,58 @@
+#
+# Copyright (C) 2007 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:=acx-mac80211
+PKG_VERSION:=20070610
+PKG_RELEASE:=
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
+PKG_SOURCE_URL:=http://www.hauke-m.de/fileadmin/acx
+PKG_MD5SUM:=7c6c70722a5a2ad6ad25075467ea4909
+
+PKG_FW_NAME:=tiacx111c16
+PKG_FW_URL:=http://teknoraver.campuslife.it/software/acx-mac80211/
+PKG_FW_MD5SUM:=7026826460376f6b174f9225bd7781b9
+
+include $(INCLUDE_DIR)/package.mk
+
+define KernelPackage/acx-mac80211
+ SUBMENU:=Wireless Drivers
+ TITLE:=ACX111 Mac80211 driver
+ DESCRIPTION:=Driver for acx111 cards (Mac80211 version)
+ DEPENDS:=@LINUX_2_6 +kmod-mac80211
+ VERSION:=$(PKG_VERSION)+$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE)
+ KCONFIG:=CONFIG_MAC80211
+ FILES:=$(PKG_BUILD_DIR)/acx-mac80211.$(LINUX_KMOD_SUFFIX)
+ AUTOLOAD:=$(call AutoLoad,50,acx-mac80211)
+endef
+
+$(STAMP_BUILT): $(DL_DIR)/$(PKG_FW_NAME)
+
+$(DL_DIR)/$(PKG_FW_NAME):
+ $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_FW_NAME)" "$(PKG_FW_MD5SUM)" $(PKG_FW_URL)
+
+define Build/Compile
+ $(MAKE) -C "$(LINUX_DIR)" \
+ CROSS_COMPILE="$(TARGET_CROSS)" \
+ ARCH="$(LINUX_KARCH)" \
+ SUBDIRS="$(PKG_BUILD_DIR)" \
+ CONFIG_ACX_MAC80211=m \
+ CONFIG_ACX_MAC80211_PCI=m \
+ EXTRA_CFLAGS="-DCONFIG_ACX_MAC80211_PCI -DCONFIG_ACX_PCI_DEBUG_MAX -I$(PKG_BUILD_DIR)/../mac80211" \
+ modules
+endef
+
+define KernelPackage/acx-mac80211/install
+ mkdir -p $(1)/lib/firmware
+ $(INSTALL_DATA) $(DL_DIR)/$(PKG_FW_NAME) $(1)/lib/firmware/
+endef
+
+$(eval $(call KernelPackage,acx-mac80211))