[coreboot-gerrit] New patch to review for coreboot: e9cf855 ifdtool: Add O_BINARY to open flags for Windows compatibility

Scott Duplichan (scott@notabs.org) gerrit at coreboot.org
Sat Dec 13 04:04:12 CET 2014


Scott Duplichan (scott at notabs.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/7789

-gerrit

commit e9cf855410f6d5fcf93eb0bd10530aa9d0414a90
Author: Scott Duplichan <scott at notabs.org>
Date:   Fri Dec 12 21:03:06 2014 -0600

    ifdtool: Add O_BINARY to open flags for Windows compatibility
    
    Windows requires O_BINARY when opening a binary file. Otherwise
    \n characters get expanded to \r\n and <ctrl>z is treated as
    end of file. For compatibility with non-Windows hosts, the patch
    defines O_BINARY if it is not already defined.
    
    Change-Id: I04cd609b644b1edbe9104153b43b9996811ffd38
    Signed-off-by: Scott Duplichan <scott at notabs.org>
---
 util/ifdtool/ifdtool.c | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/util/ifdtool/ifdtool.c b/util/ifdtool/ifdtool.c
index 625d650..9569dfa 100644
--- a/util/ifdtool/ifdtool.c
+++ b/util/ifdtool/ifdtool.c
@@ -27,6 +27,10 @@
 #include <sys/stat.h>
 #include "ifdtool.h"
 
+#ifndef O_BINARY
+#define O_BINARY 0
+#endif
+
 #define NUM_REGIONS 5
 
 static const struct region_name region_names[NUM_REGIONS] = {
@@ -538,7 +542,7 @@ static void write_regions(char *image, int size)
 		if (region.size > 0) {
 			int region_fd;
 			region_fd = open(region_filename(i),
-					 O_WRONLY | O_CREAT | O_TRUNC,
+					 O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
 					 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
 			if (region_fd < 0) {
 				perror("Error while trying to open file");
@@ -564,7 +568,7 @@ static void write_image(char *filename, char *image, int size)
 
 	// Now write out new image
 	new_fd = open(new_filename,
-			 O_WRONLY | O_CREAT | O_TRUNC,
+			 O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
 			 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
 	if (new_fd < 0) {
 		perror("Error while trying to open file");
@@ -643,7 +647,7 @@ void inject_region(char *filename, char *image, int size, int region_type,
 		exit(EXIT_FAILURE);
 	}
 
-	int region_fd = open(region_fname, O_RDONLY);
+	int region_fd = open(region_fname, O_RDONLY | O_BINARY);
 	if (region_fd == -1) {
 		perror("Could not open file");
 		exit(EXIT_FAILURE);
@@ -1060,7 +1064,7 @@ int main(int argc, char *argv[])
 	}
 
 	char *filename = argv[optind];
-	int bios_fd = open(filename, O_RDONLY);
+	int bios_fd = open(filename, O_RDONLY | O_BINARY);
 	if (bios_fd == -1) {
 		perror("Could not open file");
 		exit(EXIT_FAILURE);



More information about the coreboot-gerrit mailing list