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

# SPDX-License-Identifier: GPL-2.0-only
config CONFIG_FS_ENCRYPTION
	bool "FS Encryption (Per-file encryption)"
	select CONFIG_CRYPTO
	select CONFIG_CRYPTO_AES
	select CONFIG_CRYPTO_CBC
	select CONFIG_CRYPTO_ECB
	select CONFIG_CRYPTO_XTS
	select CONFIG_CRYPTO_CTS
	select CONFIG_CRYPTO_SHA512
	select CONFIG_CRYPTO_HMAC
	select CONFIG_KEYS
	help
	  Enable encryption of 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.  Currently Ext4,
	  F2FS and UBIFS make use of this feature.