package/fuse-overlayfs: new package
FUSE-overlayfs is an implementation of overlay+shiftfs in FUSE, intended to be used as the backing filesystem for rootless containers. Reference: http://github.com/containers/fuse-overlayfs Signed-off-by: Christian Stewart <christian@paral.in> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
parent
de61548933
commit
c417174643
@ -539,6 +539,7 @@ F: package/docker-cli/
|
||||
F: package/docker-containerd/
|
||||
F: package/docker-engine/
|
||||
F: package/docker-proxy/
|
||||
F: package/fuse-overlayfs/
|
||||
F: package/go/
|
||||
F: package/mosh/
|
||||
F: package/pkg-golang.mk
|
||||
|
@ -203,6 +203,7 @@ menu "Filesystem and flash utilities"
|
||||
source "package/f2fs-tools/Config.in"
|
||||
source "package/flashbench/Config.in"
|
||||
source "package/fscryptctl/Config.in"
|
||||
source "package/fuse-overlayfs/Config.in"
|
||||
source "package/fwup/Config.in"
|
||||
source "package/genext2fs/Config.in"
|
||||
source "package/genpart/Config.in"
|
||||
|
15
package/fuse-overlayfs/Config.in
Normal file
15
package/fuse-overlayfs/Config.in
Normal file
@ -0,0 +1,15 @@
|
||||
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
|
||||
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"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
4
package/fuse-overlayfs/fuse-overlayfs.hash
Normal file
4
package/fuse-overlayfs/fuse-overlayfs.hash
Normal file
@ -0,0 +1,4 @@
|
||||
# Locally computed
|
||||
sha256 060168c2d5a8c6cc768b4542eba9953b7ff4a31f94bfb2e05b3d1051390838b1 fuse-overlayfs-1.1.0.tar.gz
|
||||
# Locally computed
|
||||
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING
|
15
package/fuse-overlayfs/fuse-overlayfs.mk
Normal file
15
package/fuse-overlayfs/fuse-overlayfs.mk
Normal file
@ -0,0 +1,15 @@
|
||||
################################################################################
|
||||
#
|
||||
# fuse-overlayfs
|
||||
#
|
||||
################################################################################
|
||||
|
||||
FUSE_OVERLAYFS_VERSION = 1.1.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))
|
Loading…
Reference in New Issue
Block a user