summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2019-03-11 00:20:51 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-03-12 11:56:37 -0700
commit0fd09633e3c2fb4668c7700516d288f8c5356ff6 (patch)
treef096b4b53a0bcc2e875721c7c62830078aa13baf
parent8c446ac6c1bba1502ac0a710a39b90c78fff41a3 (diff)
downloadopenembedded-core-contrib-0fd09633e3c2fb4668c7700516d288f8c5356ff6.tar.gz
linux-yocto: fix SRC_URI patching with unified repos
As reported by Paul Barker, my attempt to allow the patching of kernel meta data broke other repository configurations, since the meta data patch routing was matching too broadly and the same repo would end up being patched twice. Using his suggested fix, we are up and running with both types of repos again. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/kernel-yocto.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass
index bd7a957583..ed9bcfa57c 100644
--- a/meta/classes/kernel-yocto.bbclass
+++ b/meta/classes/kernel-yocto.bbclass
@@ -15,7 +15,7 @@ def find_patches(d,subdir):
patchdir = ''
if "patchdir" in parm:
patchdir = parm["patchdir"]
- if patchdir:
+ if subdir:
if subdir == patchdir:
patch_list.append(local)
else: