diff options
author | Georgi Valkov <gvalkov@abv.bg> | 2021-02-20 15:49:51 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2021-03-01 00:34:23 +0100 |
commit | 3cc57ba4627c9c7555f8ad86e4f78d86d8f9ddf0 (patch) | |
tree | cce68d3e1b60272fd8f0cd15bea036b41b89e2b1 /package/boot/uboot-sunxi/patches | |
parent | 92409dda8326601dd9e73502404913580834bf4e (diff) | |
download | upstream-3cc57ba4627c9c7555f8ad86e4f78d86d8f9ddf0.tar.gz upstream-3cc57ba4627c9c7555f8ad86e4f78d86d8f9ddf0.tar.bz2 upstream-3cc57ba4627c9c7555f8ad86e4f78d86d8f9ddf0.zip |
uboot-sunxi: add missing type __u64
Non Linux systems e.g. macOS lack the __u64 type and produce build errors:
In file included from tools/aisimage.c:9:
In file included from include/image.h:19:
In file included from ./arch/arm/include/asm/byteorder.h:29:
In file included from include/linux/byteorder/little_endian.h:13:
include/linux/types.h:146:9: error: unknown type name '__u64'; did you mean '__s64'?
typedef __u64 __bitwise __le64;
Resolved by declaring __u64 in include/linux/types.h
Build tested on macOS and Ubuntu.
Signed-off-by: Georgi Valkov <gvalkov@abv.bg>
Diffstat (limited to 'package/boot/uboot-sunxi/patches')
-rw-r--r-- | package/boot/uboot-sunxi/patches/260-add-missing-type-u64.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/package/boot/uboot-sunxi/patches/260-add-missing-type-u64.patch b/package/boot/uboot-sunxi/patches/260-add-missing-type-u64.patch new file mode 100644 index 0000000000..a6204c7b69 --- /dev/null +++ b/package/boot/uboot-sunxi/patches/260-add-missing-type-u64.patch @@ -0,0 +1,10 @@ +--- a/include/linux/types.h ++++ b/include/linux/types.h +@@ -1,6 +1,7 @@ + #ifndef _LINUX_TYPES_H + #define _LINUX_TYPES_H + ++typedef unsigned long long __u64; + #include <linux/posix_types.h> + #include <asm/types.h> + #include <stdbool.h> |