123456789101112131415161718 |
- --- mtd-utils-1.5.0.orig/include/mtd/ubi-media.h 2012-05-07 09:19:39.000000000 +0200
- +++ mtd-utils-1.5.0/include/mtd/ubi-media.h 2014-03-30 15:49:26.000000000 +0200
- @@ -30,7 +30,15 @@
- #ifndef __UBI_MEDIA_H__
- #define __UBI_MEDIA_H__
-
- +#ifdef __linux__
- #include <asm/byteorder.h>
- +#else
- +#include <stdint.h>
- +typedef uint8_t __u8;
- +typedef uint16_t __be16;
- +typedef uint32_t __be32;
- +typedef uint64_t __be64;
- +#endif
-
- /* The version of UBI images supported by this implementation */
- #define UBI_VERSION 1
|