Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. #
  2. # NCP Filesystem configuration
  3. #
  4. config NCPFS_PACKET_SIGNING
  5. bool "Packet signatures"
  6. depends on NCP_FS
  7. help
  8. NCP allows packets to be signed for stronger security. If you want
  9. security, say Y. Normal users can leave it off. To be able to use
  10. packet signing you must use ncpfs > 2.0.12.
  11. config NCPFS_IOCTL_LOCKING
  12. bool "Proprietary file locking"
  13. depends on NCP_FS
  14. help
  15. Allows locking of records on remote volumes. Say N unless you have
  16. special applications which are able to utilize this locking scheme.
  17. config NCPFS_STRONG
  18. bool "Clear remove/delete inhibit when needed"
  19. depends on NCP_FS
  20. help
  21. Allows manipulation of files flagged as Delete or Rename Inhibit.
  22. To use this feature you must mount volumes with the ncpmount
  23. parameter "-s" (ncpfs-2.0.12 and newer). Say Y unless you are not
  24. mounting volumes with -f 444.
  25. config NCPFS_NFS_NS
  26. bool "Use NFS namespace if available"
  27. depends on NCP_FS
  28. help
  29. Allows you to utilize NFS namespace on NetWare servers. It brings
  30. you case sensitive filenames. Say Y. You can disable it at
  31. mount-time with the `-N nfs' parameter of ncpmount.
  32. config NCPFS_OS2_NS
  33. bool "Use LONG (OS/2) namespace if available"
  34. depends on NCP_FS
  35. help
  36. Allows you to utilize OS2/LONG namespace on NetWare servers.
  37. Filenames in this namespace are limited to 255 characters, they are
  38. case insensitive, and case in names is preserved. Say Y. You can
  39. disable it at mount time with the -N os2 parameter of ncpmount.
  40. config NCPFS_SMALLDOS
  41. bool "Lowercase DOS filenames"
  42. depends on NCP_FS
  43. ---help---
  44. If you say Y here, every filename on a NetWare server volume using
  45. the OS2/LONG namespace and created under DOS or on a volume using
  46. DOS namespace will be converted to lowercase characters.
  47. Saying N here will give you these filenames in uppercase.
  48. This is only a cosmetic option since the OS2/LONG namespace is case
  49. insensitive. The only major reason for this option is backward
  50. compatibility when moving from DOS to OS2/LONG namespace support.
  51. Long filenames (created by Win95) will not be affected.
  52. This option does not solve the problem that filenames appear
  53. differently under Linux and under Windows, since Windows does an
  54. additional conversions on the client side. You can achieve similar
  55. effects by saying Y to "Allow using of Native Language Support"
  56. below.
  57. config NCPFS_NLS
  58. bool "Use Native Language Support"
  59. depends on NCP_FS
  60. select NLS
  61. help
  62. Allows you to use codepages and I/O charsets for file name
  63. translation between the server file system and input/output. This
  64. may be useful, if you want to access the server with other operating
  65. systems, e.g. Windows 95. See also NLS for more Information.
  66. To select codepages and I/O charsets use ncpfs-2.2.0.13 or newer.
  67. config NCPFS_EXTRAS
  68. bool "Enable symbolic links and execute flags"
  69. depends on NCP_FS
  70. help
  71. This enables the use of symbolic links and an execute permission
  72. bit on NCPFS. The file server need not have long name space or NFS
  73. name space loaded for these to work.
  74. To use the new attributes, it is recommended to use the flags
  75. '-f 600 -d 755' on the ncpmount command line.