xref: /OK3568_Linux_fs/buildroot/package/erofs-utils/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_EROFS_UTILS
2	bool "erofs-utils"
3	select BR2_PACKAGE_UTIL_LINUX
4	select BR2_PACKAGE_UTIL_LINUX_LIBUUID
5	help
6	  Userspace utilities for EROFS filesystem
7
8	  https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git
9
10if BR2_PACKAGE_EROFS_UTILS
11
12config BR2_PACKAGE_EROFS_UTILS_LZ4
13	bool "lz4 support"
14	select BR2_PACKAGE_LZ4
15	help
16	  Support LZ4 compression algorithm
17
18config BR2_PACKAGE_EROFS_UTILS_EROFSFUSE
19	bool "erofsfuse support"
20	depends on BR2_USE_MMU # libfuse
21	depends on !BR2_STATIC_LIBS # libfuse
22	depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse
23	select BR2_PACKAGE_LIBFUSE
24	help
25	  FUSE file system client for EROFS
26
27comment "erofsfuse needs a toolchain w/ threads, dynamic library"
28	depends on BR2_USE_MMU
29	depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
30
31endif
32