8fb0721eb7
- add selinux support; - add erofsfuse support; - add 0001-erofs-utils-fix-multiple-definition-of-sbi.patch [1]; - add 0002-erofs-utils-fuse-fix-linking-when-using-with-selinux.patch [2]; - add 0003-erofs-utils-fuse-disable-backtrace-if-unsupported.patch. [1] https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/patch/?id=6c938b755682629a26f85e5540f40c0d316130ed [2] https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/patch/?id=f1f9659e98ea925a100e50332309955f5b2b4234 Signed-off-by: Gao Xiang <hsiangkao@aol.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
32 lines
812 B
Plaintext
32 lines
812 B
Plaintext
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
|