Home | History | Annotate | Download | only in futility

Lines Matching full:outfile

59 	char *outfile;
116 return WriteSomeParts(option.outfile,
236 rv = WriteSomeParts(option.outfile,
240 rv = WriteSomeParts(option.outfile,
315 rv = WriteSomeParts(option.outfile,
319 rv = WriteSomeParts(option.outfile,
358 rv = WriteSomeParts(option.outfile,
519 "Usage: " MYNAME " %s [PARAMS] INFILE [OUTFILE]\n"
523 " public key (.vbpubk); OUTFILE is a keyblock\n"
524 " raw firmware blob (FW_MAIN_A/B); OUTFILE is a VBLOCK_A/B\n"
526 " raw linux kernel; OUTFILE is a kernel partition image\n"
535 " [--outfile] OUTFILE The resulting keyblock\n"
564 " [--outfile] OUTFILE Output VBLOCK_A/B\n"
580 " in place if no OUTFILE given)\n"
595 " [--outfile] OUTFILE Output firmware image\n";
612 " [--outfile] OUTFILE Output kernel partition or vblock\n"
621 " distinct outfile)\n"
632 " in place if no OUTFILE given)\n"
641 " [--outfile] OUTFILE Output kernel partition or vblock\n"
643 " distinct OUTFILE)\n"
686 {"outfile", 1, NULL, OPT_OUTFILE},
787 option.outfile = optarg;
895 if (!option.outfile && argc - optind > 0) {
897 option.outfile = argv[optind++];
1001 if (!option.outfile) {
1007 option.outfile = infile;
1011 Debug("option.outfile=%s\n", option.outfile);
1039 state.in_filename = option.outfile;
1041 futil_copy_file_or_die(infile, option.outfile);
1042 Debug("open RW %s\n", option.outfile);
1043 ifd = open(option.outfile, O_RDWR);
1047 option.outfile, strerror(errno));