瀏覽代碼

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 <[email protected]>
[add commit message from PR description]
Signed-off-by: Jo-Philipp Wich <[email protected]>
Andy Walsh 7 年之前
父節點
當前提交
45a2771953
共有 1 個文件被更改,包括 13 次插入0 次删除
  1. 13 0
      package/boot/uboot-ar71xx/patches/023-musl-compat.patch

+ 13 - 0
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 <endian.h>
+ # include <byteswap.h>
++#ifndef __GLIBC__
++typedef unsigned long ulong;
++typedef unsigned int  uint;
++#endif
+ #elif defined(__MACH__) || defined(__FreeBSD__)
+ # include <machine/endian.h>
+ typedef unsigned long ulong;