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