Use a newer acx firmware
[openwrt/openwrt.git] / package / acx-mac80211 / Makefile
1 #
2 # Copyright (C) 2007-2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=acx-mac80211
13 PKG_REV:=11edba2
14 PKG_VERSION:=20080805
15 PKG_RELEASE:=1
16
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
18 PKG_SOURCE_URL:=git://gitorious.org/acx-mac80211/mainline.git
19 PKG_SOURCE_PROTO:=git
20 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
21 PKG_SOURCE_VERSION:=$(PKG_REV)
22
23 PKG_FW_C16_NAME:=tiacx111c16
24 PKG_FW_C16_URL:=http://teknoraver.net/software/acx-mac80211/
25 #PKG_FW_C16_MD5SUM:=fcd07de4b25e1d2aaf3b78b27c5b7ee9 #version 1.2.1.34
26 PKG_FW_C16_MD5SUM:=7026826460376f6b174f9225bd7781b9 #version 2.3.1.31
27
28 PKG_FW_C19_NAME:=tiacx111c19
29 PKG_FW_C19_URL:=http://ipkg.k1k2.de/files/
30 PKG_FW_C19_MD5SUM:=a1fa9681e297b4e36e257090fc12265a
31
32 include $(INCLUDE_DIR)/package.mk
33
34 define KernelPackage/acx-mac80211
35 SUBMENU:=Wireless Drivers
36 TITLE:=ACX111 Mac80211 driver
37 DEPENDS:=@LINUX_2_6 @PCI_SUPPORT||TARGET_ar7 +kmod-mac80211 @BROKEN
38 FILES:=$(PKG_BUILD_DIR)/acx-mac80211.$(LINUX_KMOD_SUFFIX)
39 AUTOLOAD:=$(call AutoLoad,50,acx-mac80211)
40 endef
41
42 define KernelPackage/acx-mac80211/description
43 Driver for acx111 cards (Mac80211 version)
44 endef
45
46 $(STAMP_BUILT): $(DL_DIR)/$(PKG_FW_C16_NAME) $(DL_DIR)/$(PKG_FW_C19_NAME)
47
48 $(DL_DIR)/$(PKG_FW_C16_NAME):
49 $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_FW_C16_NAME)" "$(PKG_FW_C16_MD5SUM)" $(PKG_FW_C16_URL)
50
51 $(DL_DIR)/$(PKG_FW_C19_NAME):
52 $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_FW_C19_NAME)" "$(PKG_FW_C19_MD5SUM)" $(PKG_FW_C19_URL)
53
54 PKG_EXTRA_KCONFIG:= \
55 CONFIG_ACX_MAC80211=m \
56 CONFIG_ACX_MAC80211_PCI=m \
57
58 PKG_EXTRA_CFLAGS:= \
59 $(patsubst CONFIG_%, -DCONFIG_%=1, $(patsubst %=m,%,$(filter %=m,$(PKG_EXTRA_KCONFIG)))) \
60 $(patsubst CONFIG_%, -DCONFIG_%=1, $(patsubst %=y,%,$(filter %=y,$(PKG_EXTRA_KCONFIG)))) \
61
62 define Build/Compile
63 $(MAKE) -C "$(LINUX_DIR)" \
64 ARCH="$(LINUX_KARCH)" \
65 CROSS_COMPILE="$(TARGET_CROSS)" \
66 SUBDIRS="$(PKG_BUILD_DIR)" \
67 $(PKG_EXTRA_KCONFIG) \
68 EXTRA_CFLAGS="$(PKG_EXTRA_CFLAGS)" \
69 LINUXINCLUDE="-I$(STAGING_DIR)/usr/include/mac80211 -I$(LINUX_DIR)/include \
70 -include linux/autoconf.h" \
71 V="$(V)" \
72 modules
73 endef
74
75 define Build/Configure
76 endef
77
78 define KernelPackage/acx-mac80211/install
79 $(INSTALL_DIR) $(1)/lib/firmware
80 $(INSTALL_DATA) $(DL_DIR)/$(PKG_FW_C16_NAME) $(1)/lib/firmware/
81 $(INSTALL_DATA) $(DL_DIR)/$(PKG_FW_C19_NAME) $(1)/lib/firmware/
82 endef
83
84 $(eval $(call KernelPackage,acx-mac80211))