Inaky Perez-Gonzalez | b0c83ae | 2008-12-23 16:18:24 -0800 | [diff] [blame] | 1 | # |
| 2 | # WiMAX LAN device configuration |
| 3 | # |
Inaky Perez-Gonzalez | 71f78af | 2009-01-08 11:07:36 -0800 | [diff] [blame] | 4 | # Note the ugly 'depends on' on WIMAX: that disallows RFKILL to be a |
| 5 | # module if WIMAX is to be linked in. The WiMAX code is done in such a |
| 6 | # way that it doesn't require and explicit dependency on RFKILL in |
| 7 | # case an embedded system wants to rip it out. |
| 8 | # |
| 9 | # As well, enablement of the RFKILL code means we need the INPUT layer |
| 10 | # support to inject events coming from hw rfkill switches. That |
| 11 | # dependency could be killed if input.h provided appropiate means to |
| 12 | # work when input is disabled. |
| 13 | |
| 14 | comment "WiMAX Wireless Broadband support requires CONFIG_INPUT enabled" |
| 15 | depends on INPUT = n && RFKILL != n |
Inaky Perez-Gonzalez | b0c83ae | 2008-12-23 16:18:24 -0800 | [diff] [blame] | 16 | |
| 17 | menuconfig WIMAX |
| 18 | tristate "WiMAX Wireless Broadband support" |
Inaky Perez-Gonzalez | 71f78af | 2009-01-08 11:07:36 -0800 | [diff] [blame] | 19 | depends on (y && RFKILL != m) || m |
| 20 | depends on (INPUT && RFKILL != n) || RFKILL = n |
Inaky Perez-Gonzalez | b0c83ae | 2008-12-23 16:18:24 -0800 | [diff] [blame] | 21 | help |
| 22 | |
| 23 | Select to configure support for devices that provide |
| 24 | wireless broadband connectivity using the WiMAX protocol |
| 25 | (IEEE 802.16). |
| 26 | |
| 27 | Please note that most of these devices require signing up |
| 28 | for a service plan with a provider. |
| 29 | |
| 30 | The different WiMAX drivers can be enabled in the menu entry |
| 31 | |
| 32 | Device Drivers > Network device support > WiMAX Wireless |
| 33 | Broadband devices |
| 34 | |
| 35 | If unsure, it is safe to select M (module). |
| 36 | |
| 37 | config WIMAX_DEBUG_LEVEL |
| 38 | int "WiMAX debug level" |
| 39 | depends on WIMAX |
| 40 | default 8 |
| 41 | help |
| 42 | |
| 43 | Select the maximum debug verbosity level to be compiled into |
| 44 | the WiMAX stack code. |
| 45 | |
| 46 | By default, debug messages are disabled at runtime and can |
| 47 | be selectively enabled for different parts of the code using |
| 48 | the sysfs debug-levels file. |
| 49 | |
| 50 | If set at zero, this will compile out all the debug code. |
| 51 | |
| 52 | It is recommended that it is left at 8. |