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.4-rc2 49 lines 1.2 kB view raw
1config EXFAT_FS 2 tristate "exFAT fs support" 3 depends on BLOCK 4 select NLS 5 help 6 This adds support for the exFAT file system. 7 8config EXFAT_DONT_MOUNT_VFAT 9 bool "Prohibit mounting of fat/vfat filesysems by exFAT" 10 depends on EXFAT_FS 11 default y 12 help 13 By default, the exFAT driver will only mount exFAT filesystems, and refuse 14 to mount fat/vfat filesystems. Set this to 'n' to allow the exFAT driver 15 to mount these filesystems. 16 17config EXFAT_DISCARD 18 bool "enable discard support" 19 depends on EXFAT_FS 20 default y 21 22config EXFAT_DELAYED_SYNC 23 bool "enable delayed sync" 24 depends on EXFAT_FS 25 default n 26 27config EXFAT_KERNEL_DEBUG 28 bool "enable kernel debug features via ioctl" 29 depends on EXFAT_FS 30 default n 31 32config EXFAT_DEBUG_MSG 33 bool "print debug messages" 34 depends on EXFAT_FS 35 default n 36 37config EXFAT_DEFAULT_CODEPAGE 38 int "Default codepage for exFAT" 39 default 437 40 depends on EXFAT_FS 41 help 42 This option should be set to the codepage of your exFAT filesystems. 43 44config EXFAT_DEFAULT_IOCHARSET 45 string "Default iocharset for exFAT" 46 default "utf8" 47 depends on EXFAT_FS 48 help 49 Set this to the default input/output character set you'd like exFAT to use.