Searched refs:licfile (Results 1 – 4 of 4) sorted by relevance
/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | create_npm.py | 278 for licfile in licfiles: 279 f = os.path.join(srctree, licfile) 289 "%s,Unknown,X,Y,MD5" % (licfile, md5value)) 290 chksums.append("file://%s%s%s;md5=%s" % (licfile, 294 licenses.append((license, licfile, md5value))
|
H A D | create_buildsys_python.py | 849 licfile = "" 869 licfile = values.get("file", "") 910 if licfile: 912 md5value = bb.utils.md5_file(os.path.join(srctree, licfile)) 916 % (licfile, md5value) 930 handled.append(("license", [license, licfile, md5value]))
|
H A D | create.py | 982 for licfile in lic_unknown: 983 lines.append('# %s' % licfile) 1155 def crunch_license(licfile): argument 1177 with open(licfile, 'r', errors='surrogateescape') as f: 1238 for licfile in sorted(licfiles): 1239 md5value = bb.utils.md5_file(licfile) 1242 crunched_md5, lictext = crunch_license(licfile) 1248 "%s,Unknown" % (os.path.relpath(licfile, srctree), md5value)) 1250 licenses.append((license, os.path.relpath(licfile, srctree), md5value))
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | license_image.bbclass | 222 licfile = os.path.join(lic_dir, pkgarch, dep, "recipeinfo") 223 if os.path.exists(licfile): 225 if not os.path.exists(licfile): 227 with open(licfile, "r") as f:
|