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

Side by Side Diff: chromeos/scripts/compat_wireless_config

Issue 3561007: Adding ath6kl driver support to compat-wireless (Closed) Base URL: http://git.chromium.org/git/kernel.git
Patch Set: Enabling certain config options by default. Created 10 years, 2 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 | « chromeos/compat-wireless/drivers/staging/ath6kl/wmi/wmi_host.h ('k') | 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 CONFIG_COMPAT_IWL4965=y 54 CONFIG_COMPAT_IWL4965=y
55 CONFIG_IWL5000=y 55 CONFIG_IWL5000=y
56 CONFIG_IWL3945=m 56 CONFIG_IWL3945=m
57 CONFIG_IWL3945_SPECTRUM_MANAGEMENT=y 57 CONFIG_IWL3945_SPECTRUM_MANAGEMENT=y
58 CONFIG_IWLWIFI_DEBUG=y 58 CONFIG_IWLWIFI_DEBUG=y
59 CONFIG_IWLWIFI_DEBUGFS=y 59 CONFIG_IWLWIFI_DEBUGFS=y
60 60
61 CONFIG_USB_NET_COMPAT_CDCETHER=m 61 CONFIG_USB_NET_COMPAT_CDCETHER=m
62 CONFIG_USB_NET_COMPAT_RNDIS_HOST=m 62 CONFIG_USB_NET_COMPAT_RNDIS_HOST=m
63 CONFIG_USB_COMPAT_USBNET=m 63 CONFIG_USB_COMPAT_USBNET=m
64
65 CONFIG_COMPAT_STAGING=m
66 CONFIG_ATH6K_LEGACY=m
67 CONFIG_ATH6KL_CFG80211=y
68 CONFIG_ATH6KL_DEBUG=y
69 CONFIG_ATH6KL_ENABLE_TARGET_DEBUG_PRINTS=y
70 CONFIG_ATH6KL_VIRTUAL_SCATTER_GATHER=y
71 CONFIG_AR600x_DEBUG_UART_TX_PIN=8
72 CONFIG_AR600x_SD31_XXX=y
64 ' 73 '
65 echo "Configure compat-wireless: ${COMPAT_CONFIG}" 74 echo "Configure compat-wireless: ${COMPAT_CONFIG}"
66 75
67 # 76 #
68 # Edit Makefiles to reflect configuration knobs 77 # Edit Makefiles to reflect configuration knobs
69 # 78 #
70 SED_ARGS= 79 SED_ARGS=
71 for c in $COMPAT_CONFIG; do 80 for c in $COMPAT_CONFIG; do
72 a=`echo $c | sed s/=.*//` 81 a=`echo $c | sed s/=.*//`
73 b=`echo $c | sed s/.*=//` 82 b=`echo $c | sed s/.*=//`
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 #ifdef CONFIG_NET_SCHED 120 #ifdef CONFIG_NET_SCHED
112 #ifdef CONFIG_NETDEVICES_MULTIQUEUE 121 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
113 #ifndef CONFIG_MAC80211_QOS 122 #ifndef CONFIG_MAC80211_QOS
114 #define CONFIG_MAC80211_QOS 1 123 #define CONFIG_MAC80211_QOS 1
115 #endif /* CONFIG_MAC80211_QOS */ 124 #endif /* CONFIG_MAC80211_QOS */
116 #endif 125 #endif
117 #endif 126 #endif
118 #endif /* COMPAT_AUTOCONF_INCLUDED */ 127 #endif /* COMPAT_AUTOCONF_INCLUDED */
119 EOF 128 EOF
120 )>"${COMPAT_WIRELESS}"/include/linux/compat_autoconf.h 129 )>"${COMPAT_WIRELESS}"/include/linux/compat_autoconf.h
OLDNEW
« no previous file with comments | « chromeos/compat-wireless/drivers/staging/ath6kl/wmi/wmi_host.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698