diff options
author | Ross Burton <ross.burton@intel.com> | 2017-09-13 11:25:09 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-03-04 11:12:12 +0000 |
commit | 3c735b01da4ddcf81b426b9f032e8f8494401fae (patch) | |
tree | d2d4ac7164f50649966c400827f5b64697438c03 | |
parent | e9b9b59ca18774082aaaa8b797c556f754c843f1 (diff) | |
download | poky-3c735b01da4ddcf81b426b9f032e8f8494401fae.tar.gz |
insane: consider INSANE_SKIP without package-specifier too
this is needed for the updated linux-firmware as it needs this INSANE_SKIP support
(From OE-Core rev: 618093c6b7c919f25094f56b82610bee7c97f99f)
(From OE-Core rev: 4c1de18cb5d2bf4067246bf7242abde0f0917a3a)
Signed-off-by: Ross Burton <ross.burton@intel.com>
(cherry picked from commit 604939186cc08ab0429ebe00f3e32661847f0cf0)
Adjusted for pyro context
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Adjusted for morty contect
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/insane.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 7bbe8b63a2..9a3f00a798 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -1118,7 +1118,8 @@ python do_package_qa () { | |||
1118 | oe.utils.write_ld_so_conf(d) | 1118 | oe.utils.write_ld_so_conf(d) |
1119 | return warnchecks, errorchecks | 1119 | return warnchecks, errorchecks |
1120 | 1120 | ||
1121 | skip = (d.getVar('INSANE_SKIP_' + package, True) or "").split() | 1121 | skip = set((d.getVar('INSANE_SKIP', True) or "").split() + |
1122 | (d.getVar('INSANE_SKIP_' + package, True) or "").split()) | ||
1122 | if skip: | 1123 | if skip: |
1123 | bb.note("Package %s skipping QA tests: %s" % (package, str(skip))) | 1124 | bb.note("Package %s skipping QA tests: %s" % (package, str(skip))) |
1124 | 1125 | ||