Changeset 13530 in vbox
- Timestamp:
- Oct 23, 2008 11:33:30 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38372
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/Makefile.kmk
r13435 r13530 397 397 #vboxdrv_DEFS += VBOX_WITH_NETFLT 398 398 #endif 399 vboxdrv_DEFS += VBOX_SVN_REV=$(VBOX_SVN_REV) 400 vboxdrv_DEPS += $(VBOX_SVN_REV_KMK) 399 401 vboxdrv_INCS := $(PATH_SUB_CURRENT) 400 402 vboxdrv_LIBS = $(PATH_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB) -
trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c
r12808 r13530 51 51 #include "../SUPDrvInternal.h" 52 52 #include <VBox/log.h> 53 #include <VBox/version.h> 53 54 #include <iprt/semaphore.h> 54 55 #include <iprt/spinlock.h> … … 64 65 * Defined Constants And Macros * 65 66 *******************************************************************************/ 67 #define _QUOTE2(x) #x 68 #define QUOTE(x) _QUOTE2(x) 66 69 /** The module name. */ 67 70 #define DEVICE_NAME "vboxdrv" 68 71 /** The module description as seen in 'modinfo'. */ 69 #define DEVICE_DESC "VirtualBox HostDriver"72 #define DEVICE_DESC "VirtualBox Driver" 70 73 /** Maximum number of driver instances. */ 71 74 #define DEVICE_MAXINSTANCES 16 … … 138 141 { 139 142 &mod_driverops, /* extern from kernel */ 140 DEVICE_DESC ,143 DEVICE_DESC " " VBOX_VERSION_STRING "r" QUOTE(VBOX_SVN_REV), 141 144 &g_VBoxDrvSolarisDevOps 142 145 };
Note:
See TracChangeset
for help on using the changeset viewer.