Config.in 642 B

1234567891011121314151617
  1. config BR2_PACKAGE_FUSE_OVERLAYFS
  2. bool "fuse-overlayfs"
  3. depends on BR2_USE_MMU # libfuse3
  4. depends on !BR2_STATIC_LIBS # libfuse3
  5. depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse3
  6. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15
  7. select BR2_PACKAGE_LIBFUSE3
  8. help
  9. FUSE-overlayfs is an implementation of overlay+shiftfs in
  10. FUSE, intended to be used for rootless containers.
  11. http://github.com/containers/fuse-overlayfs
  12. comment "fuse-overlayfs needs a toolchain w/ threads, dynamic library, headers >= 3.15"
  13. depends on BR2_USE_MMU
  14. depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \
  15. !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15