From 0861d0e5bb8099927e61529937944a1b7e3b34e0 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Wed, 1 Sep 2021 10:14:14 -0400 Subject: [PATCH] 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 Change-Id: Ie524650ab20b70aefa37bfd3bbf499cd923185a1 --- recipes-kernel/linux/linux/wifi.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.16.6