diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/multilib.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/multilib.bbclass b/meta/classes/multilib.bbclass index e7b717eee1..db39e02d42 100644 --- a/meta/classes/multilib.bbclass +++ b/meta/classes/multilib.bbclass | |||
@@ -135,7 +135,8 @@ python do_package_qa_multilib() { | |||
135 | i = i[len('virtual/'):] | 135 | i = i[len('virtual/'):] |
136 | if (not i.startswith('kernel-module')) and (not i.startswith(mlprefix)) and \ | 136 | if (not i.startswith('kernel-module')) and (not i.startswith(mlprefix)) and \ |
137 | (not 'cross-canadian' in i) and (not i.startswith("nativesdk-")) and \ | 137 | (not 'cross-canadian' in i) and (not i.startswith("nativesdk-")) and \ |
138 | (not i.startswith("rtld")) and (not i.startswith('kernel-vmlinux')): | 138 | (not i.startswith("rtld")) and (not i.startswith('kernel-vmlinux')) \ |
139 | and (not i.startswith("kernel-image")): | ||
139 | candidates.append(i) | 140 | candidates.append(i) |
140 | if len(candidates) > 0: | 141 | if len(candidates) > 0: |
141 | msg = "%s package %s - suspicious values '%s' in %s" \ | 142 | msg = "%s package %s - suspicious values '%s' in %s" \ |