Lines Matching refs:appendfile
177 appendfile = recipe_to_append(recipefile, config)
178 if os.path.exists(appendfile):
245 bb.utils.mkdirhier(os.path.dirname(appendfile))
246 with open(appendfile, 'w') as f:
287 _add_md5(config, recipename, appendfile)
537 appendfile = recipe_to_append(recipefile, config)
561 if os.path.exists(appendfile):
562 appendbackup = os.path.join(tempdir, os.path.basename(appendfile) + '.bak')
563 shutil.copyfile(appendfile, appendbackup)
566 bb.utils.mkdirhier(os.path.dirname(appendfile))
567 logger.debug('writing append file %s' % appendfile)
568 with open(appendfile, 'a') as f:
689 shutil.copyfile(appendbackup, appendfile)
690 elif os.path.exists(appendfile):
691 os.remove(appendfile)
813 appendfile = recipe_to_append(recipefile, config, args.wildcard)
814 if os.path.exists(appendfile):
938 bb.utils.mkdirhier(os.path.dirname(appendfile))
939 with open(appendfile, 'w') as f:
987 _add_md5(config, pn, appendfile)
1547 appendfile = None
1576 appendfile, destpath = oe.recipeutils.bbappend_recipe(
1611 return True, appendfile, remove_files
1643 appendfile = None
1690 appendfile, destpath = oe.recipeutils.bbappend_recipe(
1760 return True, appendfile, remove_files
1817 appendfile = None
1844 appendfile = appendf
1850 return anyupdated, appendfile, allremoved
1952 appendfile = workspace[pn]['bbappend']
1953 if os.path.exists(appendfile):
1957 os.remove(appendfile)
2132 …updated, appendfile, removed = _update_recipe(args.recipename, workspace, rd, args.mode, appendlay…
2181 if appendfile:
2182 if os.path.exists(appendfile):
2183 comparelist.append((appendfile, outf, appendfile))
2185 comparelist.append((None, outf, appendfile))
2189 elif appendfile:
2190 recipedest = os.path.dirname(appendfile)