mirror of https://github.com/proski/madwifi
Remove all references to ALQ from makefiles
ALQ has never been functional in MadWifi, and now it's pointless. git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@3967 0192ed92-7a03-0410-a25b-9323aeb14dbd
This commit is contained in:
parent
f011860a49
commit
25fbd8a072
10
Makefile.inc
10
Makefile.inc
|
@ -173,10 +173,6 @@ ifndef HAL_DEBUG
|
|||
export HAL_DEBUG=0
|
||||
endif
|
||||
|
||||
ifndef ALQ
|
||||
export ALQ=0
|
||||
endif
|
||||
|
||||
ifndef ATH_DEBUG
|
||||
export ATH_DEBUG=1
|
||||
endif
|
||||
|
@ -204,12 +200,6 @@ ifeq ($(strip $(HAL_DEBUG)),1)
|
|||
COPTS+= -fno-inline -DAH_DEBUG=1
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(ALQ)),1)
|
||||
obj-m += alq.o
|
||||
alq-objs := kern_alq.o
|
||||
EXTRA_CFLAGS += -DAH_DEBUG_ALQ -DAH_DEBUG
|
||||
endif
|
||||
|
||||
# Don't let HAL mess with the toolchain - save toolchain variables
|
||||
save_CC := $(CC)
|
||||
save_LD := $(LD)
|
||||
|
|
|
@ -106,9 +106,6 @@ endif
|
|||
install:
|
||||
test -d $(DESTDIR)/$(KMODPATH) || mkdir -p $(DESTDIR)/$(KMODPATH)
|
||||
install -m 0644 ath_hal.$(KMODSUF) $(DESTDIR)/$(KMODPATH)
|
||||
ifneq ($(strip $(ALQ)),0)
|
||||
install -m 0644 alq.$(KMODSUF) $(DESTDIR)/$(KMODPATH)
|
||||
endif
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
|
|
Loading…
Reference in New Issue