Lines Matching refs:outfile
505 outfile = d.getVar( 'CONFIG_ANALYSIS_FILE' )
513 outfile = d.getVar( 'CONFIG_AUDIT_FILE' )
516 outdir = os.path.dirname( outfile )
517 outname = os.path.basename( outfile )
518 outfile = outdir + '/'+ c + '-' + outname
520 if config and os.path.isfile(outfile):
521 os.remove(outfile)
523 with open(outfile, 'w+') as f:
526 bb.warn( "Configuration {} executed, see: {} for details".format(action,outfile ))
575 outfile = "{}/{}/cfg/mismatch.txt".format( s, kmeta )
576 if os.path.isfile(outfile):
577 os.remove(outfile)
578 with open(outfile, 'w+') as f:
581 if config_check_visibility and os.stat(outfile).st_size > 0:
582 with open (outfile, "r") as myfile:
597 outfile = "{}/{}/cfg/invalid.txt".format(s,kmeta)
598 if os.path.isfile(outfile):
599 os.remove(outfile)
600 with open(outfile, 'w+') as f:
603 if bsp_check_visibility and os.stat(outfile).st_size > 0:
604 with open (outfile, "r") as myfile:
616 outfile = "{}/{}/cfg/redefinition.txt".format(s,kmeta)
617 if os.path.isfile(outfile):
618 os.remove(outfile)
619 with open(outfile, 'w+') as f:
624 if bsp_check_visibility > 2 and os.stat(outfile).st_size > 0:
625 with open (outfile, "r") as myfile: