1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 01:43:08 +02:00

fix madwifi compile for atheros 2.6

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6260 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-02-04 03:28:57 +00:00
parent b5ef4d0419
commit 5638c57607

View File

@ -100,19 +100,19 @@ MADWIFI_MAKEOPTS= -C $(PKG_BUILD_DIR) \
TOOLPREFIX="$(KERNEL_CROSS)" \ TOOLPREFIX="$(KERNEL_CROSS)" \
TOOLPATH="$(KERNEL_CROSS)" \ TOOLPATH="$(KERNEL_CROSS)" \
KERNELPATH="$(LINUX_DIR)" \ KERNELPATH="$(LINUX_DIR)" \
LDOPTS=" " \ LDOPTS="--no-warn-mismatch " \
ATH_RATE="ath_rate/$(RATE_CONTROL)" \ ATH_RATE="ath_rate/$(RATE_CONTROL)" \
DOMULTI=1 DOMULTI=1
ifeq ($(findstring AHB,$(BUS)),AHB) ifeq ($(findstring AHB,$(BUS)),AHB)
define Build/Compile/ahb define Build/Compile/ahb
$(MAKE) $(MADWIFI_MAKEOPTS) BUS="AHB" LDOPTS="--no-warn-mismatch" modules $(MAKE) $(MADWIFI_MAKEOPTS) BUS="AHB" modules
endef endef
endif endif
ifeq ($(findstring PCI,$(BUS)),PCI) ifeq ($(findstring PCI,$(BUS)),PCI)
define Build/Compile/pci define Build/Compile/pci
$(MAKE) $(MADWIFI_MAKEOPTS) BUS="PCI" LDOPTS="--no-warn-mismatch" modules $(MAKE) $(MADWIFI_MAKEOPTS) BUS="PCI" modules
endef endef
endif endif