• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# WiMAX LAN device configuration
3#
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
14comment "WiMAX Wireless Broadband support requires CONFIG_INPUT enabled"
15	depends on INPUT = n && RFKILL != n
16
17menuconfig WIMAX
18	tristate "WiMAX Wireless Broadband support"
19	depends on (y && RFKILL != m) || m
20	depends on (INPUT && RFKILL != n) || RFKILL = n
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
37config 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.
53