1 | #!/bin/sh
|
---|
2 | ## @file
|
---|
3 | # Sun xVM VirtualBox
|
---|
4 | # VirtualBox postinstall script for Solaris.
|
---|
5 | #
|
---|
6 |
|
---|
7 | #
|
---|
8 | # Copyright (C) 2007-2008 Sun Microsystems, Inc.
|
---|
9 | #
|
---|
10 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | # available from http://www.virtualbox.org. This file is free software;
|
---|
12 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | # General Public License (GPL) as published by the Free Software
|
---|
14 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | #
|
---|
18 | # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
19 | # Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
20 | # additional information or have any questions.
|
---|
21 | #
|
---|
22 |
|
---|
23 | # Check for xVM/Xen
|
---|
24 | currentisa=`uname -i`
|
---|
25 | if test "$currentisa" = "i86xpv"; then
|
---|
26 | echo "## VirtualBox cannot run under xVM Dom0! Fatal Error, Aborting installation!"
|
---|
27 | exit 2
|
---|
28 | fi
|
---|
29 |
|
---|
30 | currentzone=`zonename`
|
---|
31 | if test "$currentzone" = "global"; then
|
---|
32 | echo "Configuring VirtualBox Host kernel module(s)..."
|
---|
33 | /opt/VirtualBox/vboxdrv.sh stopall silentunload
|
---|
34 | /opt/VirtualBox/vboxdrv.sh start
|
---|
35 | rc=$?
|
---|
36 | if test "$rc" -ne 0; then
|
---|
37 | echo "## Kernel module configuration failed! Aborting installation..."
|
---|
38 | exit 2
|
---|
39 | fi
|
---|
40 |
|
---|
41 | if test -f /platform/i86pc/kernel/drv/vboxflt.conf; then
|
---|
42 | /opt/VirtualBox/vboxdrv.sh fltstart
|
---|
43 | fi
|
---|
44 | fi
|
---|
45 |
|
---|
46 | # create links
|
---|
47 | echo "Creating links..."
|
---|
48 | if test -f /opt/VirtualBox/VirtualBox; then
|
---|
49 | /usr/sbin/installf -c none $PKGINST /usr/bin/VirtualBox=/opt/VirtualBox/VBox.sh s
|
---|
50 | # Qt links
|
---|
51 | /usr/sbin/installf -c none $PKGINST /usr/bin/VBoxQtconfig=/opt/VirtualBox/VBox.sh s
|
---|
52 | fi
|
---|
53 | /usr/sbin/installf -c none $PKGINST /usr/bin/VBoxManage=/opt/VirtualBox/VBox.sh s
|
---|
54 | /usr/sbin/installf -c none $PKGINST /usr/bin/VBoxSDL=/opt/VirtualBox/VBox.sh s
|
---|
55 | if test -f /opt/VirtualBox/VBoxHeadless; then
|
---|
56 | /usr/sbin/installf -c none $PKGINST /usr/bin/VBoxHeadless=/opt/VirtualBox/VBox.sh s
|
---|
57 | if test -f /opt/VirtualBox/VBoxVRDP.so; then
|
---|
58 | /usr/sbin/installf -c none $PKGINST /usr/bin/VBoxVRDP=/opt/VirtualBox/VBox.sh s
|
---|
59 | fi
|
---|
60 | fi
|
---|
61 |
|
---|
62 | if test "$currentzone" = "global"; then
|
---|
63 | if test -f /var/svc/manifest/application/virtualbox/webservice.xml; then
|
---|
64 | /usr/sbin/svccfg import /var/svc/manifest/application/virtualbox/webservice.xml
|
---|
65 | /usr/sbin/svcadm disable -s svc:/application/virtualbox/webservice:default
|
---|
66 | fi
|
---|
67 |
|
---|
68 | # add vboxdrv to the devlink.tab
|
---|
69 | sed -e '
|
---|
70 | /name=vboxdrv/d' /etc/devlink.tab > /etc/devlink.vbox
|
---|
71 | echo "type=ddi_pseudo;name=vboxdrv \D" >> /etc/devlink.vbox
|
---|
72 | mv -f /etc/devlink.vbox /etc/devlink.tab
|
---|
73 |
|
---|
74 | # create the device link
|
---|
75 | /usr/sbin/devfsadm -i vboxdrv
|
---|
76 |
|
---|
77 | # We need to touch the desktop link in order to add it to the menu right away
|
---|
78 | if test -f "/usr/share/applications/virtualbox.desktop"; then
|
---|
79 | touch /usr/share/applications/virtualbox.desktop
|
---|
80 | fi
|
---|
81 | fi
|
---|
82 |
|
---|
83 | /usr/sbin/installf -f $PKGINST
|
---|
84 |
|
---|
85 | echo "Done."
|
---|
86 |
|
---|
87 | # return 20 = requires reboot, 2 = partial failure, 0 = success
|
---|
88 | exit 0
|
---|
89 |
|
---|