diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2008-06-04 13:16:18 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2008-06-04 13:16:18 +0000 |
commit | 0244e57bb9fb9ebd1dd224bd5789ad9cc24b0175 (patch) | |
tree | df3661a97c04b17e7226289fb1a50b61c29f4603 /package/madwifi/patches/402-changeset_r3603.patch | |
parent | 40a175150e8ca6d66023d419196701aa337f8612 (diff) | |
download | upstream-0244e57bb9fb9ebd1dd224bd5789ad9cc24b0175.tar.gz upstream-0244e57bb9fb9ebd1dd224bd5789ad9cc24b0175.tar.bz2 upstream-0244e57bb9fb9ebd1dd224bd5789ad9cc24b0175.zip |
refresh madwifi patches using upstream style
SVN-Revision: 11351
Diffstat (limited to 'package/madwifi/patches/402-changeset_r3603.patch')
-rw-r--r-- | package/madwifi/patches/402-changeset_r3603.patch | 176 |
1 files changed, 176 insertions, 0 deletions
diff --git a/package/madwifi/patches/402-changeset_r3603.patch b/package/madwifi/patches/402-changeset_r3603.patch new file mode 100644 index 0000000000..92f6e6ea44 --- /dev/null +++ b/package/madwifi/patches/402-changeset_r3603.patch @@ -0,0 +1,176 @@ +--- a/Makefile ++++ b/Makefile +@@ -40,10 +40,7 @@ + # Makefile for the HAL-based Atheros driver. + # + +-ifeq ($(obj),) +-obj= . +-endif +- ++obj := $(firstword $(obj) $(SUBDIRS) .) + TOP = $(obj) + + ifneq (svnversion.h,$(MAKECMDGOALS)) +--- a/ath/Makefile ++++ b/ath/Makefile +@@ -40,10 +40,7 @@ + # Makefile for the Atheros WLAN driver. + # + +-ifeq ($(obj),) +-obj= . +-endif +- ++obj := $(firstword $(obj) $(SUBDIRS) .) + TOP = $(obj)/.. + + ifeq ($(strip $(BUS)),AHB) +--- a/ath_hal/Makefile ++++ b/ath_hal/Makefile +@@ -40,10 +40,7 @@ + # Makefile for the Atheros WLAN driver. + # + +-ifeq ($(obj),) +-obj= . +-endif +- ++obj := $(firstword $(obj) $(SUBDIRS) .) + TOP = $(obj)/.. + + include $(TOP)/Makefile.inc +--- a/ath_rate/Makefile ++++ b/ath_rate/Makefile +@@ -1,7 +1,4 @@ +-ifeq ($(obj),) +-obj= . +-endif +- ++obj := $(firstword $(obj) $(SUBDIRS) .) + TOP = $(obj)/.. + + obj-y := amrr/ onoe/ sample/ minstrel/ +--- a/ath_rate/amrr/Makefile ++++ b/ath_rate/amrr/Makefile +@@ -40,10 +40,7 @@ + # + # Makefile for the Atheros Rate Control Support. + # +-ifeq ($(obj),) +-obj= . +-endif +- ++obj := $(firstword $(obj) $(SUBDIRS) .) + TOP = $(obj)/../.. + + obj-m += ath_rate_amrr.o +--- a/ath_rate/minstrel/Makefile ++++ b/ath_rate/minstrel/Makefile +@@ -38,10 +38,7 @@ + # + # Makefile for the Atheros Rate Control Support. + # +-ifeq ($(obj),) +-obj= . +-endif +- ++obj := $(firstword $(obj) $(SUBDIRS) .) + TOP = $(obj)/../.. + + obj-m += ath_rate_minstrel.o +--- a/ath_rate/onoe/Makefile ++++ b/ath_rate/onoe/Makefile +@@ -40,10 +40,7 @@ + # + # Makefile for the Atheros Rate Control Support. + # +-ifeq ($(obj),) +-obj= . +-endif +- ++obj := $(firstword $(obj) $(SUBDIRS) .) + TOP = $(obj)/../.. + + obj-m += ath_rate_onoe.o +--- a/ath_rate/sample/Makefile ++++ b/ath_rate/sample/Makefile +@@ -38,10 +38,7 @@ + # + # Makefile for the Atheros Rate Control Support. + # +-ifeq ($(obj),) +-obj= . +-endif +- ++obj := $(firstword $(obj) $(SUBDIRS) .) + TOP = $(obj)/../.. + + obj-m += ath_rate_sample.o +--- a/net80211/Makefile ++++ b/net80211/Makefile +@@ -39,10 +39,7 @@ + # + # Makefile for the 802.11 WLAN modules. + # +-ifeq ($(obj),) +-obj= . +-endif +- ++obj := $(firstword $(obj) $(SUBDIRS) .) + TOP = $(obj)/.. + # + # There is one authenticator mechanism: an in-kernel implementation +--- a/regression/Makefile ++++ b/regression/Makefile +@@ -1,7 +1,4 @@ +-ifeq ($(obj),) +-obj= . +-endif +- ++obj := $(firstword $(obj) $(SUBDIRS) .) + TOP = $(obj)/.. + + obj-y := ccmp/ tkip/ wep/ +--- a/regression/ccmp/Makefile ++++ b/regression/ccmp/Makefile +@@ -1,10 +1,7 @@ + # + # Makefile for the CCMP regression test. + # +-ifeq ($(obj),) +-obj= . +-endif +- ++obj := $(firstword $(obj) $(SUBDIRS) .) + TOP = $(obj)/../.. + + obj-m += ath_test_ccmp.o +--- a/regression/tkip/Makefile ++++ b/regression/tkip/Makefile +@@ -1,10 +1,7 @@ + # + # Makefile for the TKIP regression test. + # +-ifeq ($(obj),) +-obj= . +-endif +- ++obj := $(firstword $(obj) $(SUBDIRS) .) + TOP = $(obj)/../.. + + obj-m += ath_test_tkip.o +--- a/regression/wep/Makefile ++++ b/regression/wep/Makefile +@@ -1,10 +1,7 @@ + # + # Makefile for the WEP regression test. + # +-ifeq ($(obj),) +-obj= . +-endif +- ++obj := $(firstword $(obj) $(SUBDIRS) .) + TOP = $(obj)/../.. + + obj-m += ath_test_wep.o |