diff options
author | Scott Murray <scott.murray@konsulko.com> | 2021-09-01 10:14:14 -0400 |
---|---|---|
committer | jenkins-dontreply@build.automotivelinux.org <collab-it+agl-jobbuilder@linuxfoundation.org> | 2022-04-13 13:31:22 +0000 |
commit | 0861d0e5bb8099927e61529937944a1b7e3b34e0 (patch) | |
tree | 02c1efc6121c008d18e4c272a437512918fd2a1b /recipes-kernel/linux | |
parent | d8d18beee18421c689aca0fe71bfeb331442ad02 (diff) |
linux: update WiFi hardware config fragment
The linux-yocto kernel and derivatives warn about WLAN_VENDOR_ATH
being set to 'm' when it's a boolean as of 5.13.x, update our
wifi.cfg fragment to fix that.
Bug-AGL: SPEC-3819
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: Ie524650ab20b70aefa37bfd3bbf499cd923185a1
Diffstat (limited to 'recipes-kernel/linux')
-rw-r--r-- | recipes-kernel/linux/linux/wifi.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-kernel/linux/linux/wifi.cfg b/recipes-kernel/linux/linux/wifi.cfg index 00c2e06e4..879a6f236 100644 --- a/recipes-kernel/linux/linux/wifi.cfg +++ b/recipes-kernel/linux/linux/wifi.cfg @@ -1,6 +1,6 @@ CONFIG_CFG80211=m CONFIG_MAC80211=m -CONFIG_WLAN_VENDOR_ATH=m +CONFIG_WLAN_VENDOR_ATH=y CONFIG_ATH9K_HTC=m CONFIG_STAGING=y CONFIG_R8188EU=m |