~ubuntu-branches/ubuntu/hardy/linux-backports-modules-2.6.24/hardy-security

« back to all changes in this revision

Viewing changes to updates/wireless/iwlwifi/iwlwifi/compatible/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): , Ben Collins
  • Date: 2008-04-02 06:59:04 UTC
  • Revision ID: james.westby@ubuntu.com-20080402065904-e5knh2gn2hms3xbb
Tags: 2.6.24-14.11
[Ben Collins]

* iwlwifi: Update to iwlwifi-1.2.25 and mac80211-10.0.4
  - LP: #200950
* ubuntu: Slight cleanups to module hiearchy and Makefiles
* mac80211: Enable LED triggers
* iwlwifi: Add LED trigger support (rx and tx only)
  - LP: #176090

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CONFIG_IWL4965=m
 
2
CONFIG_IWL3945=m
 
3
CONFIG_IWL3945_LEDS=y
 
4
CONFIG_IWL4965_LEDS=y
 
5
NOSTDINC_FLAGS += -I$(src)/../../mac80211/compatible/include
 
6
EXTRA_CFLAGS += -DCONFIG_IWL4965_QOS -DCONFIG_IWL3945_QOS
 
7
EXTRA_CFLAGS += -DCONFIG_IWL4965_LEDS -DCONFIG_IWL3945_LEDS
 
8
obj-$(CONFIG_IWL3945)   += iwl3945.o
 
9
iwl3945-objs            = iwl3945-base.o iwl-3945.o iwl-3945-rs.o
 
10
ifeq ($(CONFIG_IWL3945_LEDS),y)
 
11
        iwl3945-objs += iwl-3945-led.o
 
12
endif
 
13
 
 
14
 
 
15
obj-$(CONFIG_IWL4965)   += iwl4965.o
 
16
iwl4965-objs            = iwl4965-base.o iwl-4965.o iwl-4965-rs.o
 
17
ifeq ($(CONFIG_IWL4965_LEDS),y)
 
18
        iwl4965-objs += iwl-4965-led.o
 
19
endif
 
20