summaryrefslogtreecommitdiffstats
path: root/package/squashfs/Config.in
blob: 93d35946463f1069349b4923d4094942aa769946 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
config BR2_PACKAGE_SQUASHFS
	bool "squashfs"
	depends on BR2_LARGEFILE
	depends on BR2_TOOLCHAIN_HAS_THREADS
	select BR2_PACKAGE_SQUASHFS_GZIP if !(BR2_PACKAGE_SQUASHFS_LZMA || BR2_PACKAGE_SQUASHFS_LZO)
	help
	  Tools to generate SquashFS filesystems.

	  http://squashfs.sourceforge.net/

if BR2_PACKAGE_SQUASHFS

config BR2_PACKAGE_SQUASHFS_GZIP
       bool "gzip support"
       default y
       select BR2_PACKAGE_ZLIB
       help
         Support GZIP compression algorithm

config BR2_PACKAGE_SQUASHFS_LZMA
       bool "lzma support"
       select BR2_PACKAGE_XZ
       help
         Support LZMA compression algorithm

config BR2_PACKAGE_SQUASHFS_LZO
       bool "lzo support"
       select BR2_PACKAGE_LZO
       help
         Support LZO compression algorithm

config BR2_PACKAGE_SQUASHFS_XZ
       bool "xz support"
       select BR2_PACKAGE_XZ
       help
         Support XZ compression algorithm

endif

comment "squashfs requires a toolchain with LARGEFILE and threads support"
	depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS