Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.5-rc2 41 lines 896 B view raw
1# SPDX-License-Identifier: GPL-2.0 2config EXFAT_FS 3 tristate "exFAT fs support" 4 depends on BLOCK 5 select NLS 6 help 7 This adds support for the exFAT file system. 8 9config EXFAT_DISCARD 10 bool "enable discard support" 11 depends on EXFAT_FS 12 default y 13 14config EXFAT_DELAYED_SYNC 15 bool "enable delayed sync" 16 depends on EXFAT_FS 17 default n 18 19config EXFAT_KERNEL_DEBUG 20 bool "enable kernel debug features via ioctl" 21 depends on EXFAT_FS 22 default n 23 24config EXFAT_DEBUG_MSG 25 bool "print debug messages" 26 depends on EXFAT_FS 27 default n 28 29config EXFAT_DEFAULT_CODEPAGE 30 int "Default codepage for exFAT" 31 default 437 32 depends on EXFAT_FS 33 help 34 This option should be set to the codepage of your exFAT filesystems. 35 36config EXFAT_DEFAULT_IOCHARSET 37 string "Default iocharset for exFAT" 38 default "utf8" 39 depends on EXFAT_FS 40 help 41 Set this to the default input/output character set you'd like exFAT to use.