- Timestamp:
- Mar 10, 2009 1:17:19 PM (16 years ago)
- Location:
- trunk/src/VBox/Additions/solaris/SharedFolders
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/solaris/SharedFolders/Makefile.kmk
r17579 r17626 32 32 SYSMODS.solaris += vboxfs 33 33 vboxfs_TEMPLATE = VBOXGUESTR0 34 vboxfs_DEFS = VBOX_WITH_HGCM 34 vboxfs_DEFS = VBOX_WITH_HGCM VBOX_SVN_REV=$(VBOX_SVN_REV) 35 vboxfs_DEPS += $(VBOX_SVN_REV_KMK) 35 36 vboxfs_INCS := \ 36 37 . … … 51 52 SYSMODS.solaris += vboxfs_s10 52 53 vboxfs_s10_TEMPLATE = VBOXGUESTR0 53 vboxfs_s10_DEFS = VBOX_WITH_HGCM VBOX_VFS_SOLARIS_10U6 54 vboxfs_s10_DEFS = VBOX_WITH_HGCM VBOX_VFS_SOLARIS_10U6 VBOX_SVN_REV=$(VBOX_SVN_REV) 55 vboxfs_s10_DEPS += $(VBOX_SVN_REV_KMK) 54 56 vboxfs_s10_INCS := \ 55 57 solaris10/ \ -
trunk/src/VBox/Additions/solaris/SharedFolders/vboxfs.h
r17625 r17626 32 32 /** The module name. */ 33 33 #define DEVICE_NAME "vboxfs" 34 /** The module description as seen in 'modinfo'. */35 #define DEVICE_DESC "filesystem for VirtualBox Shared Folders"36 37 /* Not sure if we need this; it seems only necessary for kernel mounts. */38 #if 039 typedef struct vboxvfs_mountinfo40 {41 char name[MAX_HOST_NAME];42 char nls_name[MAX_NLS_NAME];43 int uid;44 int gid;45 int ttl;46 } vboxvfs_mountinfo_t;47 #endif48 34 49 35 #ifdef _KERNEL
Note:
See TracChangeset
for help on using the changeset viewer.