From 84df6d93aec6b1a2e950a305d765b7066daff91b Mon Sep 17 00:00:00 2001 From: Ramon Moesching Date: Tue, 3 Nov 2020 16:47:27 +0100 Subject: [PATCH] linux-netmodule: add wlan.cfg kernel config fragment Used for disabling built in wlan into kernel, instead use backport BugzID: 67825 Signed-off-by: Ramon Moesching --- recipes-kernel/linux/conf/wlan.cfg | 11 +++++++++++ recipes-kernel/linux/linux-netmodule_git.bb | 1 + 2 files changed, 12 insertions(+) create mode 100644 recipes-kernel/linux/conf/wlan.cfg diff --git a/recipes-kernel/linux/conf/wlan.cfg b/recipes-kernel/linux/conf/wlan.cfg new file mode 100644 index 0000000..d314881 --- /dev/null +++ b/recipes-kernel/linux/conf/wlan.cfg @@ -0,0 +1,11 @@ +# CONFIG_WL12XX is not set +# CONFIG_WL18XX is not set +# CONFIG_WLCORE is not set +# CONFIG_WLCORE_SDIO is not set +# CONFIG_MAC80211 is not set +# CONFIG_LIB80211 is not set +# CONFIG_LIB80211_CRYPT_CCMP is not set +# CONFIG_LIB80211_CRYPT_TKIP is not set +# CONFIG_LIB80211_CRYPT_WEP is not set +# CONFIG_CFG80211 is not set +# CONFIG_WLAN is not set diff --git a/recipes-kernel/linux/linux-netmodule_git.bb b/recipes-kernel/linux/linux-netmodule_git.bb index 84f9662..98092e9 100644 --- a/recipes-kernel/linux/linux-netmodule_git.bb +++ b/recipes-kernel/linux/linux-netmodule_git.bb @@ -11,6 +11,7 @@ SRC_URI = "git://git.netmodule.intranet/yoctoproject/linux-netmodule.git;protoco # Config fragments FILESEXTRAPATHS_prepend := "${THISDIR}/conf:" +SRC_URI_append_netbird = " file://wlan.cfg" SRCREV ?= "${AUTOREV}" PV ?= "4.19.88-${SRCPV}"