d6c2413829
fuse-overlayfs unconditionally uses SYS_renameat2 since version 0.2 and616119093a
which is not available until kernel 3.15 and5fb6b953bb
Fixes: - http://autobuild.buildroot.org/results/3c97e25c69ab949e51f04b5d0134bc4b4059982d Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
18 lines
642 B
Plaintext
18 lines
642 B
Plaintext
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
|