mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00
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>
This commit is contained in:
parent
e9b9b59ca1
commit
3c735b01da
|
@ -1118,7 +1118,8 @@ python do_package_qa () {
|
||||||
oe.utils.write_ld_so_conf(d)
|
oe.utils.write_ld_so_conf(d)
|
||||||
return warnchecks, errorchecks
|
return warnchecks, errorchecks
|
||||||
|
|
||||||
skip = (d.getVar('INSANE_SKIP_' + package, True) or "").split()
|
skip = set((d.getVar('INSANE_SKIP', True) or "").split() +
|
||||||
|
(d.getVar('INSANE_SKIP_' + package, True) or "").split())
|
||||||
if skip:
|
if skip:
|
||||||
bb.note("Package %s skipping QA tests: %s" % (package, str(skip)))
|
bb.note("Package %s skipping QA tests: %s" % (package, str(skip)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user