Index: /trunk/src/VBox/Additions/solaris/Installer/postinstall.sh
===================================================================
--- /trunk/src/VBox/Additions/solaris/Installer/postinstall.sh	(revision 42424)
+++ /trunk/src/VBox/Additions/solaris/Installer/postinstall.sh	(revision 42425)
@@ -146,4 +146,5 @@
 if test "$currentzone" = "global"; then
     /usr/sbin/installf -c none $PKGINST /dev/vboxguest=../devices/pci@0,0/pci80ee,cafe@4:vboxguest s
+    /usr/sbin/installf -c none $PKGINST /dev/vboxms=../devices/pseudo/vboxms@0:vboxmouse s
 fi
 
@@ -399,4 +400,6 @@
     fi
 fi
+
+# Move the pointer integration module to kernel/drv & remove the unused module name from pkg and file from disk
 
 # Finalize
Index: /trunk/src/VBox/Additions/solaris/Installer/preremove.sh
===================================================================
--- /trunk/src/VBox/Additions/solaris/Installer/preremove.sh	(revision 42424)
+++ /trunk/src/VBox/Additions/solaris/Installer/preremove.sh	(revision 42425)
@@ -53,4 +53,6 @@
 if test -h "/dev/vboxguest" || test -f "/dev/vboxguest"; then
     rm -f /dev/vboxdrv
+if test -h "/dev/vboxms" || test -f "/dev/vboxms"; then
+    rm -f /dev/vboxms
 fi
 
Index: /trunk/src/VBox/Additions/solaris/Makefile.kmk
===================================================================
--- /trunk/src/VBox/Additions/solaris/Makefile.kmk	(revision 42424)
+++ /trunk/src/VBox/Additions/solaris/Makefile.kmk	(revision 42425)
@@ -126,4 +126,5 @@
 solaris-addcommon_SOURCES = \
 	$(PATH_ROOT)/src/VBox/Additions/common/VBoxGuest/VBoxGuest-solaris.conf=>vboxguest.conf \
+	$(PATH_ROOT)/src/VBox/Additions/solaris/Mouse/vboxms.conf=>vboxms.conf \
 	$(VBOX_PATH_X11_ADDITION_INSTALLER)/vboxclient.desktop \
 	$(VBOX_PATH_SOLARIS_ADDITION_INSTALLER)/vboxservice.xml \
@@ -160,4 +161,5 @@
 	vboxfsmount	\
 	vboxfs \
+	vboxmslnk \
 	$(if ($VBOX_WITH_PAM),pam_vbox.so,) \
 	$(if $(VBOX_OSE),,vboxfs_s10)
@@ -173,8 +175,10 @@
 
 SOLARIS_ADD_DRIVERS = \
-	vboxguest
+	vboxguest \
+	vboxms
 
 SOLARIS_ADD_DRIVERS_CONF = \
-	vboxguest.conf
+	vboxguest.conf \
+	vboxms.conf
 
 SOLARIS_ADD_XORG_DRIVERS = \
Index: /trunk/src/VBox/Additions/solaris/Mouse/vboxms.conf
===================================================================
--- /trunk/src/VBox/Additions/solaris/Mouse/vboxms.conf	(revision 42425)
+++ /trunk/src/VBox/Additions/solaris/Mouse/vboxms.conf	(revision 42425)
@@ -0,0 +1,20 @@
+#
+# OpenSolaris Guest Mouse Driver Configuration
+#
+# Copyright (C) 2012 Oracle Corporation
+#
+# This file is part of VirtualBox Open Source Edition (OSE), as
+# available from http://www.virtualbox.org. This file is free software;
+# you can redistribute it and/or modify it under the terms of the GNU
+# General Public License (GPL) as published by the Free Software
+# Foundation, in version 2 as it comes in the "COPYING" file of the
+# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
+# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
+#
+
+# This needs to go into /usr/kernel/drv,
+# while the 64-bit driver object goes into the amd64
+# subdirectory (32-bit drivers goes into the same
+# directory).
+#
+name="vboxms" parent="pseudo" instance=0;
