Home
last modified time | relevance | path

Searched refs:bad_licenses (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dlicense_image.bbclass54 bad_licenses = (d.getVar("INCOMPATIBLE_LICENSE") or "").split()
55 bad_licenses = expand_wildcard_licenses(d, bad_licenses)
60 … remaining_bad_licenses = oe.license.apply_pkg_license_exception(pkg, bad_licenses, exceptions)
65 … incompatible_licenses = incompatible_pkg_license(d, bad_licenses, pkg_dic[pkg]["LICENSE"])
150 bad_licenses) == False:
163 lic), bad_licenses) == False or
H A Dlicense.bbclass286 bad_licenses = (d.getVar('INCOMPATIBLE_LICENSE') or "").split()
287 bad_licenses = expand_wildcard_licenses(d, bad_licenses)
288 return truevalue if license in bad_licenses else falsevalue
H A Dbase.bbclass582 bad_licenses = (d.getVar('INCOMPATIBLE_LICENSE') or "").split()
593 if check_license and bad_licenses:
594 bad_licenses = expand_wildcard_licenses(d, bad_licenses)
608 … remaining_bad_licenses = oe.license.apply_pkg_license_exception(pkg, bad_licenses, exceptions)
623 incompatible_lic = incompatible_license(d, bad_licenses)
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Dlicense.py256 def apply_pkg_license_exception(pkg, bad_licenses, exceptions): argument
259 return [lic for lic in bad_licenses if pkg + ':' + lic not in exceptions]