Searched refs:fd_outfile (Results 1 – 1 of 1) sorted by relevance
/linux-2.4.37.9/arch/mips/boot/ |
D | addinitrd.c | 43 int fd_vmlinux,fd_initrd,fd_outfile; in main() local 101 if ((fd_outfile = open (argv[3], O_RDWR|O_CREAT|O_TRUNC,0666)) < 0) in main() 103 if (write (fd_outfile, &efile, sizeof efile) != sizeof efile) in main() 105 if (write (fd_outfile, &eaout, sizeof eaout) != sizeof eaout) in main() 107 if (write (fd_outfile, esecs, sizeof esecs) != sizeof esecs) in main() 112 if(lseek(fd_outfile, SWAB(esecs[0].s_scnptr), SEEK_SET) == (off_t)-1) in main() 119 if (write (fd_outfile, buf, i) != i) in main() 123 if (write (fd_outfile, initrd_header, sizeof initrd_header) != sizeof initrd_header) in main() 126 if (write (fd_outfile, buf, i) != i) in main()
|