2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-05-31 14:32:17 +00:00
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
2006-05-31 14:32:17 +00:00
|
|
|
|
|
|
|
PKG_NAME:=madwifi
|
2007-05-13 16:24:11 +00:00
|
|
|
PKG_VERSION:=r2313-20070505
|
2006-05-31 14:32:17 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
2007-05-13 16:24:11 +00:00
|
|
|
PKG_SOURCE:=madwifi-ng-refcount-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://snapshots.madwifi.org/madwifi-ng-refcount
|
|
|
|
PKG_MD5SUM:=01ee9dfb1f174be6e009f9697f7267b8
|
|
|
|
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/madwifi-ng-refcount-r2313-20070505
|
2006-05-31 14:32:17 +00:00
|
|
|
|
2006-09-23 19:27:45 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2007-05-13 16:24:11 +00:00
|
|
|
RATE_CONTROL:=minstrel
|
2006-08-29 16:20:00 +00:00
|
|
|
|
2006-05-31 14:32:17 +00:00
|
|
|
ifeq ($(ARCH),mips)
|
|
|
|
HAL_TARGET:=mips-be-elf
|
|
|
|
endif
|
|
|
|
ifeq ($(ARCH),mipsel)
|
|
|
|
HAL_TARGET:=mips-le-elf
|
|
|
|
endif
|
|
|
|
ifeq ($(ARCH),i386)
|
|
|
|
HAL_TARGET:=i386-elf
|
|
|
|
endif
|
|
|
|
ifeq ($(ARCH),armeb)
|
|
|
|
HAL_TARGET:=xscale-be-elf
|
|
|
|
endif
|
2007-03-11 19:49:50 +00:00
|
|
|
ifeq ($(ARCH),arm)
|
|
|
|
HAL_TARGET:=xscale-le-elf
|
|
|
|
endif
|
2006-08-25 21:53:54 +00:00
|
|
|
ifeq ($(ARCH),powerpc)
|
|
|
|
HAL_TARGET:=powerpc-be-elf
|
|
|
|
endif
|
2006-05-31 14:32:17 +00:00
|
|
|
|
2006-09-23 19:27:45 +00:00
|
|
|
BUS:=PCI
|
2006-12-22 08:02:59 +00:00
|
|
|
ifneq ($(CONFIG_LINUX_2_6_ATHEROS),)
|
2006-09-23 19:27:45 +00:00
|
|
|
BUS:=AHB
|
2006-12-16 00:39:57 +00:00
|
|
|
HAL_TARGET:=ap51
|
2006-05-31 14:32:17 +00:00
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_LINUX_2_6_ARUBA),)
|
2006-09-23 19:27:45 +00:00
|
|
|
BUS:=PCI AHB # no suitable HAL for AHB yet.
|
2006-05-31 14:32:17 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
BUS_MODULES:=
|
|
|
|
ifeq ($(findstring AHB,$(BUS)),AHB)
|
|
|
|
BUS_MODULES+=$(PKG_BUILD_DIR)/ath/ath_ahb.$(LINUX_KMOD_SUFFIX)
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring PCI,$(BUS)),PCI)
|
|
|
|
BUS_MODULES+=$(PKG_BUILD_DIR)/ath/ath_pci.$(LINUX_KMOD_SUFFIX)
|
|
|
|
endif
|
|
|
|
|
2006-10-17 16:13:10 +00:00
|
|
|
MADWIFI_AUTOLOAD:= \
|
|
|
|
wlan \
|
|
|
|
wlan_scan_ap \
|
|
|
|
wlan_scan_sta \
|
|
|
|
ath_hal \
|
|
|
|
ath_rate_$(RATE_CONTROL) \
|
|
|
|
wlan_acl \
|
|
|
|
wlan_ccmp \
|
|
|
|
wlan_tkip \
|
|
|
|
wlan_wep \
|
|
|
|
wlan_xauth
|
|
|
|
|
|
|
|
ifeq ($(findstring AHB,$(BUS)),AHB)
|
|
|
|
MADWIFI_AUTOLOAD += ath_ahb
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring PCI,$(BUS)),PCI)
|
|
|
|
MADWIFI_AUTOLOAD += ath_pci
|
|
|
|
endif
|
|
|
|
|
|
|
|
define KernelPackage/madwifi
|
2006-10-17 20:52:40 +00:00
|
|
|
SUBMENU:=Wireless Drivers
|
2006-10-17 16:13:10 +00:00
|
|
|
TITLE:=Driver for Atheros wireless chipsets
|
2006-11-12 05:06:56 +00:00
|
|
|
DEPENDS:=+wireless-tools
|
2006-10-17 16:13:10 +00:00
|
|
|
DESCRIPTION:=\
|
|
|
|
This package contains a driver for Atheros 802.11a/b/g chipsets.
|
|
|
|
URL:=http://madwifi.org/
|
|
|
|
VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
|
|
|
|
FILES:= \
|
2007-05-13 16:24:11 +00:00
|
|
|
$(PKG_BUILD_DIR)/ath_hal/ath_hal.$(LINUX_KMOD_SUFFIX) \
|
2006-10-17 16:13:10 +00:00
|
|
|
$(BUS_MODULES) \
|
|
|
|
$(PKG_BUILD_DIR)/ath_rate/$(RATE_CONTROL)/ath_rate_$(RATE_CONTROL).$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(PKG_BUILD_DIR)/net80211/wlan*.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,$(MADWIFI_AUTOLOAD))
|
|
|
|
endef
|
|
|
|
|
2006-05-31 14:32:17 +00:00
|
|
|
MADWIFI_MAKEOPTS= -C $(PKG_BUILD_DIR) \
|
2006-08-29 16:20:00 +00:00
|
|
|
PATH="$(TARGET_PATH)" \
|
2006-05-31 14:32:17 +00:00
|
|
|
ARCH="$(LINUX_KARCH)" \
|
|
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
|
|
TARGET="$(HAL_TARGET)" \
|
|
|
|
TOOLPREFIX="$(KERNEL_CROSS)" \
|
|
|
|
TOOLPATH="$(KERNEL_CROSS)" \
|
|
|
|
KERNELPATH="$(LINUX_DIR)" \
|
2007-02-04 03:28:57 +00:00
|
|
|
LDOPTS="--no-warn-mismatch " \
|
2006-08-29 16:20:00 +00:00
|
|
|
ATH_RATE="ath_rate/$(RATE_CONTROL)" \
|
2007-05-13 16:24:11 +00:00
|
|
|
WARNINGS="" \
|
2007-05-13 23:04:20 +00:00
|
|
|
DOMULTI=1
|
2006-05-31 14:32:17 +00:00
|
|
|
|
|
|
|
ifeq ($(findstring AHB,$(BUS)),AHB)
|
2006-09-23 19:27:45 +00:00
|
|
|
define Build/Compile/ahb
|
2007-05-13 16:24:11 +00:00
|
|
|
COPTS="-DCONFIG_ATHEROS_RATE_DEFAULT='\"$(RATE_CONTROL)\"'" $(MAKE) $(MADWIFI_MAKEOPTS) BUS="AHB" modules
|
2006-09-23 19:27:45 +00:00
|
|
|
endef
|
2006-05-31 14:32:17 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(findstring PCI,$(BUS)),PCI)
|
2006-09-23 19:27:45 +00:00
|
|
|
define Build/Compile/pci
|
2007-05-13 16:24:11 +00:00
|
|
|
COPTS="-DCONFIG_ATHEROS_RATE_DEFAULT='\"$(RATE_CONTROL)\"'" $(MAKE) $(MADWIFI_MAKEOPTS) BUS="PCI" modules
|
2006-09-23 19:27:45 +00:00
|
|
|
endef
|
2006-05-31 14:32:17 +00:00
|
|
|
endif
|
|
|
|
|
2006-12-16 00:39:57 +00:00
|
|
|
define Build/Configure
|
|
|
|
$(SED) 's,-E[LB] ,,g' $(PKG_BUILD_DIR)/hal/public/*.inc
|
|
|
|
endef
|
|
|
|
|
2006-05-31 14:32:17 +00:00
|
|
|
define Build/Compile
|
2006-09-23 19:27:45 +00:00
|
|
|
$(call Build/Compile/ahb)
|
|
|
|
$(call Build/Compile/pci)
|
2006-10-27 19:14:43 +00:00
|
|
|
$(MAKE) $(MADWIFI_MAKEOPTS) \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
tools
|
2006-05-31 14:32:17 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
mkdir -p $(STAGING_DIR)/usr/include/madwifi
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/include $(STAGING_DIR)/usr/include/madwifi/
|
|
|
|
mkdir -p $(STAGING_DIR)/usr/include/madwifi/net80211
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/net80211/*.h $(STAGING_DIR)/usr/include/madwifi/net80211/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/UninstallDev
|
2006-09-24 20:49:31 +00:00
|
|
|
rm -rf $(STAGING_DIR)/usr/include/madwifi
|
2006-05-31 14:32:17 +00:00
|
|
|
endef
|
|
|
|
|
2006-10-17 16:13:10 +00:00
|
|
|
define KernelPackage/madwifi/install
|
2006-12-22 08:02:59 +00:00
|
|
|
$(INSTALL_DIR) $(1)/lib/wifi
|
|
|
|
$(INSTALL_DATA) ./files/lib/wifi/madwifi.sh $(1)/lib/wifi
|
2006-12-16 19:57:11 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2007-02-20 13:16:51 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/tools/{madwifi_multi,80211stats,athchans,athctrl,athkey,athstats,wlanconfig} $(1)/usr/sbin/
|
2006-05-31 14:32:17 +00:00
|
|
|
endef
|
|
|
|
|
2006-10-17 16:13:10 +00:00
|
|
|
$(eval $(call KernelPackage,madwifi))
|