Searched refs:pkgdatafile (Results 1 – 5 of 5) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | oe-pkgdata-util | 253 def parse_pkgdatafile(pkgdatafile): argument 254 with open(pkgdatafile, 'r') as f: 262 logger.error("Unable to find PN entry in %s" % pkgdatafile) 276 pkgdatafile = os.path.join(args.pkgdata_dir, "runtime", f) 277 parse_pkgdatafile(pkgdatafile) 279 pkgdatafile = os.path.join(args.pkgdata_dir, 'runtime-reverse', pkg) 280 if os.path.exists(pkgdatafile): 281 parse_pkgdatafile(pkgdatafile) 290 def parse_pkgdatafile(pkgdatafile): argument 294 with open(pkgdatafile, 'r') as f: [all …]
|
| /OK3568_Linux_fs/yocto/poky/scripts/contrib/ |
| H A D | image-manifest | 66 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)
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/recipetool/ |
| H A D | create_buildsys_python.py | 576 for pkgdatafile in glob.glob('{}/runtime/*'.format(pkgdata_dir)): 578 with open(pkgdatafile, 'r') as f: 599 packages[provided] = os.path.basename(pkgdatafile) 616 packages[provided] = os.path.basename(pkgdatafile)
|
| H A D | append.py | 67 pkgdatafile = os.path.join(root, fn) 68 if pkglist and not os.path.exists(pkgdatafile): 70 with open(pkgdatafile, 'r') as f:
|
| H A D | create.py | 1278 pkgdatafile = os.path.join(pkgdatadir, 'runtime', pkg) 1279 if os.path.exists(pkgdatafile): 1280 with open(pkgdatafile, 'r') as f:
|