aboutsummaryrefslogtreecommitdiffstats
path: root/tools/mkimage/patches/050-Add-compatibility-with-non-Linux-hosts.patch
blob: 5b87a259db59d4b4b76de3135f3a7ff9d71f3103 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
From 590b23a46b7ae0f5ec5e8f57a85c0e7578c71141 Mon Sep 17 00:00:00 2001
From: Hauke Mehrtens <hauke@hauke-m.de>
Date: Sun, 26 Apr 2020 17:15:17 +0200
Subject: [PATCH 1/2] Add compatibility with non Linux hosts

This adds some changes to the u-boot tools to make it possible to build
them on non Linux hosts like MacOS or FreeBSD.

asm/byteorder.h, asm/posix_types.h, asm/types.h and linux/kernel.h are
not available on such systems. Remove the include and add the necessary
parts for these header files manually or remove the usage too.

__u64 is not available on FreeBSD, remove its usage.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
---
 include/image.h             | 2 ++
 include/imx8image.h         | 5 +++++
 include/linux/posix_types.h | 2 ++
 include/linux/types.h       | 4 +++-
 lib/rsa/rsa-sign.c          | 2 +-
 5 files changed, 13 insertions(+), 2 deletions(-)

--- a/include/image.h
+++ b/include/image.h
@@ -16,7 +16,9 @@
 #define __IMAGE_H__
 
 #include "compiler.h"
+#ifdef linux
 #include <asm/byteorder.h>
+#endif
 #include <stdbool.h>
 
 /* Define this to avoid #ifdefs later on */
--- a/include/linux/posix_types.h
+++ b/include/linux/posix_types.h
@@ -43,6 +43,8 @@ typedef void (*__kernel_sighandler_t)(in
 /* Type of a SYSV IPC key.  */
 typedef int __kernel_key_t;
 
+#ifdef linux
 #include <asm/posix_types.h>
+#endif
 
 #endif /* _LINUX_POSIX_TYPES_H */
--- a/include/linux/types.h
+++ b/include/linux/types.h
@@ -2,7 +2,9 @@
 #define _LINUX_TYPES_H
 
 #include <linux/posix_types.h>
+#ifdef linux
 #include <asm/types.h>
+#endif
 #include <stdbool.h>
 
 #ifndef __KERNEL_STRICT_NAMES
@@ -142,7 +144,7 @@ typedef __u16 __bitwise __le16;
 typedef __u16 __bitwise __be16;
 typedef __u32 __bitwise __le32;
 typedef __u32 __bitwise __be32;
-#if defined(__GNUC__)
+#if defined(__GNUC__) && defined(linux)
 typedef __u64 __bitwise __le64;
 typedef __u64 __bitwise __be64;
 #endif