summaryrefslogtreecommitdiffstats
path: root/hwaccess.c
diff options
context:
space:
mode:
authorCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2013-07-13 23:21:05 +0000
committerStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>2013-07-13 23:21:05 +0000
commitae356998b5315c82b2ac23ffb9ce3cd73cc8deda (patch)
tree5c905e082327d5714b6a09d30ae38e210d610ca9 /hwaccess.c
parent2ce27a97c246c58625afb5e15db314311e9d2a49 (diff)
downloadflashrom-ae356998b5315c82b2ac23ffb9ce3cd73cc8deda.zip
flashrom-ae356998b5315c82b2ac23ffb9ce3cd73cc8deda.tar.gz
Various cross-platform fixes
Improve compilation with libpayload (compiling flashrom.c and linking is still broken): - disable Ponyprog (which enforced serial.c compilation) - make errno available where it is needed Fix internal.c for non-x86 and enable cb parsing on ARM. Fix mingw builds by using its __USE_MINGW_ANSI_STDIO macro and gnu_printf definition for printf format style checking. See http://sourceforge.net/apps/trac/mingw-w64/wiki/gnu%20printf This requires inclusion of stdio.h in flash.h. Fix order of libraries in the Makefile: FEATURE_LIBS needs to come *after* PCILIBS in case ZLIB is needed by it. Corresponding to flashrom svn r1697. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Diffstat (limited to 'hwaccess.c')
-rw-r--r--hwaccess.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/hwaccess.c b/hwaccess.c
index 8a4a50a..5b18c32 100644
--- a/hwaccess.c
+++ b/hwaccess.c
@@ -35,14 +35,13 @@
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
+#include <errno.h>
#include <sys/types.h>
#if !defined (__DJGPP__) && !defined(__LIBPAYLOAD__)
+/* No file access needed/possible to get hardware access permissions. */
#include <unistd.h>
#include <fcntl.h>
#endif
-#if !defined (__DJGPP__)
-#include <errno.h>
-#endif
#include "flash.h"
#include "hwaccess.h"
OpenPOWER on IntegriCloud