forked from dorimanx/exfat-nofuse
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Kconfig
65 lines (56 loc) · 1.52 KB
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
config EXFAT_FS
tristate "exFAT fs support"
default m
select NLS
select NLS_UTF8
select NLS_CODEPAGE_437
select NLS_ISO8859_1
help
If you want to use the exFAT file systems, then you must say Y or M here
to inlucde exFAT support.
config EXFAT_USE_FOR_VFAT
bool "Register exFAT as VFAT"
default y
depends on EXFAT_FS && !VFAT_FS
help
If you want to register exFAT as available for VFAT, say Y.
config EXFAT_DISCARD
bool "Enable discard support"
depends on EXFAT_FS
default y
config EXFAT_KERNEL_DEBUG
bool "Enable kernel debug features via ioctl"
depends on EXFAT_FS
default n
config EXFAT_DEBUG_MSG
bool "Print debug messages"
depends on EXFAT_FS
default n
config EXFAT_DEFAULT_CODEPAGE
int "Default codepage for exFAT"
default 437
depends on EXFAT_FS
help
This option should be set to the codepage of your exFAT filesystems.
config EXFAT_DEFAULT_IOCHARSET
string "Default iocharset for exFAT"
default "utf8"
depends on EXFAT_FS
help
Set this to the default input/output character set you'd like exFAT to use.
config EXFAT_VIRTUAL_XATTR
bool "Virtual xattr support for exFAT filesystem"
default y
depends on EXFAT_FS
help
Modification of exFAT filesystem for virtual xattr
config EXFAT_VIRTUAL_XATTR_SELINUX_LABEL
string "Default string for SELinux label"
depends on EXFAT_FS && EXFAT_VIRTUAL_XATTR
default "u:object_r:sdcard_external:s0"
help
Set this to the default string for SELinux label.
config EXFAT_SUPPORT_STLOG
bool "Enable storage log"
default y
depends on EXFAT_FS && PROC_STLOG