Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0-only
2config HFS_FS
3 tristate "Apple Macintosh file system support"
4 depends on BLOCK
5 select BUFFER_HEAD
6 select NLS
7 select LEGACY_DIRECT_IO
8 help
9 If you say Y here, you will be able to mount Macintosh-formatted
10 floppy disks and hard drive partitions with full read-write access.
11 Please read <file:Documentation/filesystems/hfs.rst> to learn about
12 the available mount options.
13
14 To compile this file system support as a module, choose M here: the
15 module will be called hfs.
16
17config HFS_KUNIT_TEST
18 tristate "KUnit tests for HFS filesystem" if !KUNIT_ALL_TESTS
19 depends on HFS_FS && KUNIT
20 default KUNIT_ALL_TESTS
21 help
22 This builds KUnit tests for the HFS filesystem.
23
24 KUnit tests run during boot and output the results to the debug
25 log in TAP format (https://testanything.org/). Only useful for
26 kernel devs running KUnit test harness and are not for inclusion
27 into a production build.
28
29 For more information on KUnit and unit tests in general please
30 refer to the KUnit documentation in Documentation/dev-tools/kunit/.