2 # Copyright (C) 2006 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
16 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.bz2
17 PKG_SOURCE_URL
:=@openwrt
/
18 PKG_MD5SUM
:=ce36d3d00f87a331d3dee6d5359d4499
20 PKG_FW_NAME
:=tiacx111c16
21 PKG_FW_URL
:=http
://teknoraver.campuslife.it
/software
/acx-mac80211
/
22 PKG_FW_MD5SUM
:=7026826460376f6b174f9225bd7781b9
25 bzcat
$(DL_DIR
)/$(PKG_SOURCE
) | \
26 $(TAR
) -C
$(KERNEL_BUILD_DIR
) $(TAR_OPTIONS
); \
27 chmod
-R u
+w
$(PKG_BUILD_DIR
)
29 include $(INCLUDE_DIR
)/package.mk
31 # XXX: remove @!TARGET_* later when we have PCI support properly detected on all targets
32 define KernelPackage
/acx
33 TITLE
:=Driver for TI ACX1xx chipset
34 DEPENDS
:=@LINUX_2_6
+wireless-tools @
!TARGET_atheros @
!TARGET_avr32
35 URL
:=http
://acx100.sourceforge.net
/
36 SUBMENU
:=Wireless Drivers
37 FILES
:= $(PKG_BUILD_DIR
)/acx.
$(LINUX_KMOD_SUFFIX
)
38 AUTOLOAD
:=$(call AutoLoad
,50,acx
)
41 define KernelPackage
/acx
/description
42 This package contains a driver for TI ACX1xx
802.11a
/b
/g chipsets.
45 $(STAMP_BUILT
): $(DL_DIR
)/$(PKG_FW_NAME
)
47 $(DL_DIR
)/$(PKG_FW_NAME
):
48 $(SCRIPT_DIR
)/download.pl
"$(DL_DIR)" "$(PKG_FW_NAME)" "$(PKG_FW_MD5SUM)" $(PKG_FW_URL
)
51 $(MAKE
) -C
$(LINUX_DIR
) \
52 SUBDIRS
="$(PKG_BUILD_DIR)" \
53 ARCH
="$(LINUX_KARCH)" \
54 CROSS_COMPILE
="$(TARGET_CROSS)" \
57 LD
="$(TARGET_CROSS)ld" \
58 KERNELVERSION
="$(KERNEL)" \
59 KERNEL_SOURCE
="$(LINUX_DIR)" \
66 define KernelPackage
/acx
/install
67 $(INSTALL_DIR
) $(1)/lib
/firmware
68 $(INSTALL_DATA
) $(DL_DIR
)/$(PKG_FW_NAME
) $(1)/lib
/firmware
/
71 $(eval
$(call KernelPackage
,acx
))