Kconfig (58e16d792a6a8c6b750f637a4649967fcac853dc) Kconfig (72ef5e52b3f74c0be47b20f5c434b7ecc830cf40)
1# SPDX-License-Identifier: GPL-2.0-only
2config FAT_FS
3 tristate
4 select NLS
5 help
6 If you want to use one of the FAT-based file systems (the MS-DOS and
7 VFAT (Windows 95) file systems), then you must say Y or M here
8 to include FAT support. You will then be able to mount partitions or

--- 55 unchanged lines hidden (view full) ---

64 help
65 This option provides support for normal Windows file systems with
66 long filenames. That includes non-compressed FAT-based file systems
67 used by Windows 95, Windows 98, Windows NT 4.0, and the Unix
68 programs from the mtools package.
69
70 The VFAT support enlarges your kernel by about 10 KB and it only
71 works if you said Y to the "DOS FAT fs support" above. Please read
1# SPDX-License-Identifier: GPL-2.0-only
2config FAT_FS
3 tristate
4 select NLS
5 help
6 If you want to use one of the FAT-based file systems (the MS-DOS and
7 VFAT (Windows 95) file systems), then you must say Y or M here
8 to include FAT support. You will then be able to mount partitions or

--- 55 unchanged lines hidden (view full) ---

64 help
65 This option provides support for normal Windows file systems with
66 long filenames. That includes non-compressed FAT-based file systems
67 used by Windows 95, Windows 98, Windows NT 4.0, and the Unix
68 programs from the mtools package.
69
70 The VFAT support enlarges your kernel by about 10 KB and it only
71 works if you said Y to the "DOS FAT fs support" above. Please read
72 the file <file:Documentation/filesystems/vfat.txt> for details. If
72 the file <file:Documentation/filesystems/vfat.rst> for details. If
73 unsure, say Y.
74
75 To compile this as a module, choose M here: the module will be called
76 vfat.
77
78config FAT_DEFAULT_CODEPAGE
79 int "Default codepage for FAT"
80 depends on MSDOS_FS || VFAT_FS
81 default 437
82 help
83 This option should be set to the codepage of your FAT filesystems.
84 It can be overridden with the "codepage" mount option.
73 unsure, say Y.
74
75 To compile this as a module, choose M here: the module will be called
76 vfat.
77
78config FAT_DEFAULT_CODEPAGE
79 int "Default codepage for FAT"
80 depends on MSDOS_FS || VFAT_FS
81 default 437
82 help
83 This option should be set to the codepage of your FAT filesystems.
84 It can be overridden with the "codepage" mount option.
85 See <file:Documentation/filesystems/vfat.txt> for more information.
85 See <file:Documentation/filesystems/vfat.rst> for more information.
86
87config FAT_DEFAULT_IOCHARSET
88 string "Default iocharset for FAT"
89 depends on VFAT_FS
90 default "iso8859-1"
91 help
92 Set this to the default input/output character set you'd
93 like FAT to use. It should probably match the character set
94 that most of your FAT filesystems use, and can be overridden
95 with the "iocharset" mount option for FAT filesystems.
96 Note that "utf8" is not recommended for FAT filesystems.
97 If unsure, you shouldn't set "utf8" here - select the next option
98 instead if you would like to use UTF-8 encoded file names by default.
86
87config FAT_DEFAULT_IOCHARSET
88 string "Default iocharset for FAT"
89 depends on VFAT_FS
90 default "iso8859-1"
91 help
92 Set this to the default input/output character set you'd
93 like FAT to use. It should probably match the character set
94 that most of your FAT filesystems use, and can be overridden
95 with the "iocharset" mount option for FAT filesystems.
96 Note that "utf8" is not recommended for FAT filesystems.
97 If unsure, you shouldn't set "utf8" here - select the next option
98 instead if you would like to use UTF-8 encoded file names by default.
99 See <file:Documentation/filesystems/vfat.txt> for more information.
99 See <file:Documentation/filesystems/vfat.rst> for more information.
100
101 Enable any character sets you need in File Systems/Native Language
102 Support.
103
104config FAT_DEFAULT_UTF8
105 bool "Enable FAT UTF-8 option by default"
106 depends on VFAT_FS
107 default n
108 help
109 Set this if you would like to have "utf8" mount option set
110 by default when mounting FAT filesystems.
111
112 Even if you say Y here can always disable UTF-8 for
113 particular mount by adding "utf8=0" to mount options.
114
115 Say Y if you use UTF-8 encoding for file names, N otherwise.
116
100
101 Enable any character sets you need in File Systems/Native Language
102 Support.
103
104config FAT_DEFAULT_UTF8
105 bool "Enable FAT UTF-8 option by default"
106 depends on VFAT_FS
107 default n
108 help
109 Set this if you would like to have "utf8" mount option set
110 by default when mounting FAT filesystems.
111
112 Even if you say Y here can always disable UTF-8 for
113 particular mount by adding "utf8=0" to mount options.
114
115 Say Y if you use UTF-8 encoding for file names, N otherwise.
116
117 See <file:Documentation/filesystems/vfat.txt> for more information.
117 See <file:Documentation/filesystems/vfat.rst> for more information.