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
This commit is contained in:
Alexandre Bard 2021-10-19 10:39:18 +02:00
parent 514cd7fd80
commit 405c374f05
1 changed files with 0 additions and 9 deletions

View File

@ -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