~ubuntu-branches/ubuntu/maverick/linux-backports-modules-2.6.32/maverick

« back to all changes in this revision

Viewing changes to updates/compat-wireless-2.6/net/mac80211/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Andy Whitcroft, Andy Whitcroft
  • Date: 2010-02-04 23:15:51 UTC
  • Revision ID: james.westby@ubuntu.com-20100204231551-vjz5pkvxclukjxm1
Tags: 2.6.32-12.1
[ Andy Whitcroft ]

* initial LBM for lucid
* drop generated files
* printchanges -- rebase tree does not have stable tags use changelog
* printenv -- add revisions to printenv output
* formally rename compat-wireless to linux-backports-modules-wireless
* Update to compat-wireless-2.6.33-rc5
* update nouveau to mainline 2.6.33-rc4
* add new LBM package for nouveau
* nouveau -- fix major numbers and proc entry names
* fix up firmware installs for -wireless
* clean up UPDATE-NOVEAU
* update Nouveau to v2.6.33-rc6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
obj-$(CONFIG_MAC80211) += mac80211.o
 
2
 
 
3
# mac80211 objects
 
4
mac80211-y := \
 
5
        main.o status.o \
 
6
        sta_info.o \
 
7
        wep.o \
 
8
        wpa.o \
 
9
        scan.o \
 
10
        ht.o agg-tx.o agg-rx.o \
 
11
        ibss.o \
 
12
        mlme.o \
 
13
        iface.o \
 
14
        rate.o \
 
15
        michael.o \
 
16
        tkip.o \
 
17
        aes_ccm.o \
 
18
        aes_cmac.o \
 
19
        cfg.o \
 
20
        rx.o \
 
21
        spectmgmt.o \
 
22
        tx.o \
 
23
        key.o \
 
24
        util.o \
 
25
        wme.o \
 
26
        event.o
 
27
 
 
28
mac80211-$(CONFIG_MAC80211_LEDS) += led.o
 
29
mac80211-$(CONFIG_MAC80211_DEBUGFS) += \
 
30
        debugfs.o \
 
31
        debugfs_sta.o \
 
32
        debugfs_netdev.o \
 
33
        debugfs_key.o
 
34
 
 
35
mac80211-$(CONFIG_MAC80211_MESH) += \
 
36
        mesh.o \
 
37
        mesh_pathtbl.o \
 
38
        mesh_plink.o \
 
39
        mesh_hwmp.o
 
40
 
 
41
mac80211-$(CONFIG_PM) += pm.o
 
42
 
 
43
mac80211-$(CONFIG_MAC80211_DRIVER_API_TRACER) += driver-trace.o
 
44
CFLAGS_driver-trace.o := -I$(src)
 
45
 
 
46
# objects for PID algorithm
 
47
rc80211_pid-y := rc80211_pid_algo.o
 
48
rc80211_pid-$(CONFIG_MAC80211_DEBUGFS) += rc80211_pid_debugfs.o
 
49
 
 
50
rc80211_minstrel-y := rc80211_minstrel.o
 
51
rc80211_minstrel-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_debugfs.o
 
52
 
 
53
mac80211-$(CONFIG_MAC80211_RC_PID) += $(rc80211_pid-y)
 
54
mac80211-$(CONFIG_MAC80211_RC_MINSTREL) += $(rc80211_minstrel-y)
 
55
 
 
56
ccflags-y += -D__CHECK_ENDIAN__