don't build acx* kernel modules on UML
[openwrt/openwrt.git] / package / acx / Makefile
1 #
2 # Copyright (C) 2006 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
13 PKG_VERSION:=20080210
14 PKG_RELEASE:=1
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17 PKG_SOURCE_URL:=@SF/acx100
18 PKG_MD5SUM:=7d5ce3215708e4e9f95cf567a9ee3a12
19
20 PKG_FW_C16_NAME:=tiacx111c16
21 PKG_FW_C16_URL:=http://teknoraver.campuslife.it/software/acx-mac80211/
22 PKG_FW_C16_MD5SUM:=7026826460376f6b174f9225bd7781b9
23
24 PKG_FW_C19_NAME:=tiacx111c19
25 PKG_FW_C19_URL:=http://ipkg.k1k2.de/files/
26 PKG_FW_C19_MD5SUM:=a1fa9681e297b4e36e257090fc12265a
27
28 PKG_UNPACK:= \
29 bzcat $(DL_DIR)/$(PKG_SOURCE) | \
30 $(TAR) -C $(KERNEL_BUILD_DIR) $(TAR_OPTIONS); \
31 chmod -R u+w $(PKG_BUILD_DIR)
32
33 include $(INCLUDE_DIR)/package.mk
34
35 # XXX: remove @!TARGET_* later when we have PCI support properly detected on all targets
36 define KernelPackage/acx
37 TITLE:=Driver for TI ACX1xx chipset
38 DEPENDS:=@LINUX_2_6 +wireless-tools @!TARGET_atheros @!TARGET_avr32 @!TARGET_uml
39 URL:=http://acx100.sourceforge.net/
40 SUBMENU:=Wireless Drivers
41 FILES:= $(PKG_BUILD_DIR)/acx.$(LINUX_KMOD_SUFFIX)
42 AUTOLOAD:=$(call AutoLoad,50,acx)
43 endef
44
45 define KernelPackage/acx/description
46 This package contains a driver for TI ACX1xx 802.11a/b/g chipsets.
47 endef
48
49 $(STAMP_BUILT): $(DL_DIR)/$(PKG_FW_C16_NAME) $(DL_DIR)/$(PKG_FW_C19_NAME)
50
51 $(DL_DIR)/$(PKG_FW_C16_NAME):
52 $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_FW_C16_NAME)" "$(PKG_FW_C16_MD5SUM)" $(PKG_FW_C16_URL)
53
54 $(DL_DIR)/$(PKG_FW_C19_NAME):
55 $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_FW_C19_NAME)" "$(PKG_FW_C19_MD5SUM)" $(PKG_FW_C19_URL)
56
57 define Build/Compile
58 $(MAKE) -C $(LINUX_DIR) \
59 SUBDIRS="$(PKG_BUILD_DIR)" \
60 ARCH="$(LINUX_KARCH)" \
61 CROSS_COMPILE="$(TARGET_CROSS)" \
62 CC="$(TARGET_CC)" \
63 CPP="$(TARGET_CC)" \
64 LD="$(TARGET_CROSS)ld" \
65 KERNELVERSION="$(KERNEL)" \
66 KERNEL_SOURCE="$(LINUX_DIR)" \
67 KDIR="$(LINUX_DIR)" \
68 CONFIG_ACX=m \
69 CONFIG_ACX_PCI=m \
70 modules
71 endef
72
73 define KernelPackage/acx/install
74 $(INSTALL_DIR) $(1)/lib/firmware
75 $(INSTALL_DATA) $(DL_DIR)/$(PKG_FW_C16_NAME) $(1)/lib/firmware/
76 $(INSTALL_DATA) $(DL_DIR)/$(PKG_FW_C19_NAME) $(1)/lib/firmware/
77 endef
78
79 $(eval $(call KernelPackage,acx))