Changeset 13573 in vbox for trunk/src/VBox/Additions/common/VBoxGuest
- Timestamp:
- Oct 27, 2008 12:03:26 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38462
- Location:
- trunk/src/VBox/Additions/common/VBoxGuest
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/Makefile.kmk
r12446 r13573 88 88 $(VBOX_LIB_VBGL_R0BASE) \ 89 89 $(VBOX_LIB_IPRT_GUEST_R0) 90 vboxguest_DEFS.solaris += VBOX_SVN_REV=$(VBOX_SVN_REV) 91 vboxguest_DEPS.solaris += $(VBOX_SVN_REV_KMK) 90 92 vboxguest_DEPS.freebsd = \ 91 93 $(PATH_vboxguest)/pci_if.h \ -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-solaris.c
r11602 r13573 37 37 #include "VBoxGuestInternal.h" 38 38 #include <VBox/log.h> 39 #include <VBox/version.h> 39 40 #include <iprt/assert.h> 40 41 #include <iprt/initterm.h> … … 46 47 * Defined Constants And Macros * 47 48 *******************************************************************************/ 49 #define VBOXSOLQUOTE2(x) #x 50 #define VBOXSOLQUOTE(x) VBOXSOLQUOTE2(x) 48 51 /** The module name. */ 49 52 #define DEVICE_NAME "vboxguest" 50 53 /** The module description as seen in 'modinfo'. */ 51 #define DEVICE_DESC "VirtualBox G uest Driver"54 #define DEVICE_DESC "VirtualBox GstDrv" 52 55 53 56 … … 124 127 { 125 128 &mod_driverops, /* extern from kernel */ 126 DEVICE_DESC ,129 DEVICE_DESC " " VBOX_VERSION_STRING "r" VBOXSOLQUOTE(VBOX_SVN_REV), 127 130 &g_VBoxGuestSolarisDevOps 128 131 };
Note:
See TracChangeset
for help on using the changeset viewer.