Home
last modified time | relevance | path

Searched refs:pkgdatafile (Results 1 – 5 of 5) sorted by relevance

/openbmc/openbmc/poky/scripts/
H A Doe-pkgdata-util253 def parse_pkgdatafile(pkgdatafile): argument
254 with open(pkgdatafile, 'r') as f:
277 parse_pkgdatafile(pkgdatafile)
280 if os.path.exists(pkgdatafile):
281 parse_pkgdatafile(pkgdatafile)
290 def parse_pkgdatafile(pkgdatafile): argument
294 with open(pkgdatafile, 'r') as f:
343 parse_pkgdatafile(pkgdatafile)
346 if not os.path.exists(pkgdatafile):
349 parse_pkgdatafile(pkgdatafile)
[all …]
/openbmc/openbmc/poky/scripts/contrib/
H A Dimage-manifest66 pkgdatafile = os.path.join(pkgdata_dir, 'runtime-reverse', pkg)
67 logger.debug('pkgdatafile %s' % pkgdatafile)
69 f = open(pkgdatafile, 'r')
75 logger.warning('%s is missing' % pkgdatafile)
/openbmc/openbmc/poky/scripts/lib/recipetool/
H A Dappend.py68 pkgdatafile = os.path.join(root, fn)
69 if pkglist and not os.path.exists(pkgdatafile):
71 with open(pkgdatafile, 'r') as f:
H A Dcreate_buildsys_python.py315 for pkgdatafile in glob.glob('{}/runtime/*'.format(pkgdata_dir)):
317 with open(pkgdatafile, 'r') as f:
338 packages[provided] = os.path.basename(pkgdatafile)
355 packages[provided] = os.path.basename(pkgdatafile)
H A Dcreate.py1296 pkgdatafile = os.path.join(pkgdatadir, 'runtime', pkg)
1297 if os.path.exists(pkgdatafile):
1298 with open(pkgdatafile, 'r') as f: