From 342b515b2e2d554efd0822ca42f24fb2375ab04a Mon Sep 17 00:00:00 2001 From: Lukas Rusak Date: Wed, 10 Feb 2016 08:28:35 +0100 Subject: [PATCH] fuse: add aarch64 support patch --- .../patches/fuse-0001_aarch64-support.patch | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 packages/sysutils/fuse/patches/fuse-0001_aarch64-support.patch diff --git a/packages/sysutils/fuse/patches/fuse-0001_aarch64-support.patch b/packages/sysutils/fuse/patches/fuse-0001_aarch64-support.patch new file mode 100644 index 0000000000..050d1146a9 --- /dev/null +++ b/packages/sysutils/fuse/patches/fuse-0001_aarch64-support.patch @@ -0,0 +1,33 @@ +fuse: add aarch64 support + +u64/u32 is not defined in sys/types.h, include linux/types.h like +the kernel version of fuse.h does. Patch sent to upstream mailing list. + +Upstream-Status: Submitted +Signed-off-by: Riku Voipio +Signed-off-by: Hongxu Jia +--- + include/fuse_kernel.h | 7 +------ + 1 file changed, 1 insertion(+), 6 deletions(-) + +diff --git a/include/fuse_kernel.h b/include/fuse_kernel.h +index c632b58..e804278 100644 +--- a/include/fuse_kernel.h ++++ b/include/fuse_kernel.h +@@ -88,12 +88,7 @@ + #ifndef _LINUX_FUSE_H + #define _LINUX_FUSE_H + +-#include +-#define __u64 uint64_t +-#define __s64 int64_t +-#define __u32 uint32_t +-#define __s32 int32_t +-#define __u16 uint16_t ++#include + + /* + * Version negotiation: +-- +1.8.1.2 +