kernel: remove kernel modules and references to kernels <= 2.6.36
[openwrt.git] / package / acx-mac80211 / Makefile
1 #
2 # Copyright (C) 2007-2012 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9 include $(INCLUDE_DIR)/kernel.mk
10
11 PKG_NAME:=acx-mac80211
12 PKG_REV:=15bbffeadc1928a21a8a5f6519a5aea13b50678a
13 PKG_VERSION:=20120422
14 PKG_RELEASE:=1
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17 PKG_SOURCE_URL:=git://acx100.git.sourceforge.net/gitroot/acx100/acx-mac80211
18 PKG_SOURCE_PROTO:=git
19 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
20 PKG_SOURCE_VERSION:=$(PKG_REV)
21 PKG_BUILD_DEPENDS:=mac80211
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define KernelPackage/acx-mac80211
26   SUBMENU:=Wireless Drivers
27   TITLE:=ACX111 Mac80211 driver
28   DEPENDS:=@PCI_SUPPORT||TARGET_ar7 +kmod-mac80211
29   FILES:=$(PKG_BUILD_DIR)/acx-mac80211.ko
30   AUTOLOAD:=$(call AutoLoad,50,acx-mac80211)
31   MENU:=1
32 endef
33
34 define KernelPackage/acx-mac80211/config
35         menu "Configuration"
36                 depends on PACKAGE_kmod-acx-mac80211
37
38         choice
39                 prompt "acx firmware version"
40                 default ACX_DEFAULT if !TARGET_adm5120
41                 default ACX_1_2_1_34 if TARGET_adm5120
42                 help
43                   This option allows you to select the version of the acx firmware.
44
45         config ACX_DEFAULT
46                 bool "Default"
47                 help
48                   Default firmware for ACX devices.
49
50                   If unsure, select this.
51
52         config ACX_1_2_1_34
53                 bool "1.2.1_34"
54                 help
55                   1.2.1_34 firmware for ACX devices. Works with Zyxel P-334WT.
56
57                   If unsure, select the "default" firmware.
58
59         endchoice
60
61         endmenu
62 endef
63
64 define KernelPackage/acx-mac80211/description
65         Driver for acx111 cards (Mac80211 version)
66 endef
67
68
69 C16_FW:=tiacx111c16
70 C19_FW:=tiacx111c19
71
72 ifeq ($(CONFIG_ACX_DEFAULT),y)
73   define Download/tiacx111c16
74         FILE:=$(C16_FW)
75         URL:=http://teknoraver.net/software/acx-mac80211/
76         MD5SUM:=7026826460376f6b174f9225bd7781b9
77   endef
78   $(eval $(call Download,tiacx111c16))
79
80   define Download/tiacx111c19
81         FILE:=$(C19_FW)
82         URL:=http://ipkg.k1k2.de/files/
83         MD5SUM:=a1fa9681e297b4e36e257090fc12265a
84   endef
85   $(eval $(call Download,tiacx111c19))
86 endif
87
88 ifeq ($(CONFIG_ACX_1_2_1_34),y)
89   define Download/tiacx111c16
90         FILE:=$(C16_FW)_1.2.1_34
91 #       URL:=http://acx100.erley.org/fw/acx111_1.2.1.34/
92         URL:=http://sites.google.com/site/atorkhov/files/
93         MD5SUM:=fcd07de4b25e1d2aaf3b78b27c5b7ee9
94   endef
95   $(eval $(call Download,tiacx111c16))
96 endif
97
98 PKG_EXTRA_KCONFIG:= \
99         CONFIG_ACX_MAC80211=m \
100         CONFIG_ACX_MAC80211_PCI=m \
101
102 PKG_EXTRA_CFLAGS:= \
103         $(patsubst CONFIG_%, -DCONFIG_%=1, $(patsubst %=m,%,$(filter %=m,$(PKG_EXTRA_KCONFIG)))) \
104         $(patsubst CONFIG_%, -DCONFIG_%=1, $(patsubst %=y,%,$(filter %=y,$(PKG_EXTRA_KCONFIG)))) \
105
106 LINUX_AUTOCONF_FILE:= generated/autoconf.h
107
108 define Build/Compile
109         $(MAKE) -C "$(LINUX_DIR)" \
110                 ARCH="$(LINUX_KARCH)" \
111                 CROSS_COMPILE="$(TARGET_CROSS)" \
112                 SUBDIRS="$(PKG_BUILD_DIR)" \
113                 $(PKG_EXTRA_KCONFIG) \
114                 EXTRA_CFLAGS="$(PKG_EXTRA_CFLAGS) -DCONFIG_ACX_MAC80211_VERSION=\"KERNEL_VERSION(2,6,37)\"" \
115                 LINUXINCLUDE="-I$(STAGING_DIR)/usr/include/mac80211 -I$(LINUX_DIR)/include \
116                         -Iarch/$(LINUX_KARCH)/include \
117                         -include $(LINUX_AUTOCONF_FILE) \
118                         -include linux/compat-2.6.h" \
119                 V="$(V)" \
120                 modules
121 endef
122
123 define Build/Configure
124 endef
125
126 define KernelPackage/acx-mac80211/install
127         $(INSTALL_DIR) $(1)/lib/firmware
128 ifeq ($(CONFIG_ACX_DEFAULT),y)
129         $(INSTALL_DATA) $(DL_DIR)/$(C16_FW) $(1)/lib/firmware/
130         $(INSTALL_DATA) $(DL_DIR)/$(C19_FW) $(1)/lib/firmware/
131 endif
132 ifeq ($(CONFIG_ACX_1_2_1_34),y)
133         $(INSTALL_DATA) $(DL_DIR)/$(C16_FW)_1.2.1_34 $(1)/lib/firmware/$(C16_FW)
134 endif
135 endef
136
137 $(eval $(call KernelPackage,acx-mac80211))