2 # Copyright (C) 2007 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
9 include $(TOPDIR
)/rules.mk
10 include $(INCLUDE_DIR
)/kernel.mk
12 PKG_NAME
:=acx-mac80211
16 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.bz2
17 PKG_SOURCE_URL
:=http
://www.hauke-m.de
/fileadmin
/acx
18 PKG_MD5SUM
:=7c6c70722a5a2ad6ad25075467ea4909
20 PKG_FW_NAME
:=tiacx111c16
21 PKG_FW_URL
:=http
://teknoraver.campuslife.it
/software
/acx-mac80211
/
22 PKG_FW_MD5SUM
:=7026826460376f6b174f9225bd7781b9
24 include $(INCLUDE_DIR
)/package.mk
26 include $(LINUX_DIR
)/.config
29 define KernelPackage
/acx-mac80211
30 SUBMENU
:=Wireless Drivers
31 TITLE
:=ACX111 Mac80211 driver
32 DESCRIPTION
:=Driver for acx111 cards
(Mac80211 version
)
33 DEPENDS
:=@LINUX_2_6
+kmod-mac80211
34 FILES
:=$(PKG_BUILD_DIR
)/acx-mac80211.
$(LINUX_KMOD_SUFFIX
)
35 AUTOLOAD
:=$(call AutoLoad
,50,acx-mac80211
)
38 $(STAMP_BUILT
): $(DL_DIR
)/$(PKG_FW_NAME
)
40 $(DL_DIR
)/$(PKG_FW_NAME
):
41 $(SCRIPT_DIR
)/download.pl
"$(DL_DIR)" "$(PKG_FW_NAME)" "$(PKG_FW_MD5SUM)" $(PKG_FW_URL
)
43 ifneq ($(CONFIG_MAC80211
),)
46 CONFIG_ACX_MAC80211
=m \
47 CONFIG_ACX_MAC80211_PCI
=m \
50 -I
$(STAGING_DIR
)/usr
/include/mac80211 \
51 $(patsubst CONFIG_
%, -DCONFIG_
%=1, $(patsubst %=m
,%,$(filter %=m
,$(PKG_EXTRA_KCONFIG
)))) \
52 $(patsubst CONFIG_
%, -DCONFIG_
%=1, $(patsubst %=y
,%,$(filter %=y
,$(PKG_EXTRA_KCONFIG
)))) \
54 define Build
/Compile
/it
55 $(MAKE
) -C
"$(LINUX_DIR)" \
56 ARCH
="$(LINUX_KARCH)" \
57 CROSS_COMPILE
="$(TARGET_CROSS)" \
58 SUBDIRS
="$(PKG_BUILD_DIR)" \
59 $(PKG_EXTRA_KCONFIG
) \
60 EXTRA_CFLAGS
="$(PKG_EXTRA_CFLAGS)" \
67 define Build
/Configure
71 $(call Build
/Compile
/it
)
74 define KernelPackage
/acx-mac80211
/install
75 $(INSTALL_DIR
) $(1)/lib
/firmware
76 $(INSTALL_DATA
) $(DL_DIR
)/$(PKG_FW_NAME
) $(1)/lib
/firmware
/
79 $(eval
$(call KernelPackage
,acx-mac80211
))