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
config CONFIG_EXFAT_FS
	tristate "exFAT fs support"
	depends on CONFIG_BLOCK
	select CONFIG_NLS
	help
	  This adds support for the exFAT file system.

config CONFIG_EXFAT_DONT_MOUNT_VFAT
	bool "Prohibit mounting of fat/vfat filesystems by exFAT"
	depends on CONFIG_EXFAT_FS
	default y
	help
	  By default, the exFAT driver will only mount exFAT filesystems, and refuse
	  to mount fat/vfat filesystems.  Set this to 'n' to allow the exFAT driver
	  to mount these filesystems.

config CONFIG_EXFAT_DISCARD
	bool "enable discard support"
	depends on CONFIG_EXFAT_FS
	default y

config CONFIG_EXFAT_DELAYED_SYNC
	bool "enable delayed sync"
	depends on CONFIG_EXFAT_FS
	default n

config CONFIG_EXFAT_KERNEL_DEBUG
	bool "enable kernel debug features via ioctl"
	depends on CONFIG_EXFAT_FS
	default n

config CONFIG_EXFAT_DEBUG_MSG
	bool "print debug messages"
	depends on CONFIG_EXFAT_FS
	default n

config CONFIG_EXFAT_DEFAULT_CODEPAGE
	int "Default codepage for exFAT"
	default 437
	depends on CONFIG_EXFAT_FS
	help
	  This option should be set to the codepage of your exFAT filesystems.

config CONFIG_EXFAT_DEFAULT_IOCHARSET
	string "Default iocharset for exFAT"
	default "utf8"
	depends on CONFIG_EXFAT_FS
	help
	  Set this to the default input/output character set you'd like exFAT to use.