X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/18a605bf0b48420b0385f75c886d43c81435f532..65f7b3c0ed1b03fae80df82d4a2284c7a3570d8a:/package/madwifi/Makefile?ds=inline diff --git a/package/madwifi/Makefile b/package/madwifi/Makefile index 43ffb3409..d502e33f5 100644 --- a/package/madwifi/Makefile +++ b/package/madwifi/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006 OpenWrt.org +# Copyright (C) 2006-2008 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -39,10 +39,10 @@ endif ifeq ($(ARCH),i686) HAL_TARGET:=i386-elf endif -ifeq ($(ARCH),armeb) +ifeq ($(BOARD),ixp4xx) HAL_TARGET:=xscale-be-elf endif -ifeq ($(ARCH),arm) +ifeq ($(BOARD),iop32x) HAL_TARGET:=xscale-le-elf endif ifeq ($(ARCH),powerpc) @@ -59,7 +59,7 @@ else endif # XXX: remove this check later when we have PCI support properly detected on all targets -ifneq ($(CONFIG_TARGET_uml),) +ifneq ($(CONFIG_TARGET_ar7)$(CONFIG_TARGET_uml),) BUS:= endif @@ -108,7 +108,7 @@ define KernelPackage/madwifi SUBMENU:=Wireless Drivers TITLE:=Driver for Atheros wireless chipsets URL:=http://madwifi.org/ - DEPENDS:=+wireless-tools @PCI_SUPPORT||TARGET_atheros @!TARGET_avr32 @!TARGET_etrax @!TARGET_uml + DEPENDS:=+wireless-tools @PCI_SUPPORT||TARGET_atheros @!TARGET_ar7 @!TARGET_avr32 @!TARGET_etrax @!TARGET_uml FILES:=$(MADWIFI_FILES) AUTOLOAD:=$(call AutoLoad,50,$(MADWIFI_AUTOLOAD)) endef @@ -134,6 +134,18 @@ MAKE_ARGS:= \ MAKE_VARS:= \ COPTS="-DCONFIG_ATHEROS_RATE_DEFAULT='\"$(RATE_CONTROL)\"'" \ +HALFILE:=$(lastword $(sort $(wildcard ./ath_hal-*.tgz))) +ifneq ($(HALFILE),) + define Build/Prepare + $(call Build/Prepare/Default) + rm -rf $(PKG_BUILD_DIR)/tmp + mkdir -p $(PKG_BUILD_DIR)/tmp + tar xvzf $(HALFILE) -C $(PKG_BUILD_DIR)/tmp + $(CP) $(PKG_BUILD_DIR)/tmp/ath_hal*/* $(PKG_BUILD_DIR)/hal/ + rm -rf $(PKG_BUILD_DIR)/tmp + endef +endif + ifeq ($(findstring AHB,$(BUS)),AHB) define Build/Compile/ahb $(MAKE_VARS) $(MAKE) -C $(PKG_BUILD_DIR) $(MAKE_ARGS) BUS="AHB" modules