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

fs/Kconfig: move hfs, hfsplus out

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>

+27 -27
+2 -27
fs/Kconfig
··· 204 204 source "fs/adfs/Kconfig" 205 205 source "fs/affs/Kconfig" 206 206 source "fs/ecryptfs/Kconfig" 207 - 208 - config HFS_FS 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 - 221 - config 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. 207 + source "fs/hfs/Kconfig" 208 + source "fs/hfsplus/Kconfig" 234 209 235 210 config BEFS_FS 236 211 tristate "BeOS file system (BeFS) support (read only) (EXPERIMENTAL)"
+12
fs/hfs/Kconfig
··· 1 + config 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.
+13
fs/hfsplus/Kconfig
··· 1 + config 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.