050-Add-compatibility-with-non-Linux-hosts.patch 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. From 590b23a46b7ae0f5ec5e8f57a85c0e7578c71141 Mon Sep 17 00:00:00 2001
  2. From: Hauke Mehrtens <hauke@hauke-m.de>
  3. Date: Sun, 26 Apr 2020 17:15:17 +0200
  4. Subject: [PATCH 1/2] Add compatibility with non Linux hosts
  5. This adds some changes to the u-boot tools to make it possible to build
  6. them on non Linux hosts like MacOS or FreeBSD.
  7. asm/byteorder.h, asm/posix_types.h, asm/types.h and linux/kernel.h are
  8. not available on such systems. Remove the include and add the necessary
  9. parts for these header files manually or remove the usage too.
  10. __u64 is not available on FreeBSD, remove its usage.
  11. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
  12. ---
  13. include/image.h | 2 ++
  14. include/linux/posix_types.h | 2 ++
  15. include/linux/types.h | 4 +++-
  16. 3 files changed, 7 insertions(+), 1 deletion(-)
  17. --- a/include/image.h
  18. +++ b/include/image.h
  19. @@ -16,7 +16,9 @@
  20. #define __IMAGE_H__
  21. #include "compiler.h"
  22. +#ifdef linux
  23. #include <asm/byteorder.h>
  24. +#endif
  25. #include <stdbool.h>
  26. /* Define this to avoid #ifdefs later on */
  27. --- a/include/linux/posix_types.h
  28. +++ b/include/linux/posix_types.h
  29. @@ -43,6 +43,8 @@ typedef void (*__kernel_sighandler_t)(in
  30. /* Type of a SYSV IPC key. */
  31. typedef int __kernel_key_t;
  32. +#ifdef linux
  33. #include <asm/posix_types.h>
  34. +#endif
  35. #endif /* _LINUX_POSIX_TYPES_H */
  36. --- a/include/linux/types.h
  37. +++ b/include/linux/types.h
  38. @@ -2,7 +2,9 @@
  39. #define _LINUX_TYPES_H
  40. #include <linux/posix_types.h>
  41. +#ifdef linux
  42. #include <asm/types.h>
  43. +#endif
  44. #include <stdbool.h>
  45. #ifndef __KERNEL_STRICT_NAMES
  46. @@ -142,7 +144,7 @@ typedef __u16 __bitwise __le16;
  47. typedef __u16 __bitwise __be16;
  48. typedef __u32 __bitwise __le32;
  49. typedef __u32 __bitwise __be32;
  50. -#if defined(__GNUC__)
  51. +#if defined(__GNUC__) && defined(linux)
  52. typedef __u64 __bitwise __le64;
  53. typedef __u64 __bitwise __be64;
  54. #endif