2007-10-28 16:17:44 +03:00
|
|
|
obj-$(CONFIG_MAC80211) += mac80211.o
|
2007-05-05 22:45:53 +04:00
|
|
|
|
2008-01-02 17:17:03 +03:00
|
|
|
# mac80211 objects
|
|
|
|
mac80211-y := \
|
2009-11-18 20:42:47 +03:00
|
|
|
main.o status.o \
|
2015-07-15 15:56:05 +03:00
|
|
|
driver-ops.o \
|
2007-05-05 22:45:53 +04:00
|
|
|
sta_info.o \
|
|
|
|
wep.o \
|
|
|
|
wpa.o \
|
2009-12-23 15:15:40 +03:00
|
|
|
scan.o offchannel.o \
|
2009-02-10 23:25:46 +03:00
|
|
|
ht.o agg-tx.o agg-rx.o \
|
2012-10-10 15:33:04 +04:00
|
|
|
vht.o \
|
2009-02-15 14:44:28 +03:00
|
|
|
ibss.o \
|
2008-04-08 23:14:40 +04:00
|
|
|
iface.o \
|
|
|
|
rate.o \
|
2007-05-05 22:45:53 +04:00
|
|
|
michael.o \
|
|
|
|
tkip.o \
|
|
|
|
aes_ccm.o \
|
2015-01-24 20:52:06 +03:00
|
|
|
aes_gcm.o \
|
2009-01-08 14:32:01 +03:00
|
|
|
aes_cmac.o \
|
2015-01-24 20:52:09 +03:00
|
|
|
aes_gmac.o \
|
2007-09-19 01:29:20 +04:00
|
|
|
cfg.o \
|
2014-06-04 19:31:56 +04:00
|
|
|
ethtool.o \
|
2007-07-27 17:43:22 +04:00
|
|
|
rx.o \
|
2008-09-09 16:49:03 +04:00
|
|
|
spectmgmt.o \
|
2007-07-27 17:43:22 +04:00
|
|
|
tx.o \
|
2007-07-27 17:43:23 +04:00
|
|
|
key.o \
|
2007-07-27 17:43:23 +04:00
|
|
|
util.o \
|
2008-07-15 14:34:57 +04:00
|
|
|
wme.o \
|
2011-11-25 16:31:53 +04:00
|
|
|
chan.o \
|
2014-05-01 11:17:28 +04:00
|
|
|
trace.o mlme.o \
|
2014-11-03 12:33:19 +03:00
|
|
|
tdls.o \
|
|
|
|
ocb.o
|
2008-01-02 17:17:03 +03:00
|
|
|
|
2008-04-08 23:14:40 +04:00
|
|
|
mac80211-$(CONFIG_MAC80211_LEDS) += led.o
|
2008-01-02 17:17:03 +03:00
|
|
|
mac80211-$(CONFIG_MAC80211_DEBUGFS) += \
|
|
|
|
debugfs.o \
|
|
|
|
debugfs_sta.o \
|
|
|
|
debugfs_netdev.o \
|
|
|
|
debugfs_key.o
|
|
|
|
|
2008-02-23 17:17:21 +03:00
|
|
|
mac80211-$(CONFIG_MAC80211_MESH) += \
|
|
|
|
mesh.o \
|
|
|
|
mesh_pathtbl.o \
|
|
|
|
mesh_plink.o \
|
2012-03-31 22:31:32 +04:00
|
|
|
mesh_hwmp.o \
|
2013-01-30 21:14:08 +04:00
|
|
|
mesh_sync.o \
|
|
|
|
mesh_ps.o
|
2008-02-23 17:17:21 +03:00
|
|
|
|
2009-01-19 19:20:53 +03:00
|
|
|
mac80211-$(CONFIG_PM) += pm.o
|
|
|
|
|
2012-06-22 14:55:52 +04:00
|
|
|
CFLAGS_trace.o := -I$(src)
|
2009-07-07 15:46:22 +04:00
|
|
|
|
2008-10-05 20:07:45 +04:00
|
|
|
rc80211_minstrel-y := rc80211_minstrel.o
|
|
|
|
rc80211_minstrel-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_debugfs.o
|
|
|
|
|
2010-05-13 18:48:03 +04:00
|
|
|
rc80211_minstrel_ht-y := rc80211_minstrel_ht.o
|
|
|
|
rc80211_minstrel_ht-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_ht_debugfs.o
|
|
|
|
|
2008-10-05 20:07:45 +04:00
|
|
|
mac80211-$(CONFIG_MAC80211_RC_MINSTREL) += $(rc80211_minstrel-y)
|
2010-05-13 18:48:03 +04:00
|
|
|
mac80211-$(CONFIG_MAC80211_RC_MINSTREL_HT) += $(rc80211_minstrel_ht-y)
|
2008-12-09 14:39:52 +03:00
|
|
|
|
2012-06-22 13:29:50 +04:00
|
|
|
ccflags-y += -D__CHECK_ENDIAN__ -DDEBUG
|