summaryrefslogtreecommitdiffstats
path: root/fs/ubifs/Kconfig
blob: 15fcec4459e14e5b41ba4b8f3ec12a1ec1e97bd3 (plain)
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
# SPDX-License-Identifier: GPL-2.0-only

menuconfig FS_UBIFS
	bool
	depends on MTD_UBI
	prompt "ubifs support"

if FS_UBIFS

config FS_UBIFS_COMPRESSION_LZO
	bool
	select LZO_DECOMPRESS
	prompt "LZO compression support"

config FS_UBIFS_COMPRESSION_ZLIB
	bool
	select ZLIB
	prompt "ZLIB compression support"

config FS_UBIFS_COMPRESSION_ZSTD
	bool
	select ZSTD_DECOMPRESS
	prompt "ZSTD compression support"

endif