You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
699 B
24 lines
699 B
config BR2_TARGET_ROOTFS_EROFS
|
|
bool "erofs root filesystem"
|
|
select BR2_PACKAGE_HOST_EROFS_UTILS
|
|
help
|
|
Build a EROFS root filesystem.
|
|
|
|
if BR2_TARGET_ROOTFS_EROFS
|
|
|
|
config BR2_TARGET_ROOTFS_EROFS_LZ4HC
|
|
bool "lz4hc compression"
|
|
help
|
|
Use lz4 high-compression to compress data in the filesystem.
|
|
|
|
config BR2_TARGET_ROOTFS_EROFS_PCLUSTERSIZE
|
|
int "pcluster size"
|
|
default 0
|
|
help
|
|
Specify the maximum size of physical cluster in bytes, as a
|
|
multiple of 4KiB, for the big pcluster feature in order to
|
|
get much better compression ratios (thus better sequential
|
|
read performance for common storage devices), which has been
|
|
introduced since Linux 5.13.
|
|
|
|
endif # BR2_TARGET_ROOTFS_EROFS
|
|
|