Home
last modified time | relevance | path

Searched refs:bios_fd (Results 1 – 1 of 1) sorted by relevance

/openbmc/u-boot/tools/
H A Difdtool.c831 int bios_fd; in main() local
1008 bios_fd = open(filename, O_WRONLY | O_CREAT, 0666); in main()
1010 bios_fd = open(filename, outfile ? O_RDONLY : O_RDWR); in main()
1012 if (bios_fd == -1) { in main()
1018 if (fstat(bios_fd, &buf) == -1) { in main()
1037 if (!create && read(bios_fd, image, size) != size) { in main()
1094 if (lseek(bios_fd, 0, SEEK_SET)) { in main()
1098 if (write(bios_fd, image, size) != size) { in main()
1106 close(bios_fd); in main()