]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - fs/squashfs/Config.in
fs/squashfs: add zstd support
[coffee/buildroot.git] / fs / squashfs / Config.in
1 config BR2_TARGET_ROOTFS_SQUASHFS
2         bool "squashfs root filesystem"
3         help
4           Build a squashfs root filesystem
5
6 if BR2_TARGET_ROOTFS_SQUASHFS
7
8 choice
9         prompt "Compression algorithm"
10         default BR2_TARGET_ROOTFS_SQUASHFS4_GZIP
11         help
12           Select the squashfs compression algorithm to use when
13           generating the filesystem.
14
15 config BR2_TARGET_ROOTFS_SQUASHFS4_GZIP
16         bool "gzip"
17
18 config BR2_TARGET_ROOTFS_SQUASHFS4_LZ4
19         bool "lz4"
20
21 config BR2_TARGET_ROOTFS_SQUASHFS4_LZMA
22         bool "lzma"
23
24 config BR2_TARGET_ROOTFS_SQUASHFS4_LZO
25         bool "lzo"
26
27 config BR2_TARGET_ROOTFS_SQUASHFS4_XZ
28         bool "xz"
29
30 config BR2_TARGET_ROOTFS_SQUASHFS4_ZSTD
31         bool "zstd"
32
33 endchoice
34 endif