Kconfig 743 B

123456789101112131415161718192021222324
  1. # Note ORE needs to "select ASYNC_XOR". So Not to force multiple selects
  2. # for every ORE user we do it like this. Any user should add itself here
  3. # at the "depends on EXOFS_FS || ..." with an ||. The dependencies are
  4. # selected here, and we default to "ON". So in effect it is like been
  5. # selected by any of the users.
  6. config ORE
  7. tristate
  8. depends on EXOFS_FS || PNFS_OBJLAYOUT
  9. select ASYNC_XOR
  10. default SCSI_OSD_ULD
  11. config EXOFS_FS
  12. tristate "exofs: OSD based file system support"
  13. depends on SCSI_OSD_ULD
  14. help
  15. EXOFS is a file system that uses an OSD storage device,
  16. as its backing storage.
  17. # Debugging-related stuff
  18. config EXOFS_DEBUG
  19. bool "Enable debugging"
  20. depends on EXOFS_FS
  21. help
  22. This option enables EXOFS debug prints.