Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1 | config MAC80211 |
| 2 | tristate "Generic IEEE 802.11 Networking Stack (mac80211)" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3 | select CRYPTO |
| 4 | select CRYPTO_ECB |
| 5 | select CRYPTO_ARC4 |
| 6 | select CRYPTO_AES |
| 7 | select CRC32 |
| 8 | select WIRELESS_EXT |
| 9 | select CFG80211 |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 10 | ---help--- |
John W. Linville | c40896d | 2007-12-21 00:44:59 -0500 | [diff] [blame] | 11 | This option enables the hardware independent IEEE 802.11 |
| 12 | networking stack. |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 13 | |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 14 | config MAC80211_QOS |
| 15 | def_bool y |
| 16 | depends on MAC80211 |
| 17 | depends on NET_SCHED |
| 18 | depends on NETDEVICES_MULTIQUEUE |
| 19 | |
| 20 | comment "QoS/HT support disabled" |
| 21 | depends on MAC80211 && !MAC80211_QOS |
| 22 | comment "QoS/HT support needs CONFIG_NET_SCHED" |
| 23 | depends on MAC80211 && !NET_SCHED |
| 24 | comment "QoS/HT support needs CONFIG_NETDEVICES_MULTIQUEUE" |
| 25 | depends on MAC80211 && !NETDEVICES_MULTIQUEUE |
| 26 | |
Johannes Berg | 4b47589 | 2008-01-02 15:17:03 +0100 | [diff] [blame] | 27 | menu "Rate control algorithm selection" |
| 28 | depends on MAC80211 != n |
Johannes Berg | ac71c69 | 2007-10-28 14:17:44 +0100 | [diff] [blame] | 29 | |
Adrian Bunk | e5f5e73 | 2008-06-26 13:38:13 +0300 | [diff] [blame^] | 30 | config MAC80211_RC_PID |
| 31 | bool "PID controller based rate control algorithm" if EMBEDDED |
| 32 | default y |
| 33 | ---help--- |
| 34 | This option enables a TX rate control algorithm for |
| 35 | mac80211 that uses a PID controller to select the TX |
| 36 | rate. |
| 37 | |
Stefano Brivio | c21b39a | 2007-12-19 01:26:16 +0100 | [diff] [blame] | 38 | choice |
| 39 | prompt "Default rate control algorithm" |
| 40 | default MAC80211_RC_DEFAULT_PID |
Stefano Brivio | c21b39a | 2007-12-19 01:26:16 +0100 | [diff] [blame] | 41 | ---help--- |
| 42 | This option selects the default rate control algorithm |
| 43 | mac80211 will use. Note that this default can still be |
| 44 | overriden through the ieee80211_default_rc_algo module |
Johannes Berg | 4b47589 | 2008-01-02 15:17:03 +0100 | [diff] [blame] | 45 | parameter if different algorithms are available. |
Johannes Berg | ac71c69 | 2007-10-28 14:17:44 +0100 | [diff] [blame] | 46 | |
Stefano Brivio | c21b39a | 2007-12-19 01:26:16 +0100 | [diff] [blame] | 47 | config MAC80211_RC_DEFAULT_PID |
| 48 | bool "PID controller based rate control algorithm" |
Adrian Bunk | e5f5e73 | 2008-06-26 13:38:13 +0300 | [diff] [blame^] | 49 | depends on MAC80211_RC_PID |
Stefano Brivio | c21b39a | 2007-12-19 01:26:16 +0100 | [diff] [blame] | 50 | ---help--- |
| 51 | Select the PID controller based rate control as the |
| 52 | default rate control algorithm. You should choose |
| 53 | this unless you know what you are doing. |
| 54 | |
Stefano Brivio | c21b39a | 2007-12-19 01:26:16 +0100 | [diff] [blame] | 55 | endchoice |
| 56 | |
| 57 | config MAC80211_RC_DEFAULT |
| 58 | string |
Stefano Brivio | c21b39a | 2007-12-19 01:26:16 +0100 | [diff] [blame] | 59 | default "pid" if MAC80211_RC_DEFAULT_PID |
Stefano Brivio | c21b39a | 2007-12-19 01:26:16 +0100 | [diff] [blame] | 60 | default "" |
| 61 | |
Johannes Berg | 4b47589 | 2008-01-02 15:17:03 +0100 | [diff] [blame] | 62 | endmenu |
Mattias Nissler | ad01837 | 2007-12-19 01:25:57 +0100 | [diff] [blame] | 63 | |
Johannes Berg | 2f5ce79 | 2008-02-23 15:17:21 +0100 | [diff] [blame] | 64 | config MAC80211_MESH |
| 65 | bool "Enable mac80211 mesh networking (pre-802.11s) support" |
Luis Carlos Cobo | 37659ff | 2008-02-29 12:13:38 -0800 | [diff] [blame] | 66 | depends on MAC80211 && EXPERIMENTAL |
Johannes Berg | 2f5ce79 | 2008-02-23 15:17:21 +0100 | [diff] [blame] | 67 | ---help--- |
Johannes Berg | 5c142e8 | 2008-02-25 10:13:31 +0100 | [diff] [blame] | 68 | This options enables support of Draft 802.11s mesh networking. |
| 69 | The implementation is based on Draft 1.08 of the Mesh Networking |
| 70 | amendment. For more information visit http://o11s.org/. |
Johannes Berg | 2f5ce79 | 2008-02-23 15:17:21 +0100 | [diff] [blame] | 71 | |
| 72 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 73 | config MAC80211_LEDS |
| 74 | bool "Enable LED triggers" |
Luca Tettamanti | bd8fd21 | 2008-04-27 15:34:55 -0700 | [diff] [blame] | 75 | depends on MAC80211 |
| 76 | select NEW_LEDS |
| 77 | select LEDS_TRIGGERS |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 78 | ---help--- |
John W. Linville | c40896d | 2007-12-21 00:44:59 -0500 | [diff] [blame] | 79 | This option enables a few LED triggers for different |
| 80 | packet receive/transmit events. |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 81 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 82 | config MAC80211_DEBUGFS |
| 83 | bool "Export mac80211 internals in DebugFS" |
| 84 | depends on MAC80211 && DEBUG_FS |
| 85 | ---help--- |
| 86 | Select this to see extensive information about |
| 87 | the internal state of mac80211 in debugfs. |
| 88 | |
| 89 | Say N unless you know you need this. |
| 90 | |
Johannes Berg | 6feeb8a | 2008-01-29 16:57:51 +0100 | [diff] [blame] | 91 | config MAC80211_DEBUG_PACKET_ALIGNMENT |
| 92 | bool "Enable packet alignment debugging" |
| 93 | depends on MAC80211 |
| 94 | help |
| 95 | This option is recommended for driver authors and strongly |
| 96 | discouraged for everybody else, it will trigger a warning |
| 97 | when a driver hands mac80211 a buffer that is aligned in |
| 98 | a way that will cause problems with the IP stack on some |
| 99 | architectures. |
| 100 | |
| 101 | Say N unless you're writing a mac80211 based driver. |
| 102 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 103 | config MAC80211_DEBUG |
| 104 | bool "Enable debugging output" |
| 105 | depends on MAC80211 |
| 106 | ---help--- |
| 107 | This option will enable debug tracing output for the |
| 108 | ieee80211 network stack. |
| 109 | |
| 110 | If you are not trying to debug or develop the ieee80211 |
| 111 | subsystem, you most likely want to say N here. |
| 112 | |
Ron Rindjunsky | 82b3cad | 2007-12-16 16:09:26 -0800 | [diff] [blame] | 113 | config MAC80211_HT_DEBUG |
John W. Linville | c40896d | 2007-12-21 00:44:59 -0500 | [diff] [blame] | 114 | bool "Enable HT debugging output" |
| 115 | depends on MAC80211_DEBUG |
| 116 | ---help--- |
| 117 | This option enables 802.11n High Throughput features |
| 118 | debug tracing output. |
Ron Rindjunsky | 82b3cad | 2007-12-16 16:09:26 -0800 | [diff] [blame] | 119 | |
John W. Linville | c40896d | 2007-12-21 00:44:59 -0500 | [diff] [blame] | 120 | If you are not trying to debug of develop the ieee80211 |
| 121 | subsystem, you most likely want to say N here. |
Ron Rindjunsky | 82b3cad | 2007-12-16 16:09:26 -0800 | [diff] [blame] | 122 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 123 | config MAC80211_VERBOSE_DEBUG |
| 124 | bool "Verbose debugging output" |
| 125 | depends on MAC80211_DEBUG |
| 126 | |
| 127 | config MAC80211_LOWTX_FRAME_DUMP |
| 128 | bool "Debug frame dumping" |
| 129 | depends on MAC80211_DEBUG |
| 130 | ---help--- |
| 131 | Selecting this option will cause the stack to |
| 132 | print a message for each frame that is handed |
| 133 | to the lowlevel driver for transmission. This |
| 134 | message includes all MAC addresses and the |
| 135 | frame control field. |
| 136 | |
| 137 | If unsure, say N and insert the debugging code |
| 138 | you require into the driver you are debugging. |
| 139 | |
Johannes Berg | 9ae705c | 2008-06-20 11:54:24 +0200 | [diff] [blame] | 140 | config MAC80211_TKIP_DEBUG |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 141 | bool "TKIP debugging" |
| 142 | depends on MAC80211_DEBUG |
| 143 | |
| 144 | config MAC80211_DEBUG_COUNTERS |
| 145 | bool "Extra statistics for TX/RX debugging" |
| 146 | depends on MAC80211_DEBUG |
| 147 | |
| 148 | config MAC80211_IBSS_DEBUG |
| 149 | bool "Support for IBSS testing" |
| 150 | depends on MAC80211_DEBUG |
| 151 | ---help--- |
| 152 | Say Y here if you intend to debug the IBSS code. |
| 153 | |
| 154 | config MAC80211_VERBOSE_PS_DEBUG |
| 155 | bool "Verbose powersave mode debugging" |
| 156 | depends on MAC80211_DEBUG |
| 157 | ---help--- |
| 158 | Say Y here to print out verbose powersave |
| 159 | mode debug messages. |
Johannes Berg | 2f5ce79 | 2008-02-23 15:17:21 +0100 | [diff] [blame] | 160 | |
| 161 | config MAC80211_VERBOSE_MPL_DEBUG |
| 162 | bool "Verbose mesh peer link debugging" |
| 163 | depends on MAC80211_DEBUG && MAC80211_MESH |
| 164 | ---help--- |
| 165 | Say Y here to print out verbose mesh peer link |
| 166 | debug messages. |
Yi Zhu | 7b1e78d | 2008-06-18 17:53:43 +0300 | [diff] [blame] | 167 | |
| 168 | config MAC80211_VERBOSE_SPECT_MGMT_DEBUG |
| 169 | bool "Verbose Spectrum Management (IEEE 802.11h)debugging" |
| 170 | depends on MAC80211_DEBUG |
| 171 | ---help--- |
| 172 | Say Y here to print out verbose Spectrum Management (IEEE 802.11h) |
| 173 | debug messages. |