added my Recipes
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
From 2182c423c6cd235c052e6c420203f24ec9bcd6ab Mon Sep 17 00:00:00 2001
|
||||
From: Lu Chong <Chong.Lu@windriver.com>
|
||||
Date: Wed, 30 Oct 2013 15:27:00 +0800
|
||||
Subject: [PATCH] fuse: fix the return value of "--help" option
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Lu Chong <Chong.Lu@windriver.com>
|
||||
---
|
||||
util/fusermount.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/util/fusermount.c b/util/fusermount.c
|
||||
index b2e87d9..70d7c75 100644
|
||||
--- a/util/fusermount.c
|
||||
+++ b/util/fusermount.c
|
||||
@@ -1168,7 +1168,7 @@ static void usage(void)
|
||||
" -q quiet\n"
|
||||
" -z lazy unmount\n",
|
||||
progname);
|
||||
- exit(1);
|
||||
+ exit(0);
|
||||
}
|
||||
|
||||
static void show_version(void)
|
||||
--
|
||||
1.7.9.5
|
||||
|
||||
@@ -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 <riku.voipio@linaro.org>
|
||||
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
||||
---
|
||||
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 <sys/types.h>
|
||||
-#define __u64 uint64_t
|
||||
-#define __s64 int64_t
|
||||
-#define __u32 uint32_t
|
||||
-#define __s32 int32_t
|
||||
-#define __u16 uint16_t
|
||||
+#include <linux/types.h>
|
||||
|
||||
/*
|
||||
* Version negotiation:
|
||||
--
|
||||
1.8.1.2
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
fuse
|
||||
@@ -0,0 +1,51 @@
|
||||
From: Sam James <sam@gentoo.org>
|
||||
Date: Sat, 24 Jul 2021 22:02:45 +0100
|
||||
Subject: [PATCH] util/ulockmgr_server.c: conditionally define closefrom (fix
|
||||
glibc-2.34+)
|
||||
|
||||
closefrom(3) has joined us in glibc-land from *BSD and Solaris. Since
|
||||
it's available in glibc 2.34+, we want to detect it and only define our
|
||||
fallback if the libc doesn't provide it.
|
||||
|
||||
Bug: https://bugs.gentoo.org/803923
|
||||
Signed-off-by: Sam James <sam@gentoo.org>
|
||||
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -55,6 +55,7 @@ fi
|
||||
|
||||
AC_CHECK_FUNCS([fork setxattr fdatasync splice vmsplice utimensat])
|
||||
AC_CHECK_FUNCS([posix_fallocate])
|
||||
+AC_CHECK_FUNCS([closefrom])
|
||||
AC_CHECK_MEMBERS([struct stat.st_atim])
|
||||
AC_CHECK_MEMBERS([struct stat.st_atimespec])
|
||||
|
||||
--- a/util/ulockmgr_server.c
|
||||
+++ b/util/ulockmgr_server.c
|
||||
@@ -22,6 +22,10 @@
|
||||
#include <sys/socket.h>
|
||||
#include <sys/wait.h>
|
||||
|
||||
+#ifdef HAVE_CONFIG_H
|
||||
+ #include "config.h"
|
||||
+#endif
|
||||
+
|
||||
struct message {
|
||||
unsigned intr : 1;
|
||||
unsigned nofd : 1;
|
||||
@@ -124,6 +128,7 @@ static int receive_message(int sock, voi
|
||||
return res;
|
||||
}
|
||||
|
||||
+#if !defined(HAVE_CLOSEFROM)
|
||||
static int closefrom(int minfd)
|
||||
{
|
||||
DIR *dir = opendir("/proc/self/fd");
|
||||
@@ -141,6 +146,7 @@ static int closefrom(int minfd)
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
+#endif
|
||||
|
||||
static void send_reply(int cfd, struct message *msg)
|
||||
{
|
||||
@@ -0,0 +1,92 @@
|
||||
fuse: Fix linking issues with gold linker
|
||||
|
||||
fuse has problems when linking with gold since it uses version
|
||||
scripts in a way thats so perticular to bfd ld
|
||||
|
||||
/home/kraj/work/angstrom/build/tmp-angstrom_2010_x-eglibc/sysroots/x86_64-linux/usr/libexec/armv5te-angstrom-linux-gnueabi/gcc/arm-angstro
|
||||
error: symbol __fuse_exited has undefined version
|
||||
| collect2: ld returned 1 exit status
|
||||
| make[1]: *** [libfuse.la] Error 1
|
||||
| make[1]: *** Waiting for unfinished jobs....
|
||||
|
||||
For more details
|
||||
|
||||
http://blog.flameeyes.eu/2011/06/01/gold-readiness-obstacle-2-base-versioning
|
||||
http://sources.redhat.com/bugzilla/show_bug.cgi?id=10861
|
||||
http://comments.gmane.org/gmane.comp.file-systems.fuse.devel/9524
|
||||
http://www.airs.com/blog/archives/300
|
||||
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
|
||||
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
||||
---
|
||||
lib/fuse.c | 10 +++++-----
|
||||
lib/fuse_mt.c | 2 +-
|
||||
lib/fuse_versionscript | 3 +++
|
||||
lib/helper.c | 6 +++---
|
||||
4 files changed, 12 insertions(+), 9 deletions(-)
|
||||
|
||||
diff --git a/lib/fuse.c b/lib/fuse.c
|
||||
index 067d0dc..6d27711 100644
|
||||
--- a/lib/fuse.c
|
||||
+++ b/lib/fuse.c
|
||||
@@ -4873,11 +4873,11 @@ struct fuse *fuse_new_compat1(int fd, int flags,
|
||||
11);
|
||||
}
|
||||
|
||||
-FUSE_SYMVER(".symver fuse_exited,__fuse_exited@");
|
||||
-FUSE_SYMVER(".symver fuse_process_cmd,__fuse_process_cmd@");
|
||||
-FUSE_SYMVER(".symver fuse_read_cmd,__fuse_read_cmd@");
|
||||
-FUSE_SYMVER(".symver fuse_set_getcontext_func,__fuse_set_getcontext_func@");
|
||||
-FUSE_SYMVER(".symver fuse_new_compat2,fuse_new@");
|
||||
+FUSE_SYMVER(".symver fuse_exited,__fuse_exited@FUSE_UNVERSIONED");
|
||||
+FUSE_SYMVER(".symver fuse_process_cmd,__fuse_process_cmd@FUSE_UNVERSIONED");
|
||||
+FUSE_SYMVER(".symver fuse_read_cmd,__fuse_read_cmd@FUSE_UNVERSIONED");
|
||||
+FUSE_SYMVER(".symver fuse_set_getcontext_func,__fuse_set_getcontext_func@FUSE_UNVERSIONED");
|
||||
+FUSE_SYMVER(".symver fuse_new_compat2,fuse_new@FUSE_UNVERSIONED");
|
||||
FUSE_SYMVER(".symver fuse_new_compat22,fuse_new@FUSE_2.2");
|
||||
|
||||
#endif /* __FreeBSD__ || __NetBSD__ */
|
||||
diff --git a/lib/fuse_mt.c b/lib/fuse_mt.c
|
||||
index f6dbe71..fd5ac23 100644
|
||||
--- a/lib/fuse_mt.c
|
||||
+++ b/lib/fuse_mt.c
|
||||
@@ -119,4 +119,4 @@ int fuse_loop_mt(struct fuse *f)
|
||||
return res;
|
||||
}
|
||||
|
||||
-FUSE_SYMVER(".symver fuse_loop_mt_proc,__fuse_loop_mt@");
|
||||
+FUSE_SYMVER(".symver fuse_loop_mt_proc,__fuse_loop_mt@FUSE_UNVERSIONED");
|
||||
diff --git a/lib/fuse_versionscript b/lib/fuse_versionscript
|
||||
index 8d91887..de16ab2 100644
|
||||
--- a/lib/fuse_versionscript
|
||||
+++ b/lib/fuse_versionscript
|
||||
@@ -1,3 +1,6 @@
|
||||
+FUSE_UNVERSIONED {
|
||||
+};
|
||||
+
|
||||
FUSE_2.2 {
|
||||
global:
|
||||
fuse_destroy;
|
||||
diff --git a/lib/helper.c b/lib/helper.c
|
||||
index b644012..c5349bf 100644
|
||||
--- a/lib/helper.c
|
||||
+++ b/lib/helper.c
|
||||
@@ -436,10 +436,10 @@ int fuse_mount_compat1(const char *mountpoint, const char *args[])
|
||||
return fuse_mount_compat22(mountpoint, NULL);
|
||||
}
|
||||
|
||||
-FUSE_SYMVER(".symver fuse_setup_compat2,__fuse_setup@");
|
||||
+FUSE_SYMVER(".symver fuse_setup_compat2,__fuse_setup@FUSE_UNVERSIONED");
|
||||
FUSE_SYMVER(".symver fuse_setup_compat22,fuse_setup@FUSE_2.2");
|
||||
-FUSE_SYMVER(".symver fuse_teardown,__fuse_teardown@");
|
||||
-FUSE_SYMVER(".symver fuse_main_compat2,fuse_main@");
|
||||
+FUSE_SYMVER(".symver fuse_teardown,__fuse_teardown@FUSE_UNVERSIONED");
|
||||
+FUSE_SYMVER(".symver fuse_main_compat2,fuse_main@FUSE_UNVERSIONED");
|
||||
FUSE_SYMVER(".symver fuse_main_real_compat22,fuse_main_real@FUSE_2.2");
|
||||
|
||||
#endif /* __FreeBSD__ || __NetBSD__ */
|
||||
--
|
||||
1.8.1.2
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
pytest -o log_cli=true -o log_cli_level=INFO | sed -e 's/\[...%\]//g'| sed -e 's/PASSED/PASS/g'| sed -e 's/FAILED/FAIL/g'|sed -e 's/SKIPPED/SKIP/g'| awk '{if ($NF=="PASS" || $NF=="FAIL" || $NF=="SKIP" || $NF=="XFAIL" || $NF=="XPASS"){printf "%s: %s\n", $NF, $0}else{print}}'| awk '{if ($NF=="PASS" || $NF=="FAIL" || $NF=="SKIP" || $NF=="XFAIL" || $NF=="XPASS") {$NF="";print $0}else{print}}'
|
||||
@@ -0,0 +1,80 @@
|
||||
SUMMARY = "Implementation of a fully functional filesystem in a userspace program"
|
||||
DESCRIPTION = "FUSE (Filesystem in Userspace) is a simple interface for userspace \
|
||||
programs to export a virtual filesystem to the Linux kernel. FUSE \
|
||||
also aims to provide a secure method for non privileged users to \
|
||||
create and mount their own filesystem implementations. \
|
||||
"
|
||||
HOMEPAGE = "https://github.com/libfuse/libfuse"
|
||||
SECTION = "libs"
|
||||
LICENSE = "GPL-2.0-only & LGPL-2.0-only"
|
||||
LIC_FILES_CHKSUM = "file://GPL2.txt;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
||||
file://LGPL2.txt;md5=4fbd65380cdd255951079008b364516c \
|
||||
file://LICENSE;md5=a55c12a2d7d742ecb41ca9ae0a6ddc66"
|
||||
|
||||
SRC_URI = "https://github.com/libfuse/libfuse/releases/download/fuse-${PV}/fuse-${PV}.tar.xz \
|
||||
"
|
||||
SRC_URI[sha256sum] = "33b8a92d6f7a88e6a889f0009206933482f48f3eb85d88cf09ef551313ac7373"
|
||||
|
||||
S = "${WORKDIR}/fuse-${PV}"
|
||||
|
||||
UPSTREAM_CHECK_URI = "https://github.com/libfuse/libfuse/releases"
|
||||
UPSTREAM_CHECK_REGEX = "fuse\-(?P<pver>3(\.\d+)+).tar.xz"
|
||||
|
||||
CVE_PRODUCT = "fuse_project:fuse"
|
||||
|
||||
inherit meson pkgconfig ptest
|
||||
|
||||
SRC_URI += " \
|
||||
file://run-ptest \
|
||||
"
|
||||
|
||||
RDEPENDS:${PN}-ptest += " \
|
||||
${PYTHON_PN}-pytest \
|
||||
bash \
|
||||
"
|
||||
|
||||
do_install_ptest() {
|
||||
install -d ${D}${PTEST_PATH}/test
|
||||
install -d ${D}${PTEST_PATH}/example
|
||||
install -d ${D}${PTEST_PATH}/util
|
||||
cp -rf ${S}/test/* ${D}${PTEST_PATH}/test/
|
||||
|
||||
example_excutables=`find ${B}/example -type f -executable`
|
||||
util_excutables=`find ${B}/util -type f -executable`
|
||||
test_excutables=`find ${B}/test -type f -executable`
|
||||
|
||||
for e in $example_excutables
|
||||
do
|
||||
cp -rf $e ${D}${PTEST_PATH}/example/
|
||||
done
|
||||
|
||||
for e in $util_excutables
|
||||
do
|
||||
cp -rf $e ${D}${PTEST_PATH}/util/
|
||||
done
|
||||
|
||||
for e in $test_excutables
|
||||
do
|
||||
cp -rf $e ${D}${PTEST_PATH}/test
|
||||
done
|
||||
}
|
||||
|
||||
DEPENDS = "udev"
|
||||
|
||||
PACKAGES =+ "fuse3-utils"
|
||||
|
||||
RPROVIDES:${PN}-dbg += "fuse3-utils-dbg"
|
||||
|
||||
RRECOMMENDS:${PN}:class-target = "kernel-module-fuse fuse3-utils"
|
||||
|
||||
FILES:${PN} += "${libdir}/libfuse3.so.*"
|
||||
FILES:${PN}-dev += "${libdir}/libfuse3*.la"
|
||||
|
||||
# Forbid auto-renaming to libfuse3-utils
|
||||
FILES:fuse3-utils = "${bindir} ${base_sbindir}"
|
||||
DEBIAN_NOAUTONAME:fuse3-utils = "1"
|
||||
DEBIAN_NOAUTONAME:${PN}-dbg = "1"
|
||||
|
||||
do_install:append() {
|
||||
rm -rf ${D}${base_prefix}/dev
|
||||
}
|
||||
@@ -0,0 +1,81 @@
|
||||
SUMMARY = "Implementation of a fully functional filesystem in a userspace program"
|
||||
DESCRIPTION = "FUSE (Filesystem in Userspace) is a simple interface for userspace \
|
||||
programs to export a virtual filesystem to the Linux kernel. FUSE \
|
||||
also aims to provide a secure method for non privileged users to \
|
||||
create and mount their own filesystem implementations. \
|
||||
"
|
||||
HOMEPAGE = "https://github.com/libfuse/libfuse"
|
||||
SECTION = "libs"
|
||||
LICENSE = "GPL-2.0-only & LGPL-2.0-only"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
||||
file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c"
|
||||
|
||||
SRC_URI = "https://github.com/libfuse/libfuse/releases/download/${BP}/${BP}.tar.gz \
|
||||
file://gold-unversioned-symbol.patch \
|
||||
file://aarch64.patch \
|
||||
file://0001-fuse-fix-the-return-value-of-help-option.patch \
|
||||
file://fuse2-0007-util-ulockmgr_server.c-conditionally-define-closefro.patch \
|
||||
file://fuse.conf \
|
||||
"
|
||||
SRC_URI[md5sum] = "8000410aadc9231fd48495f7642f3312"
|
||||
SRC_URI[sha256sum] = "d0e69d5d608cc22ff4843791ad097f554dd32540ddc9bed7638cc6fea7c1b4b5"
|
||||
|
||||
UPSTREAM_CHECK_URI = "https://github.com/libfuse/libfuse/releases"
|
||||
UPSTREAM_CHECK_REGEX = "fuse\-(?P<pver>2(\.\d+)+).tar.gz"
|
||||
|
||||
CVE_PRODUCT = "fuse_project:fuse"
|
||||
|
||||
inherit autotools pkgconfig update-rc.d systemd
|
||||
|
||||
INITSCRIPT_NAME = "fuse"
|
||||
INITSCRIPT_PARAMS = "start 3 S . stop 20 0 6 ."
|
||||
|
||||
SYSTEMD_SERVICE:${PN} = ""
|
||||
|
||||
DEPENDS = "gettext-native"
|
||||
|
||||
PACKAGES =+ "fuse-utils libulockmgr libulockmgr-dev"
|
||||
|
||||
RPROVIDES:${PN}-dbg += "fuse-utils-dbg libulockmgr-dbg"
|
||||
|
||||
RRECOMMENDS:${PN}:class-target = "kernel-module-fuse libulockmgr fuse-utils"
|
||||
|
||||
FILES:${PN} += "${libdir}/libfuse.so.*"
|
||||
FILES:${PN}-dev += "${libdir}/libfuse*.la"
|
||||
|
||||
FILES:libulockmgr = "${libdir}/libulockmgr.so.*"
|
||||
FILES:libulockmgr-dev += "${libdir}/libulock*.la"
|
||||
|
||||
# Forbid auto-renaming to libfuse-utils
|
||||
FILES:fuse-utils = "${bindir} ${base_sbindir}"
|
||||
DEBIAN_NOAUTONAME:fuse-utils = "1"
|
||||
DEBIAN_NOAUTONAME:${PN}-dbg = "1"
|
||||
|
||||
do_configure:prepend() {
|
||||
# Make this explicit so overriding base_sbindir propagates properly.
|
||||
export MOUNT_FUSE_PATH="${base_sbindir}"
|
||||
}
|
||||
|
||||
do_install:append() {
|
||||
rm -rf ${D}/dev
|
||||
|
||||
# systemd class remove the sysv_initddir only if systemd_system_unitdir
|
||||
# contains anything, but it's not needed if sysvinit is not in DISTRO_FEATURES
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'false', 'true', d)}; then
|
||||
rm -rf ${D}${sysconfdir}/init.d/
|
||||
fi
|
||||
|
||||
# Install systemd related configuration file
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
|
||||
install -d ${D}${sysconfdir}/modules-load.d
|
||||
install -m 0644 ${WORKDIR}/fuse.conf ${D}${sysconfdir}/modules-load.d
|
||||
fi
|
||||
}
|
||||
|
||||
do_install:append:class-nativesdk() {
|
||||
install -d ${D}${sysconfdir}
|
||||
mv ${D}/etc/* ${D}${sysconfdir}/
|
||||
rmdir ${D}/etc
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
Reference in New Issue
Block a user