aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/Kconfig29
-rw-r--r--fs/hfs/Kconfig12
-rw-r--r--fs/hfsplus/Kconfig13
3 files changed, 27 insertions, 27 deletions
diff --git a/fs/Kconfig b/fs/Kconfig
index 1c79baf55db2..3b48ab4f0b77 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -204,33 +204,8 @@ if MISC_FILESYSTEMS
204source "fs/adfs/Kconfig" 204source "fs/adfs/Kconfig"
205source "fs/affs/Kconfig" 205source "fs/affs/Kconfig"
206source "fs/ecryptfs/Kconfig" 206source "fs/ecryptfs/Kconfig"
207 207source "fs/hfs/Kconfig"
208config HFS_FS 208source "fs/hfsplus/Kconfig"
209 tristate "Apple Macintosh file system support (EXPERIMENTAL)"
210 depends on BLOCK && EXPERIMENTAL
211 select NLS
212 help
213 If you say Y here, you will be able to mount Macintosh-formatted
214 floppy disks and hard drive partitions with full read-write access.
215 Please read <file:Documentation/filesystems/hfs.txt> to learn about
216 the available mount options.
217
218 To compile this file system support as a module, choose M here: the
219 module will be called hfs.
220
221config HFSPLUS_FS
222 tristate "Apple Extended HFS file system support"
223 depends on BLOCK
224 select NLS
225 select NLS_UTF8
226 help
227 If you say Y here, you will be able to mount extended format
228 Macintosh-formatted hard drive partitions with full read-write access.
229
230 This file system is often called HFS+ and was introduced with
231 MacOS 8. It includes all Mac specific filesystem data such as
232 data forks and creator codes, but it also has several UNIX
233 style features such as file ownership and permissions.
234 209
235config BEFS_FS 210config BEFS_FS
236 tristate "BeOS file system (BeFS) support (read only) (EXPERIMENTAL)" 211 tristate "BeOS file system (BeFS) support (read only) (EXPERIMENTAL)"
diff --git a/fs/hfs/Kconfig b/fs/hfs/Kconfig
new file mode 100644
index 000000000000..b77c5bc20f8a
--- /dev/null
+++ b/fs/hfs/Kconfig
@@ -0,0 +1,12 @@
1config HFS_FS
2 tristate "Apple Macintosh file system support (EXPERIMENTAL)"
3 depends on BLOCK && EXPERIMENTAL
4 select NLS
5 help
6 If you say Y here, you will be able to mount Macintosh-formatted
7 floppy disks and hard drive partitions with full read-write access.
8 Please read <file:Documentation/filesystems/hfs.txt> to learn about
9 the available mount options.
10
11 To compile this file system support as a module, choose M here: the
12 module will be called hfs.
diff --git a/fs/hfsplus/Kconfig b/fs/hfsplus/Kconfig
new file mode 100644
index 000000000000..a63371815aab
--- /dev/null
+++ b/fs/hfsplus/Kconfig
@@ -0,0 +1,13 @@
1config HFSPLUS_FS
2 tristate "Apple Extended HFS file system support"
3 depends on BLOCK
4 select NLS
5 select NLS_UTF8
6 help
7 If you say Y here, you will be able to mount extended format
8 Macintosh-formatted hard drive partitions with full read-write access.
9
10 This file system is often called HFS+ and was introduced with
11 MacOS 8. It includes all Mac specific filesystem data such as
12 data forks and creator codes, but it also has several UNIX
13 style features such as file ownership and permissions.