Searched refs:outfile (Results 1 - 24 of 24) sorted by relevance

/u-boot/arch/arm/mach-socfpga/
H A Dqts-filter-a10.sh23 outfile="$2"
121 ) > "${outfile}"
134 outfile="$2"
141 process_a10_hps_config "${hps_xml}" "${outfile}"
/u-boot/tools/binman/btool/
H A Difwitool.py127 def extract(self, ifwi_file, subpart, entry_name, outfile):
143 '-f', outfile,
/u-boot/tools/binman/etype/
H A Defi_empty_capsule.py73 outfile = self._filename if self._filename else 'capsule.%s' % uniq
74 capsule_fname = tools.get_output_filename(outfile)
H A Defi_capsule.py134 outfile = self._filename if self._filename else 'capsule.%s' % uniq
135 capsule_fname = tools.get_output_filename(outfile)
H A Dmkimage.py186 outfile = self._filename if self._filename else 'mkimage-out.%s' % uniq
187 output_fname = tools.get_output_filename(outfile)
/u-boot/tools/
H A Dmicrocode-tool.py174 def CreateFile(date, license_text, mcodes, outfile):
181 outfile: Filename to write to ('-' for stdout)
231 if outfile == '-':
234 if not outfile:
238 outfile = os.path.join(MICROCODE_DIR, mcode.name + '.dtsi')
240 ', '.join([mcode.name for mcode in mcodes]), outfile), file=sys.stderr)
241 with open(outfile, 'w') as fd:
256 parser.add_option('-o', '--outfile', type='string', action='store',
311 CreateFile(date, license_text, mcode_list, options.outfile)
H A Dmicrocode-tool174 def CreateFile(date, license_text, mcodes, outfile):
181 outfile: Filename to write to ('-' for stdout)
231 if outfile == '-':
234 if not outfile:
238 outfile = os.path.join(MICROCODE_DIR, mcode.name + '.dtsi')
240 ', '.join([mcode.name for mcode in mcodes]), outfile), file=sys.stderr)
241 with open(outfile, 'w') as fd:
256 parser.add_option('-o', '--outfile', type='string', action='store',
311 CreateFile(date, license_text, mcode_list, options.outfile)
H A Ddumpimage.c81 params.outfile = optarg;
141 if (!params.lflag && !params.outfile) {
209 " %s [-T type] [-p position] [-o outfile] image\n"
212 " -o ==> extract component to file 'outfile'\n",
H A Dexpo.py99 tools.write_file(args.outfile, edtb)
121 parser.add_argument('-o', '--outfile', type=str, required=True,
H A Dsfspl.c111 fd = open(params->outfile, O_WRONLY | O_CREAT | O_TRUNC, 0644);
H A Dimagetool.h78 const char *outfile; /* Output filename */ member in struct:image_tool_params
147 * -o <component-outfile> <image>). Thus the code to extract a file
H A Ddefault_image.c195 return imagetool_save_subimage(params->outfile, file_data, file_len);
H A Difdtool.c765 printf("usage: %s [-vhdix?] <filename> [<outfile>]\n", name);
827 char *outfile = NULL; local
1005 outfile = argv[optind + 1];
1010 bios_fd = open(filename, outfile ? O_RDONLY : O_RDWR);
1091 if (outfile) {
1092 ret = write_image(outfile, image, size);
H A Dzynqmpimage.c333 return !(params->lflag || params->dflag || params->outfile);
494 return zynqmpimage_partition_extract(ptr, ph, params->outfile);
H A Defivar.py316 with open(args.outfile, 'wb') as f:
356 signp.add_argument('--outfile', '-o', required=True, help='output filename of signed EFI payload')
H A Dkwbimage.c2308 f = fopen(params->outfile, "w");
2310 fprintf(stderr, "Can't open \"%s\": %s\n", params->outfile, strerror(errno));
2576 return imagetool_save_subimage(params->outfile, image, size);
H A Dfit_image.c941 params->outfile);
/u-boot/tools/u_boot_pylib/
H A Dcommand.py43 def run_pipe(pipe_list, infile=None, outfile=None,
56 outfile: File to store stdout
89 elif outfile:
90 kwargs['stdout'] = open(outfile, 'wb')
/u-boot/tools/dtoc/
H A Ddtb_platdata.py278 def out_header(self, outfile):
282 outfile: OutputFile describing the file being generated
291 ''' % outfile.hdr_comment)
1214 outfile = output_files.get(cmd)
1215 if not outfile:
1218 plat.setup_output(outfile.ftype,
1219 outfile.fname if output_dirs else output)
1220 plat.out_header(outfile)
1221 outfile.method(plat)
/u-boot/tools/binman/
H A Delf.py503 def UpdateFile(infile, outfile, start_sym, end_sym, insert):
505 (outfile, len(insert), len(insert), start_sym, end_sym))
521 tools.write_file(outfile, newdata)
H A Dfip_util.py612 '-o', '--outfile', type=str, default='fip_util.py.out',
622 parse_atf_source(args.src, args.outfile, oldfile)
H A Dftest.py458 def _SetupDtb(self, fname, outfile='u-boot.dtb'):
466 outfile: Output filename for compiled device-tree binary
475 TestFunctional._MakeInputFile(outfile, data)
552 outfile = os.path.join(self._indir, dtb_fname)
4973 outfile = os.path.join(self._indir, 'u-boot.out')
4978 update_fdt_in_elf=','.join([infile,outfile,begin_sym,end_sym]))
4985 data = tools.read_file(outfile)
5026 outfile = ''
5032 update_fdt_in_elf=','.join([infile,outfile,begin_sym,end_sym]))
5041 outfile
[all...]
/u-boot/tools/buildman/
H A Dfunc_test.py1012 outfile = os.path.join(self._output_dir, 'test-boards.cfg')
1013 if os.path.exists(outfile):
1014 os.remove(outfile)
1016 result = self._RunControl('-R', outfile, brds=None,
1018 self.assertTrue(os.path.exists(outfile))
H A Dbuilderthread.py536 outfile = os.path.join(build_dir, 'log')
537 with open(outfile, 'w', encoding='utf-8') as outf:

Completed in 368 milliseconds