diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2012-04-17 18:01:44 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-17 23:16:29 +0100 |
commit | 0f8c8c844ba6e48ac5964461438230a7b8b6f7bd (patch) | |
tree | 531ca540d4d78e95bd944ea5625b185e4c5e3f02 /meta/classes/kernel-yocto.bbclass | |
parent | bb2929692ad0859c05a0f34da70b76bfe1d7bac0 (diff) | |
download | poky-0f8c8c844ba6e48ac5964461438230a7b8b6f7bd.tar.gz |
linux-yocto: .diff is a valid patch extension
In fixing an existing patch migration bug, the list of valid extensions
got out of sync from the core patch class. As a result, valid patches
were not being applied to the tree.
Updating the tools to migrate .diff files fixes the issue.
Also in this fix is the removal of .patch in the find_sccs() routine, since
it will never be returned by patch.bbclass when all non-patches are
requested, it is simply confusing.
(From OE-Core rev: 0ade3f26f40b67d7296725b1e956c46be9a86089)
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/kernel-yocto.bbclass')
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 0caf6a67f0..c995a2ef57 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -20,7 +20,7 @@ def find_sccs(d): | |||
20 | sources_list=[] | 20 | sources_list=[] |
21 | for s in sources: | 21 | for s in sources: |
22 | base, ext = os.path.splitext(os.path.basename(s)) | 22 | base, ext = os.path.splitext(os.path.basename(s)) |
23 | if ext and ext in ('.scc' '.cfg' '.patch'): | 23 | if ext and ext in ('.scc' '.cfg'): |
24 | sources_list.append(s) | 24 | sources_list.append(s) |
25 | elif base and base in 'defconfig': | 25 | elif base and base in 'defconfig': |
26 | sources_list.append(s) | 26 | sources_list.append(s) |