initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
config BR2_PACKAGE_LIBFUSE3
|
||||
bool "libfuse3"
|
||||
depends on !BR2_STATIC_LIBS
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
The reference implementation of the Linux FUSE
|
||||
(Filesystem in Userspace) interface.
|
||||
|
||||
https://github.com/libfuse/libfuse
|
||||
|
||||
comment "libfuse3 needs a toolchain w/ threads, dynamic library"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally calculated sha256 checksums
|
||||
sha256 e73f75e58da59a0e333d337c105093c496c0fd7356ef3a5a540f560697c9c4e6 libfuse3-3.10.5.tar.gz
|
||||
sha256 b8832d9caaa075bbbd2aef24efa09f8b7ab66a832812d88c602da0c7b4397fad LICENSE
|
||||
@@ -0,0 +1,33 @@
|
||||
################################################################################
|
||||
#
|
||||
# libfuse3
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBFUSE3_VERSION = 3.10.5
|
||||
LIBFUSE3_SITE = $(call github,libfuse,libfuse,fuse-$(LIBFUSE3_VERSION))
|
||||
LIBFUSE3_LICENSE = LGPL-2.1
|
||||
LIBFUSE3_LICENSE_FILES = LICENSE
|
||||
LIBFUSE3_CPE_ID_VENDOR = libfuse_project
|
||||
LIBFUSE3_CPE_ID_PRODUCT = libfuse
|
||||
LIBFUSE3_INSTALL_STAGING = YES
|
||||
LIBFUSE3_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
||||
LIBFUSE3_CONF_OPTS = \
|
||||
-Dexamples=false \
|
||||
-Dudevrulesdir=/lib/udev/rules.d \
|
||||
-Duseroot=false \
|
||||
-Dtests=false
|
||||
|
||||
define LIBFUSE3_DEVICES
|
||||
/dev/fuse c 666 0 0 10 229 0 0 -
|
||||
endef
|
||||
|
||||
define LIBFUSE3_PERMISSIONS
|
||||
/usr/bin/fusermount3 f 4755 0 0 - - - - -
|
||||
endef
|
||||
|
||||
define LIBFUSE3_LINUX_CONFIG_FIXUPS
|
||||
$(call KCONFIG_ENABLE_OPT,CONFIG_FUSE_FS)
|
||||
endef
|
||||
|
||||
$(eval $(meson-package))
|
||||
Reference in New Issue
Block a user