intel.mk 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. PKG_DRIVERS += iwlwifi
  2. config-$(call config_package,iwlwifi) += IWLWIFI IWLDVM IWLMVM IWLMLD
  3. config-$(CONFIG_PACKAGE_IWLWIFI_DEBUG)+= IWLWIFI_DEBUG
  4. config-$(CONFIG_PACKAGE_IWLWIFI_DEBUGFS)+= IWLWIFI_DEBUGFS
  5. define KernelPackage/iwlwifi
  6. $(call KernelPackage/mac80211/Default)
  7. DEPENDS:= +kmod-mac80211 +kmod-ptp @PCI_SUPPORT +@DRIVER_11AC_SUPPORT +@DRIVER_11AX_SUPPORT +@DRIVER_11BE_SUPPORT
  8. TITLE:=Intel AGN Wireless support
  9. FILES:= \
  10. $(PKG_BUILD_DIR)/drivers/net/wireless/intel/iwlwifi/iwlwifi.ko \
  11. $(PKG_BUILD_DIR)/drivers/net/wireless/intel/iwlwifi/dvm/iwldvm.ko \
  12. $(PKG_BUILD_DIR)/drivers/net/wireless/intel/iwlwifi/mvm/iwlmvm.ko \
  13. $(PKG_BUILD_DIR)/drivers/net/wireless/intel/iwlwifi/mld/iwlmld.ko
  14. AUTOLOAD:=$(call AutoProbe,iwlwifi iwldvm iwlmvm iwlmld)
  15. MENU:=1
  16. endef
  17. define KernelPackage/iwlwifi/description
  18. iwlwifi kernel module for
  19. Intel Wireless WiFi Link 6250AGN Adapter
  20. Intel 6000 Series Wi-Fi Adapters (6200AGN and 6300AGN)
  21. Intel WiFi Link 1000BGN
  22. Intel Wireless WiFi 5150AGN
  23. Intel Wireless WiFi 5100AGN, 5300AGN, and 5350AGN
  24. Intel 6005 Series Wi-Fi Adapters
  25. Intel 6030 Series Wi-Fi Adapters
  26. Intel Wireless WiFi Link 6150BGN 2 Adapter
  27. Intel 100 Series Wi-Fi Adapters (100BGN and 130BGN)
  28. Intel 2000 Series Wi-Fi Adapters
  29. Intel 7260 Wi-Fi Adapter
  30. Intel 3160 Wi-Fi Adapter
  31. Intel 7265 Wi-Fi Adapter
  32. Intel 8260 Wi-Fi Adapter
  33. Intel 3165 Wi-Fi Adapter
  34. endef
  35. define KernelPackage/iwlwifi/config
  36. if PACKAGE_kmod-iwlwifi
  37. config PACKAGE_IWLWIFI_DEBUG
  38. bool "Enable full debugging output in the iwlwifi driver"
  39. default n
  40. help
  41. This option will enable debug tracing output for the iwlwifi drivers
  42. This will result in the kernel module being ~100k larger. You can
  43. control which debug output is sent to the kernel log by setting the
  44. value in
  45. /sys/module/iwlwifi/parameters/debug
  46. This entry will only exist if this option is enabled.
  47. To set a value, simply echo an 8-byte hex value to the same file:
  48. % echo 0x43fff > /sys/module/iwlwifi/parameters/debug
  49. You can find the list of debug mask values in:
  50. drivers/net/wireless/intel/iwlwifi/iwl-debug.h
  51. If this is your first time using this driver, you should say Y here
  52. as the debug information can assist others in helping you resolve
  53. any problems you may encounter.
  54. config PACKAGE_IWLWIFI_DEBUGFS
  55. bool "iwlwifi debugfs support"
  56. depends on PACKAGE_MAC80211_DEBUGFS
  57. default n
  58. help
  59. Enable creation of debugfs files for the iwlwifi drivers. This
  60. is a low-impact option that allows getting insight into the
  61. driver's state at runtime.
  62. endif
  63. endef