From 545167252d564ed13a669f62a29a5a2640c55a43 Mon Sep 17 00:00:00 2001 From: Zheng Bao Date: Mon, 22 Oct 2012 16:41:42 +0800 Subject: build: build coreboot on mingw. regex, pdcurses, wsock(for itohl) are seperated libraries. mmap and unmmap are ported from git. Issues: 1. The length of command line is limited. That makes the Thather can not be built because too many obj.o need to be built. Change-Id: I1d60ec5c7720c1e712e246c4cd12e4b718fed05f Signed-off-by: Zheng Bao Signed-off-by: Zheng Bao Reviewed-on: http://review.coreboot.org/1604 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- util/nvramtool/cli/nvramtool.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'util/nvramtool/cli') diff --git a/util/nvramtool/cli/nvramtool.c b/util/nvramtool/cli/nvramtool.c index f283463f94..7716bd8710 100644 --- a/util/nvramtool/cli/nvramtool.c +++ b/util/nvramtool/cli/nvramtool.c @@ -31,7 +31,9 @@ #include #include #include +#ifndef __MINGW32__ #include +#endif #include "common.h" #include "opts.h" #include "lbtable.h" @@ -164,7 +166,9 @@ int main(int argc, char *argv[]) nvramtool_op_modifiers[NVRAMTOOL_MOD_USE_CMOS_FILE].param); exit(1); } +#ifndef __MINGW32__ fsync(fd); +#endif } cmos_default = mmap(NULL, 128, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); -- cgit v1.2.3