Searched refs:bios_fd (Results 1 – 1 of 1) sorted by relevance
| /OK3568_Linux_fs/u-boot/tools/ |
| H A D | ifdtool.c | 832 int bios_fd; in main() local 1009 bios_fd = open(filename, O_WRONLY | O_CREAT, 0666); in main() 1011 bios_fd = open(filename, outfile ? O_RDONLY : O_RDWR); in main() 1013 if (bios_fd == -1) { in main() 1019 if (fstat(bios_fd, &buf) == -1) { in main() 1038 if (!create && read(bios_fd, image, size) != size) { in main() 1095 if (lseek(bios_fd, 0, SEEK_SET)) { in main() 1099 if (write(bios_fd, image, size) != size) { in main() 1107 close(bios_fd); in main()
|