feat(server): Add vboxsf

This commit is contained in:
Myzel394 2024-11-03 18:38:00 +01:00
parent 610ca6a3c3
commit fd5749f594
No known key found for this signature in database
GPG Key ID: ED20A1D1D423AF3F

View File

@ -0,0 +1,22 @@
package commondocumentation
import docvalues "config-lsp/doc-values"
var VboxsfDocumentationAssignable = docvalues.MergeKeyEnumAssignmentMaps(FatDocumentationAssignable, map[docvalues.EnumString]docvalues.DeprecatedValue{
docvalues.CreateEnumStringWithDoc(
"iocharset",
"This option sets the character set used for I/O operations. Note that on Linux guests, if the iocharset option is not specified, then the Guest Additions driver will attempt to use the character set specified by the CONFIG_NLS_DEFAULT kernel option. If this option is not set either, then UTF-8 is used.",
): docvalues.EnumValue{
EnforceValues: true,
Values: AvailableCharsets,
},
docvalues.CreateEnumStringWithDoc(
"convertcp",
"This option specifies the character set used for the shared folder name. This is UTF-8 by default.",
): docvalues.EnumValue{
EnforceValues: true,
Values: AvailableCharsets,
},
})
var VboxsfDocumentationEnums = []docvalues.EnumString{}