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