From acf98e7f3062921547516d87611f2ae9824808b9 Mon Sep 17 00:00:00 2001 From: wdenk Date: Tue, 16 Sep 2003 11:39:10 +0000 Subject: Make IPB clock on MGT5100/MPC5200 configurable in board config file; go back to 66 MHz for stability --- tools/mkimage.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tools/mkimage.c') diff --git a/tools/mkimage.c b/tools/mkimage.c index 9de022488..241853a01 100644 --- a/tools/mkimage.c +++ b/tools/mkimage.c @@ -1,5 +1,5 @@ /* - * (C) Copyright 2000-2002 + * (C) Copyright 2000-2003 * DENX Software Engineering * Wolfgang Denk, wd@denx.de * All rights reserved. @@ -39,6 +39,10 @@ typedef unsigned int uint32_t; #define htonl(a) SWAP_LONG(a) #endif /* __WIN32__ */ +#ifndef O_BINARY /* should be define'd on __WIN32__ */ +#define O_BINARY 0 +#endif + #include extern int errno; @@ -265,11 +269,7 @@ NXTARG: ; if (lflag) { ifd = open(imagefile, O_RDONLY); } else { -#ifdef __WIN32__ ifd = open(imagefile, O_RDWR|O_CREAT|O_TRUNC|O_BINARY, 0666); -#else - ifd = open(imagefile, O_RDWR|O_CREAT|O_TRUNC, 0666); -#endif } if (ifd < 0) { -- cgit v1.2.3