From 45a2771953fb351879c332105c8d270c6daed0a7 Mon Sep 17 00:00:00 2001 From: Andy Walsh Date: Tue, 14 Aug 2018 14:27:47 +0200 Subject: [PATCH] uboot-ar71xx: fix musl host build On musl based distributions, u-boot 2010.03 fails to build with: u-boot-2010.03/include/u-boot/crc.h:29:50: error: unknown type name 'uint' uint32_t crc32 (uint32_t, const unsigned char *, uint); The issue was fixed in the newer u-boot-2018.03 version, this commit backports the change to the older version used by ar71xx/ath79. Signed-off-by: Andy Walsh [add commit message from PR description] Signed-off-by: Jo-Philipp Wich --- .../boot/uboot-ar71xx/patches/023-musl-compat.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 package/boot/uboot-ar71xx/patches/023-musl-compat.patch diff --git a/package/boot/uboot-ar71xx/patches/023-musl-compat.patch b/package/boot/uboot-ar71xx/patches/023-musl-compat.patch new file mode 100644 index 0000000000..1dacc993e7 --- /dev/null +++ b/package/boot/uboot-ar71xx/patches/023-musl-compat.patch @@ -0,0 +1,13 @@ +--- a/include/compiler.h 2018-08-29 ++++ b/include/compiler.h 2018-08-29 +@@ -46,6 +46,10 @@ extern int errno; + #ifdef __linux__ + # include + # include ++#ifndef __GLIBC__ ++typedef unsigned long ulong; ++typedef unsigned int uint; ++#endif + #elif defined(__MACH__) || defined(__FreeBSD__) + # include + typedef unsigned long ulong; -- 2.30.2