mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 00:47:26 +00:00
65cb73057b
Support EROFS lz4 compressed files. Signed-off-by: Huang Jianan <jnhuang95@gmail.com>
21 lines
740 B
Text
21 lines
740 B
Text
config FS_EROFS
|
|
bool "Enable EROFS filesystem support"
|
|
help
|
|
This provides support for reading images from EROFS filesystem.
|
|
EROFS (Enhanced Read-Only File System) is a lightweight read-only
|
|
file system for scenarios which need high-performance read-only
|
|
requirements.
|
|
|
|
It also provides fixed-sized output compression support, which
|
|
improves storage density, keeps relatively higher compression
|
|
ratios, which is more useful to achieve high performance for
|
|
embedded devices with limited memory.
|
|
|
|
config FS_EROFS_ZIP
|
|
bool "EROFS Data Compression Support"
|
|
depends on FS_EROFS
|
|
select LZ4
|
|
default y
|
|
help
|
|
Enable fixed-sized output compression for EROFS.
|
|
If you don't want to enable compression feature, say N.
|