mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
81014f73f0
Add zlib (v1.2.11) uncompr() function to U-Boot. SquashFS depends on this function to decompress data from a raw disk image. The actual support for zlib into SquashFS sources will be added in a follow-up commit. Signed-off-by: Joao Marcos Costa <joaomarcos.costa@bootlin.com>
11 lines
549 B
Text
11 lines
549 B
Text
config FS_SQUASHFS
|
|
bool "Enable SquashFS filesystem support"
|
|
select ZLIB_UNCOMPRESS
|
|
help
|
|
This provides support for reading images from SquashFS filesystem.
|
|
Squashfs is a compressed read-only filesystem for Linux.
|
|
It uses zlib, lz4, lzo, or xz compression to compress files, inodes
|
|
and directories. Squashfs is intended for general read-only
|
|
filesystem use, for archival use (i.e. in cases where a .tar.gz file
|
|
may be used), and in constrained block device/memory systems (e.g.
|
|
embedded systems) where low overhead is needed.
|