From 405c374f05efc48d39c009b0f7cf74281286b5d6 Mon Sep 17 00:00:00 2001 From: Alexandre Bard Date: Tue, 19 Oct 2021 10:39:18 +0200 Subject: [PATCH] linux-netmodule: Remove redundant find_cfgs function This function is already present in the cml1 bbclass which is automatically inherited by the kernel bbclass. BugzID: 75318 --- recipes-kernel/linux/linux-netmodule_git.bb | 9 --------- 1 file changed, 9 deletions(-) diff --git a/recipes-kernel/linux/linux-netmodule_git.bb b/recipes-kernel/linux/linux-netmodule_git.bb index 35b5c0c..ee2beb1 100644 --- a/recipes-kernel/linux/linux-netmodule_git.bb +++ b/recipes-kernel/linux/linux-netmodule_git.bb @@ -40,12 +40,3 @@ do_configure_append(){ ${S}/scripts/kconfig/merge_config.sh -m -O ${WORKDIR}/build ${WORKDIR}/build/.config ${WORKDIR}/*.cfg fi } - -#Apply config fragments -def find_cfgs(d): - sources=src_patches(d, True) - sources_list=[] - for s in sources: - if s.endswith('.cfg'): - sources_list.append(s) - return sources_list