Re: [U-Boot] [PATCH] tools: Fix mingw tools build

2012-07-18 Thread Mike Frysinger
On Saturday 07 July 2012 16:05:06 Vladimir Yakovlev wrote: > --- a/tools/mkenvimage.c > +++ b/tools/mkenvimage.c > @@ -45,6 +45,13 @@ > > #define CRC_SIZE sizeof(uint32_t) > > +#ifdef __MINGW32__ > +#define FILE_PERM(S_IRUSR | S_IWUSR) > +#else > +#define FILE_PERM(S_IRUS

Re: [U-Boot] [PATCH] tools: Fix mingw tools build

2012-07-08 Thread Wolfgang Denk
Dear Vladimir Yakovlev, In message <1341691506-17106-1-git-send-email-na...@inbox.ru> you wrote: > mkenvimage does not build due to missed os_support.o and unsupported > file modes S_IRGRP S_IWGRP. > Tested with mingw 4.2.1 on ubuntu 12.04. > > Signed-off-by: Vladimir Yakovlev > --- > tools/Mak

[U-Boot] [PATCH] tools: Fix mingw tools build

2012-07-07 Thread Vladimir Yakovlev
mkenvimage does not build due to missed os_support.o and unsupported file modes S_IRGRP S_IWGRP. Tested with mingw 4.2.1 on ubuntu 12.04. Signed-off-by: Vladimir Yakovlev --- tools/Makefile |3 ++- tools/mkenvimage.c | 10 -- 2 files changed, 10 insertions(+), 3 deletions(-) d