Kconfig 1.1 KB

123456789101112131415161718192021222324252627282930
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config 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. To compile this file system support as a module, choose M here: the
  14. module will be called hfs.
  15. config HFS_KUNIT_TEST
  16. tristate "KUnit tests for HFS filesystem" if !KUNIT_ALL_TESTS
  17. depends on HFS_FS && KUNIT
  18. default KUNIT_ALL_TESTS
  19. help
  20. This builds KUnit tests for the HFS filesystem.
  21. KUnit tests run during boot and output the results to the debug
  22. log in TAP format (https://testanything.org/). Only useful for
  23. kernel devs running KUnit test harness and are not for inclusion
  24. into a production build.
  25. For more information on KUnit and unit tests in general please
  26. refer to the KUnit documentation in Documentation/dev-tools/kunit/.