From ef1464cc01cf9dcab52396283bf597e609caa450 Mon Sep 17 00:00:00 2001 From: wdenk Date: Wed, 8 Oct 2003 22:14:02 +0000 Subject: * Patch by Anders Larsen, 18 Sep 2003: allow mkimage to build and run on Cygwin-hosted systems MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Patch by Frank Müller, 18 Sep 2003: use bi_intfreq instead of bi_busfreq to compute fec_mii_speed in cpu/mpc8xx/fec.c * Patch by Pantelis Antoniou, 16 Sep 2003: add tool to compute fileds in the PLPRCR register for MPC86x --- tools/mkimage.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/mkimage.c') diff --git a/tools/mkimage.c b/tools/mkimage.c index 148ee8dc8..0e8354655 100644 --- a/tools/mkimage.c +++ b/tools/mkimage.c @@ -268,7 +268,7 @@ NXTARG: ; imagefile = *argv; if (lflag) { - ifd = open(imagefile, O_RDONLY); + ifd = open(imagefile, O_RDONLY|O_BINARY); } else { ifd = open(imagefile, O_RDWR|O_CREAT|O_TRUNC|O_BINARY, 0666); } @@ -502,7 +502,7 @@ copy_file (int ifd, const char *datafile, int pad) fprintf (stderr, "Adding Image %s\n", datafile); } - if ((dfd = open(datafile, O_RDONLY)) < 0) { + if ((dfd = open(datafile, O_RDONLY|O_BINARY)) < 0) { fprintf (stderr, "%s: Can't open %s: %s\n", cmdname, datafile, strerror(errno)); exit (EXIT_FAILURE); -- cgit v1.2.3