X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=Makefile.inc;h=496cbbdb42e363a24d563c876b1343d6752266a2;hb=d7126f839357bd77f4b3fde06a907074d3a60979;hp=d032d0527a5304758ad216b2a5aeb004d0b09a8d;hpb=25fbd8a072ce2b32976715dc641ecdd6c8ee5b3f;p=madwifi%2F.git diff --git a/Makefile.inc b/Makefile.inc index d032d05..496cbbd 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -92,15 +92,6 @@ $(error KERNELCONF: $(KERNELCONF) does not exist.) endif include $(KERNELCONF) -# Determine architecture of the kernel. -include $(TOP)/scripts/get_arch.mk -export ARCH - -# Determine TARGET -include $(TOP)/ath_hal/ah_target.inc -export TARGET -COPTS += -DTARGET='"$(TARGET)"' - # KMODPATH nominates the directory where the modules will be # installed to KMODPATH := /lib/modules/$(KERNELRELEASE)/net @@ -124,13 +115,9 @@ NM= nm # Path to the HAL source code. # ifeq ($(HAL),) -HAL= $(TOP)/hal +HAL= $(TOP)/ath_hal endif # -# Path to HAL/OS interface code -# -ATH_HAL= $(TOP)/ath_hal -# # Path to the 802.11 include files. # WLAN= $(TOP)/net80211 @@ -151,16 +138,6 @@ WARNINGS = -Werror -Wall COPTS+= $(WARNINGS) INCS= -include $(TOP)/include/compat.h -I$(TOP)/include -# TARGET defines the target platform architecture. It must match one of -# the target platforms supported by the HAL. The default target is the -# host machine architecture. You can override TARGET on the make command -# line or in the environment. See hal/linux/*.inc for the list of -# supported targets. -ifeq (,$(wildcard $(HAL)/public/$(TARGET).inc)) -TARGETS=$(basename $(notdir $(wildcard $(HAL)/public/*.inc))) -$(error TARGET $(TARGET) is invalid, valid targets are: $(TARGETS)) -endif - ifndef ATH_DEBUG_SPINLOCKS export ATH_DEBUG_SPINLOCKS=0 endif @@ -177,14 +154,6 @@ ifndef ATH_DEBUG export ATH_DEBUG=1 endif -ifndef MMIOTRACE -export MMIOTRACE=0 -endif - -ifeq ($(strip $(MMIOTRACE)),1) -EXTRA_CFLAGS += -DMMIOTRACE=1 -endif - ifeq ($(strip $(ATH_DEBUG_SPINLOCKS)),1) COPTS+= -DATH_DEBUG_SPINLOCKS=1 endif @@ -200,22 +169,6 @@ ifeq ($(strip $(HAL_DEBUG)),1) COPTS+= -fno-inline -DAH_DEBUG=1 endif -# Don't let HAL mess with the toolchain - save toolchain variables -save_CC := $(CC) -save_LD := $(LD) -save_STRIP := $(STRIP) -save_OBJCOPY := $(OBJCOPY) -save_NM := $(NM) - -include $(HAL)/public/$(TARGET).inc - -# Restore toolchain variables -CC := $(save_CC) -LD := $(save_LD) -STRIP := $(save_STRIP) -OBJCOPY := $(save_OBJCOPY) -NM := $(save_NM) - include $(TOP)/BuildCaps.inc ifeq ($(strip $(ATH_DEBUG)),1)