summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-04-05 16:55:52 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-05 17:36:34 +0100
commit9e9ea0a40afbea66e35deb6e28dfeb726a3e62c0 (patch)
treea936d7607dc7a9e1269acda769a8d9190be649cb /meta/lib
parent1872ee316b77926d2b9ede27f9d428a3b2a8b3fe (diff)
downloadast2050-yocto-poky-9e9ea0a40afbea66e35deb6e28dfeb726a3e62c0.zip
ast2050-yocto-poky-9e9ea0a40afbea66e35deb6e28dfeb726a3e62c0.tar.gz
lib/oe/classextend.py: avoid extending any kernel package
For multilib and other uses of classextend, we don't want any dependencies on kernel packages to be extended since there should only be one kernel variant. Fixes [YOCTO #2918] (where kernel-dev was being extended.) (From OE-Core rev: b684c0f0d5d93f5147dee79951647eb3ddf4c840) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oe/classextend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/classextend.py b/meta/lib/oe/classextend.py
index c37a896..e2ae7e9 100644
--- a/meta/lib/oe/classextend.py
+++ b/meta/lib/oe/classextend.py
@@ -5,7 +5,7 @@ class ClassExtender(object):
self.pkgs_mapping = []
def extend_name(self, name):
- if name.startswith("kernel-module") or name == "virtual/kernel":
+ if name.startswith("kernel-") or name == "virtual/kernel":
return name
if name.startswith("rtld"):
return name
OpenPOWER on IntegriCloud