mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 13:46:32 +00:00
squashfs: do not force gzip support if lz4/xz/zstd is selected
The logic to ensure at least one compression backend is selected was not updated when lz4, xz and zstd were introduced - Fix that. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Reviewed-by: Peter Seiderer <ps.report@gmx.net> [Peter: add comment as suggested by Peter Seiderer] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
acb89c8d93
commit
84aeb4419f
@ -2,7 +2,13 @@ config BR2_PACKAGE_SQUASHFS
|
|||||||
bool "squashfs"
|
bool "squashfs"
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||||
depends on BR2_USE_MMU # fork()
|
depends on BR2_USE_MMU # fork()
|
||||||
select BR2_PACKAGE_SQUASHFS_GZIP if !(BR2_PACKAGE_SQUASHFS_LZMA || BR2_PACKAGE_SQUASHFS_LZO)
|
# ensure at least on compression backend (defaults to gzip)
|
||||||
|
select BR2_PACKAGE_SQUASHFS_GZIP if !( \
|
||||||
|
BR2_PACKAGE_SQUASHFS_LZ4 || \
|
||||||
|
BR2_PACKAGE_SQUASHFS_LZMA || \
|
||||||
|
BR2_PACKAGE_SQUASHFS_LZO || \
|
||||||
|
BR2_PACKAGE_SQUASHFS_XZ || \
|
||||||
|
BR2_PACKAGE_SQUASHFS_ZSTD)
|
||||||
help
|
help
|
||||||
Tools to generate SquashFS filesystems.
|
Tools to generate SquashFS filesystems.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user