• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1config HMDFS_FS
2	tristate "HMDFS filesystem support"
3	help
4	  HMDFS is an overlay file system. Relying on the underlying file system,
5	  under the premise of networking, file exchanges across devices can be
6	  realized. Device view and merge view are provided. In the device view,
7	  the shared directories of the corresponding devices are provided under
8	  different device directories; in the merge view, acollection of shared
9	  files of all devices is provided.
10
11config HMDFS_FS_PERMISSION
12	bool "HMDFS application permission management"
13	depends on HMDFS_FS
14	help
15	  HMDFS provides cross-device file and directory sharing. Only the same
16	  application can access the files and directories under the corresponding
17	  package directory. it provides management and control of access
18	  permissions.
19
20	  If unsure, say N.
21
22config HMDFS_FS_ENCRYPTION
23	bool "HMDFS message encryption"
24	depends on HMDFS_FS && TLS
25	help
26	  HMDFS provides cross-device file and directory sharing by sending and
27	  receiving network messages. To ensure data security, TLS encryption is
28	  provided.
29
30	  If you want to improve performance, say N.
31
32config HMDFS_FS_DEBUG
33	bool "HMDFS debug log"
34	depends on HMDFS_FS
35	help
36	  HMDFS print a lot of logs, but many of them are debugging information,
37	  which is actually unnecessary during operation. If there is a problem,
38	  it works.
39
40	  If unsure, say N.
41