[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,17 @@
config BR2_PACKAGE_FUSE_OVERLAYFS
bool "fuse-overlayfs"
depends on BR2_USE_MMU # libfuse3
depends on !BR2_STATIC_LIBS # libfuse3
depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse3
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15
select BR2_PACKAGE_LIBFUSE3
help
FUSE-overlayfs is an implementation of overlay+shiftfs in
FUSE, intended to be used for rootless containers.
http://github.com/containers/fuse-overlayfs
comment "fuse-overlayfs needs a toolchain w/ threads, dynamic library, headers >= 3.15"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15

View File

@ -0,0 +1,4 @@
# Locally computed
sha256 6c81b65b71067b303aaa9871f512c2cabc23e2b793f19c6c854d01a492b5a923 fuse-overlayfs-1.5.0.tar.gz
# Locally computed
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING

View File

@ -0,0 +1,15 @@
################################################################################
#
# fuse-overlayfs
#
################################################################################
FUSE_OVERLAYFS_VERSION = 1.5.0
FUSE_OVERLAYFS_SITE = $(call github,containers,fuse-overlayfs,v$(FUSE_OVERLAYFS_VERSION))
FUSE_OVERLAYFS_LICENSE = GPL-3.0
FUSE_OVERLAYFS_LICENSE_FILES = COPYING
FUSE_OVERLAYFS_AUTORECONF = YES
FUSE_OVERLAYFS_DEPENDENCIES = libfuse3 host-pkgconf
$(eval $(autotools-package))