Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 appropriate means to
  12. # work when input is disabled.
  13. comment "WiMAX Wireless Broadband support requires CONFIG_INPUT enabled"
  14. depends on INPUT = n && RFKILL != n
  15. menuconfig WIMAX
  16. tristate "WiMAX Wireless Broadband support"
  17. depends on (y && RFKILL != m) || m
  18. depends on (INPUT && RFKILL != n) || RFKILL = n
  19. help
  20. Select to configure support for devices that provide
  21. wireless broadband connectivity using the WiMAX protocol
  22. (IEEE 802.16).
  23. Please note that most of these devices require signing up
  24. for a service plan with a provider.
  25. The different WiMAX drivers can be enabled in the menu entry
  26. Device Drivers > Network device support > WiMAX Wireless
  27. Broadband devices
  28. If unsure, it is safe to select M (module).
  29. config WIMAX_DEBUG_LEVEL
  30. int "WiMAX debug level"
  31. depends on WIMAX
  32. default 8
  33. help
  34. Select the maximum debug verbosity level to be compiled into
  35. the WiMAX stack code.
  36. By default, debug messages are disabled at runtime and can
  37. be selectively enabled for different parts of the code using
  38. the sysfs debug-levels file.
  39. If set at zero, this will compile out all the debug code.
  40. It is recommended that it is left at 8.