effa403a25a958d62f510d0f1ff7178e38eeb0b5
[openwrt.git] / package / acx-mac80211 / Makefile
1
2 # Copyright (C) 2007 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_VERSION:=20071003
14 PKG_RELEASE:=1
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17 PKG_SOURCE_URL:=@SF/acx100
18 PKG_MD5SUM:=dff7b396299001724e522d3ccf79c883
19
20 PKG_FW_NAME:=tiacx111c16
21 PKG_FW_URL:=http://teknoraver.campuslife.it/software/acx-mac80211/
22 PKG_FW_MD5SUM:=7026826460376f6b174f9225bd7781b9
23
24 include $(INCLUDE_DIR)/package.mk
25
26 # XXX: remove @!TARGET_* later when we have PCI support properly detected on all targets
27 define KernelPackage/acx-mac80211
28   SUBMENU:=Wireless Drivers
29   TITLE:=ACX111 Mac80211 driver
30     DEPENDS:=@LINUX_2_6 +kmod-mac80211 @!TARGET_atheros
31 #  KCONFIG:=CONFIG_MAC80211
32   FILES:=$(PKG_BUILD_DIR)/acx-mac80211.$(LINUX_KMOD_SUFFIX)
33   AUTOLOAD:=$(call AutoLoad,50,acx-mac80211)
34 endef
35
36 define KernelPackage/acx-mac80211/description
37         Driver for acx111 cards (Mac80211 version)
38 endef
39
40 $(STAMP_BUILT): $(DL_DIR)/$(PKG_FW_NAME)
41
42 $(DL_DIR)/$(PKG_FW_NAME):
43         $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_FW_NAME)" "$(PKG_FW_MD5SUM)" $(PKG_FW_URL)
44
45   PKG_EXTRA_KCONFIG:= \
46         CONFIG_ACX_MAC80211=m \
47         CONFIG_ACX_MAC80211_PCI=m \
48
49   PKG_EXTRA_CFLAGS:= \
50         $(patsubst CONFIG_%, -DCONFIG_%=1, $(patsubst %=m,%,$(filter %=m,$(PKG_EXTRA_KCONFIG)))) \
51         $(patsubst CONFIG_%, -DCONFIG_%=1, $(patsubst %=y,%,$(filter %=y,$(PKG_EXTRA_KCONFIG)))) \
52
53   define Build/Compile/it
54         $(MAKE) -C "$(LINUX_DIR)" \
55                 ARCH="$(LINUX_KARCH)" \
56                 CROSS_COMPILE="$(TARGET_CROSS)" \
57                 SUBDIRS="$(PKG_BUILD_DIR)" \
58                 $(PKG_EXTRA_KCONFIG) \
59                 EXTRA_CFLAGS="$(PKG_EXTRA_CFLAGS)" \
60                 LINUXINCLUDE="-I$(STAGING_DIR)/usr/include/mac80211 -I$(LINUX_DIR)/include \
61                         -include linux/autoconf.h" \
62                 V="$(V)" \
63                 modules
64   endef
65
66 define Build/Configure
67 endef
68
69 define Build/Compile
70 $(call Build/Compile/it)
71 endef
72
73 define KernelPackage/acx-mac80211/install
74         $(INSTALL_DIR) $(1)/lib/firmware
75         $(INSTALL_DATA) $(DL_DIR)/$(PKG_FW_NAME) $(1)/lib/firmware/
76 endef
77
78 $(eval $(call KernelPackage,acx-mac80211))