Root/package/acx-mac80211/Makefile

1#
2# Copyright (C) 2007-2011 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9include $(INCLUDE_DIR)/kernel.mk
10
11PKG_NAME:=acx-mac80211
12PKG_REV:=09bebfda18d7000bfeaa4d5d49db90ef601f23a3
13PKG_VERSION:=20111030
14PKG_RELEASE:=1
15
16PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17PKG_SOURCE_URL:=git://acx100.git.sourceforge.net/gitroot/acx100/acx-mac80211
18PKG_SOURCE_PROTO:=git
19PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
20PKG_SOURCE_VERSION:=$(PKG_REV)
21PKG_BUILD_DEPENDS:=mac80211
22
23include $(INCLUDE_DIR)/package.mk
24
25define 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
32endef
33
34define 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
62endef
63
64define KernelPackage/acx-mac80211/description
65    Driver for acx111 cards (Mac80211 version)
66endef
67
68
69C16_FW:=tiacx111c16
70C19_FW:=tiacx111c19
71
72ifeq ($(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))
86endif
87
88ifeq ($(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))
96endif
97
98PKG_EXTRA_KCONFIG:= \
99    CONFIG_ACX_MAC80211=m \
100    CONFIG_ACX_MAC80211_PCI=m \
101
102PKG_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
106ifneq ($(CONFIG_LINUX_2_6_30)$(CONFIG_LINUX_2_6_31)$(CONFIG_LINUX_2_6_32),)
107  LINUX_AUTOCONF_FILE:= linux/autoconf.h
108else
109  LINUX_AUTOCONF_FILE:= generated/autoconf.h
110endif
111
112define Build/Compile
113    $(MAKE) -C "$(LINUX_DIR)" \
114        ARCH="$(LINUX_KARCH)" \
115        CROSS_COMPILE="$(TARGET_CROSS)" \
116        SUBDIRS="$(PKG_BUILD_DIR)" \
117        $(PKG_EXTRA_KCONFIG) \
118        EXTRA_CFLAGS="$(PKG_EXTRA_CFLAGS) -DCONFIG_ACX_MAC80211_VERSION=\"KERNEL_VERSION(2,6,37)\"" \
119        LINUXINCLUDE="-I$(STAGING_DIR)/usr/include/mac80211 -I$(LINUX_DIR)/include \
120            -Iarch/$(LINUX_KARCH)/include \
121            -include $(LINUX_AUTOCONF_FILE) \
122            -include linux/compat-2.6.h" \
123        V="$(V)" \
124        modules
125endef
126
127define Build/Configure
128endef
129
130define KernelPackage/acx-mac80211/install
131    $(INSTALL_DIR) $(1)/lib/firmware
132ifeq ($(CONFIG_ACX_DEFAULT),y)
133    $(INSTALL_DATA) $(DL_DIR)/$(C16_FW) $(1)/lib/firmware/
134    $(INSTALL_DATA) $(DL_DIR)/$(C19_FW) $(1)/lib/firmware/
135endif
136ifeq ($(CONFIG_ACX_1_2_1_34),y)
137    $(INSTALL_DATA) $(DL_DIR)/$(C16_FW)_1.2.1_34 $(1)/lib/firmware/$(C16_FW)
138endif
139endef
140
141$(eval $(call KernelPackage,acx-mac80211))
142

Archive Download this file



interactive