Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

config CONFIG_UBIFS_FS
	tristate "UBIFS file system support"
	select CONFIG_CRC16
	select CONFIG_CRC32
	select CONFIG_CRYPTO if CONFIG_UBIFS_FS_ADVANCED_COMPR
	select CONFIG_CRYPTO if CONFIG_UBIFS_FS_LZO
	select CONFIG_CRYPTO if CONFIG_UBIFS_FS_ZLIB
	select CONFIG_CRYPTO_LZO if CONFIG_UBIFS_FS_LZO
	select CONFIG_CRYPTO_DEFLATE if CONFIG_UBIFS_FS_ZLIB
	depends on CONFIG_MTD_UBI
	help
	  UBIFS is a file system for flash devices which works on top of UBI.

config CONFIG_UBIFS_FS_ADVANCED_COMPR
	bool "Advanced compression options"
	depends on CONFIG_UBIFS_FS
	help
	  This option allows to explicitly choose which compressions, if any,
	  are enabled in UBIFS. Removing compressors means inability to read
	  existing file systems.

	  If unsure, say 'N'.

config CONFIG_UBIFS_FS_LZO
	bool "LZO compression support" if CONFIG_UBIFS_FS_ADVANCED_COMPR
	depends on CONFIG_UBIFS_FS
	default y
	help
	   LZO compressor is generally faster than zlib but compresses worse.
	   Say 'Y' if unsure.

config CONFIG_UBIFS_FS_ZLIB
	bool "ZLIB compression support" if CONFIG_UBIFS_FS_ADVANCED_COMPR
	depends on CONFIG_UBIFS_FS
	default y
	help
	  Zlib compresses better than LZO but it is slower. Say 'Y' if unsure.

config CONFIG_UBIFS_ATIME_SUPPORT
	bool "Access time support" if CONFIG_UBIFS_FS
	depends on CONFIG_UBIFS_FS
	default n
	help
	  Originally UBIFS did not support atime, because it looked like a bad idea due
	  increased flash wear. This option adds atime support and it is disabled by default
	  to preserve the old behavior. If you enable this option, UBIFS starts updating atime,
	  which means that file-system read operations will cause writes (inode atime
	  updates). This may affect file-system performance and increase flash device wear,
	  so be careful. How often atime is updated depends on the selected strategy:
	  strictatime is the "heavy", relatime is "lighter", etc.

	  If unsure, say 'N'

config CONFIG_UBIFS_FS_ENCRYPTION
	bool "UBIFS Encryption"
	depends on CONFIG_UBIFS_FS && CONFIG_BLOCK
	select CONFIG_FS_ENCRYPTION
	default n
	help
	  Enable encryption of UBIFS files and directories. This
	  feature is similar to ecryptfs, but it is more memory
	  efficient since it avoids caching the encrypted and
	  decrypted pages in the page cache.