diff options
author | seokj <manettus@icloud.com> | 2017-01-20 16:54:34 +0000 |
---|---|---|
committer | seokj <manettus@icloud.com> | 2017-01-20 16:54:34 +0000 |
commit | c1841617a288468b59a021b40d855c42ee39d22f (patch) | |
tree | c769f075c119afc7de5b90e0d9c58deafa0f5505 /projects/flashrom-cros | |
parent | 21d33559d4cdfa7edb542a461bb63c11adb0bff2 (diff) | |
download | librebootfr-c1841617a288468b59a021b40d855c42ee39d22f.tar.gz librebootfr-c1841617a288468b59a021b40d855c42ee39d22f.zip |
include sys/io.h header for arm hosts too. endian.h has been accepted as
posix
Diffstat (limited to 'projects/flashrom-cros')
-rw-r--r-- | projects/flashrom-cros/patches/flashrom-arm-20170120-f5c27c4.diff | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/projects/flashrom-cros/patches/flashrom-arm-20170120-f5c27c4.diff b/projects/flashrom-cros/patches/flashrom-arm-20170120-f5c27c4.diff new file mode 100644 index 00000000..013efa17 --- /dev/null +++ b/projects/flashrom-cros/patches/flashrom-arm-20170120-f5c27c4.diff @@ -0,0 +1,33 @@ +diff --git a/hwaccess.h b/hwaccess.h +index 0299ecb..a6732c2 100644 +--- a/hwaccess.h ++++ b/hwaccess.h +@@ -24,11 +24,9 @@ + #ifndef __HWACCESS_H__ + #define __HWACCESS_H__ 1 + +-#if defined (__i386__) || defined (__x86_64__) +-#if defined(__GLIBC__) ++#if defined (__i386__) || defined (__x86_64__) || defined(__arm__) + #include <sys/io.h> + #endif +-#endif + + #if NEED_PCI == 1 + /* +@@ -72,7 +70,6 @@ + + #if !defined (__FLASHROM_BIG_ENDIAN__) && !defined (__FLASHROM_LITTLE_ENDIAN__) + /* Nonstandard libc-specific macros for determining endianness. */ +-#if defined(__GLIBC__) + #include <endian.h> + #if BYTE_ORDER == LITTLE_ENDIAN + #define __FLASHROM_LITTLE_ENDIAN__ 1 +@@ -80,7 +77,6 @@ + #define __FLASHROM_BIG_ENDIAN__ 1 + #endif + #endif +-#endif + + #if !defined (__FLASHROM_BIG_ENDIAN__) && !defined (__FLASHROM_LITTLE_ENDIAN__) + #error Unable to determine endianness. Please add support for your arch or libc. |