Searched refs:bad_licenses (Results 1 – 4 of 4) sorted by relevance
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | license_image.bbclass | 60 bad_licenses = (d.getVar("INCOMPATIBLE_LICENSE") or "").split() 61 bad_licenses = expand_wildcard_licenses(d, bad_licenses) 68 … remaining_bad_licenses = oe.license.apply_pkg_license_exception(pkg, bad_licenses, exceptions) 73 … incompatible_licenses = incompatible_pkg_license(d, bad_licenses, pkg_dic[pkg]["LICENSE"]) 167 bad_licenses) == False: 180 lic), bad_licenses) == False or
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | license.py | 258 def apply_pkg_license_exception(pkg, bad_licenses, exceptions): argument 261 return [lic for lic in bad_licenses if pkg + ':' + lic not in exceptions]
|
/openbmc/openbmc/poky/meta/classes-global/ |
H A D | base.bbclass | 566 bad_licenses = (d.getVar('INCOMPATIBLE_LICENSE') or "").split() 577 if check_license and bad_licenses: 578 bad_licenses = expand_wildcard_licenses(d, bad_licenses) 592 … remaining_bad_licenses = oe.license.apply_pkg_license_exception(pkg, bad_licenses, exceptions) 607 incompatible_lic = incompatible_license(d, bad_licenses)
|
H A D | license.bbclass | 292 bad_licenses = (d.getVar('INCOMPATIBLE_LICENSE') or "").split() 293 bad_licenses = expand_wildcard_licenses(d, bad_licenses) 294 return truevalue if license in bad_licenses else falsevalue
|