Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(260)

Side by Side Diff: chromeos/scripts/compat_wireless_config

Issue 6880162: CHROMIUMOS: compat-wireless: fixup rate control configuration (Closed) Base URL: ssh://gitrw.chromium.org:9222/kernel.git@master
Patch Set: Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # /bin/sh 1 # /bin/sh
2 2
3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. 3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
4 # Distributed under the terms of the GNU General Public License v2 4 # Distributed under the terms of the GNU General Public License v2
5 5
6 # 6 #
7 # Helper script to setup compat-wireless configuration. 7 # Helper script to setup compat-wireless configuration.
8 # 8 #
9 9
10 S=${1:?No kernel source directory specified} 10 S=${1:?No kernel source directory specified}
(...skipping 18 matching lines...) Expand all
29 CONFIG_RFKILL_BACKPORT=y 29 CONFIG_RFKILL_BACKPORT=y
30 CONFIG_RFKILL_BACKPORT_INPUT=y 30 CONFIG_RFKILL_BACKPORT_INPUT=y
31 31
32 CONFIG_COMPAT_WIRELESS=m 32 CONFIG_COMPAT_WIRELESS=m
33 CONFIG_COMPAT_WIRELESS_MODULES=m 33 CONFIG_COMPAT_WIRELESS_MODULES=m
34 34
35 CONFIG_MAC80211=m 35 CONFIG_MAC80211=m
36 CONFIG_MAC80211_LEDS=y 36 CONFIG_MAC80211_LEDS=y
37 CONFIG_MAC80211_DEBUGFS=y 37 CONFIG_MAC80211_DEBUGFS=y
38 CONFIG_MAC80211_RC_MINSTREL=y 38 CONFIG_MAC80211_RC_MINSTREL=y
39 » CONFIG_MAC80211_RC_DEFAULT="minstrel" 39 » CONFIG_MAC80211_RC_MINSTREL_HT=y
40 » CONFIG_COMPAT_MAC80211_RC_DEFAULT="minstrel" 40 » CONFIG_COMPAT_MAC80211_RC_DEFAULT="minstrel_ht"
41 CONFIG_MAC80211_DEBUG_COUNTERS=y 41 CONFIG_MAC80211_DEBUG_COUNTERS=y
42 42
43 CONFIG_CFG80211=m 43 CONFIG_CFG80211=m
44 CONFIG_CFG80211_DEBUGFS=y 44 CONFIG_CFG80211_DEBUGFS=y
45 CONFIG_CFG80211_DEFAULT_PS=y 45 CONFIG_CFG80211_DEFAULT_PS=y
46 CONFIG_CFG80211_WEXT=y 46 CONFIG_CFG80211_WEXT=y
47 47
48 CONFIG_ATH=y 48 CONFIG_ATH=y
49 CONFIG_ATH_COMMON=m 49 CONFIG_ATH_COMMON=m
50 CONFIG_ATH_DEBUG=y 50 CONFIG_ATH_DEBUG=y
51 CONFIG_ATH5K=m 51 CONFIG_ATH5K=m
52 CONFIG_ATH5K_PCI=y 52 CONFIG_ATH5K_PCI=y
53 CONFIG_ATH9K=m 53 CONFIG_ATH9K=m
54 CONFIG_ATH9K_HW=m 54 CONFIG_ATH9K_HW=m
55 CONFIG_ATH9K_COMMON=m 55 CONFIG_ATH9K_COMMON=m
56 CONFIG_ATH9K_RATE_CONTROL=y
mukesh agrawal 2011/04/25 17:41:52 I see that we enable ath9k rate control here. But
Sam Leffler 2011/04/25 18:26:41 We're using compat-wireless to bring in newer wifi
mukesh agrawal 2011/04/25 20:12:59 Cool -- makes sense now.
56 CONFIG_ATH9K_DEBUGFS=y 57 CONFIG_ATH9K_DEBUGFS=y
57 58
58 CONFIG_IWLWIFI=m 59 CONFIG_IWLWIFI=m
59 CONFIG_COMPAT_IWLWIFI=m 60 CONFIG_COMPAT_IWLWIFI=m
60 CONFIG_IWLWIFI_SPECTRUM_MANAGEMENT=y 61 CONFIG_IWLWIFI_SPECTRUM_MANAGEMENT=y
61 CONFIG_IWLAGN=m 62 CONFIG_IWLAGN=m
62 CONFIG_COMPAT_IWL4965=y 63 CONFIG_COMPAT_IWL4965=y
63 CONFIG_IWL5000=y 64 CONFIG_IWL5000=y
64 CONFIG_IWL3945=m 65 CONFIG_IWL3945=m
65 CONFIG_IWL3945_SPECTRUM_MANAGEMENT=y 66 CONFIG_IWL3945_SPECTRUM_MANAGEMENT=y
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 #ifdef CONFIG_NET_SCHED 120 #ifdef CONFIG_NET_SCHED
120 #ifdef CONFIG_NETDEVICES_MULTIQUEUE 121 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
121 #ifndef CONFIG_MAC80211_QOS 122 #ifndef CONFIG_MAC80211_QOS
122 #define CONFIG_MAC80211_QOS 1 123 #define CONFIG_MAC80211_QOS 1
123 #endif /* CONFIG_MAC80211_QOS */ 124 #endif /* CONFIG_MAC80211_QOS */
124 #endif 125 #endif
125 #endif 126 #endif
126 #endif /* COMPAT_AUTOCONF_INCLUDED */ 127 #endif /* COMPAT_AUTOCONF_INCLUDED */
127 EOF 128 EOF
128 )>"${COMPAT_WIRELESS}"/include/linux/compat_autoconf.h 129 )>"${COMPAT_WIRELESS}"/include/linux/compat_autoconf.h
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698