VirtualBox

source: vbox/trunk/src/VBox/Additions/solaris/Installer/postinstall.sh@ 17698

Last change on this file since 17698 was 17698, checked in by vboxsync, 16 years ago

Solaris/Additions: fix resizing issue with Xorg 1.3.x.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
File size: 11.3 KB
Line 
1#!/bin/sh
2# Sun xVM VirtualBox
3# VirtualBox postinstall script for Solaris.
4#
5# Copyright (C) 2008 Sun Microsystems, Inc.
6#
7# This file is part of VirtualBox Open Source Edition (OSE), as
8# available from http://www.virtualbox.org. This file is free software;
9# you can redistribute it and/or modify it under the terms of the GNU
10# General Public License (GPL) as published by the Free Software
11# Foundation, in version 2 as it comes in the "COPYING" file of the
12# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14#
15# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
16# Clara, CA 95054 USA or visit http://www.sun.com if you need
17# additional information or have any questions.
18#
19
20uncompress_files()
21{
22 # Remove compressed names from the pkg
23 /usr/sbin/removef $PKGINST "$1/VBoxClient.Z" 1>/dev/null
24 /usr/sbin/removef $PKGINST "$1/VBoxService.Z" 1>/dev/null
25 /usr/sbin/removef $PKGINST "$1/VBoxControl.Z" 1>/dev/null
26 /usr/sbin/removef $PKGINST "$1/vboxvideo_drv_13.so.Z" 1>/dev/null
27 /usr/sbin/removef $PKGINST "$1/vboxvideo_drv_14.so.Z" 1>/dev/null
28 /usr/sbin/removef $PKGINST "$1/vboxvideo_drv_15.so.Z" 1>/dev/null
29 /usr/sbin/removef $PKGINST "$1/vboxvideo_drv_16.so.Z" 1>/dev/null
30 /usr/sbin/removef $PKGINST "$1/vboxvideo_drv_71.so.Z" 1>/dev/null
31 /usr/sbin/removef $PKGINST "$1/vboxmouse_drv_14.so.Z" 1>/dev/null
32 /usr/sbin/removef $PKGINST "$1/vboxmouse_drv_15.so.Z" 1>/dev/null
33 /usr/sbin/removef $PKGINST "$1/vboxmouse_drv_16.so.Z" 1>/dev/null
34 /usr/sbin/removef $PKGINST "$1/vboxmouse_drv_70.so.Z" 1>/dev/null
35 /usr/sbin/removef $PKGINST "$1/vboxmouse_drv_71.so.Z" 1>/dev/null
36
37 # Add uncompressed names to the pkg
38 /usr/sbin/installf -c none $PKGINST "$1/VBoxClient" f
39 /usr/sbin/installf -c none $PKGINST "$1/VBoxService" f
40 /usr/sbin/installf -c none $PKGINST "$1/VBoxControl" f
41 /usr/sbin/installf -c none $PKGINST "$1/vboxvideo_drv_13.so" f
42 /usr/sbin/installf -c none $PKGINST "$1/vboxvideo_drv_14.so" f
43 /usr/sbin/installf -c none $PKGINST "$1/vboxvideo_drv_15.so" f
44 /usr/sbin/installf -c none $PKGINST "$1/vboxvideo_drv_16.so" f
45 /usr/sbin/installf -c none $PKGINST "$1/vboxvideo_drv_71.so" f
46 /usr/sbin/installf -c none $PKGINST "$1/vboxmouse_drv_14.so" f
47 /usr/sbin/installf -c none $PKGINST "$1/vboxmouse_drv_15.so" f
48 /usr/sbin/installf -c none $PKGINST "$1/vboxmouse_drv_16.so" f
49 /usr/sbin/installf -c none $PKGINST "$1/vboxmouse_drv_70.so" f
50 /usr/sbin/installf -c none $PKGINST "$1/vboxmouse_drv_71.so" f
51
52 # Overwrite compressed with uncompressed file
53 uncompress -f "$1/VBoxClient.Z" > /dev/null 2>&1
54 uncompress -f "$1/VBoxService.Z" > /dev/null 2>&1
55 uncompress -f "$1/VBoxControl.Z" > /dev/null 2>&1
56 uncompress -f "$1/vboxvideo_drv_13.so.Z" > /dev/null 2>&1
57 uncompress -f "$1/vboxvideo_drv_14.so.Z" > /dev/null 2>&1
58 uncompress -f "$1/vboxvideo_drv_15.so.Z" > /dev/null 2>&1
59 uncompress -f "$1/vboxvideo_drv_16.so.Z" > /dev/null 2>&1
60 uncompress -f "$1/vboxvideo_drv_71.so.Z" > /dev/null 2>&1
61 uncompress -f "$1/vboxmouse_drv_14.so.Z" > /dev/null 2>&1
62 uncompress -f "$1/vboxmouse_drv_15.so.Z" > /dev/null 2>&1
63 uncompress -f "$1/vboxmouse_drv_16.so.Z" > /dev/null 2>&1
64 uncompress -f "$1/vboxmouse_drv_70.so.Z" > /dev/null 2>&1
65 uncompress -f "$1/vboxmouse_drv_71.so.Z" > /dev/null 2>&1
66}
67
68solaris64dir="amd64"
69vboxadditions_path="/opt/VirtualBoxAdditions"
70vboxadditions64_path=$vboxadditions_path/$solaris64dir
71
72# get what ISA the guest is running
73cputype=`isainfo -k`
74if test "$cputype" = "amd64"; then
75 isadir=$solaris64dir
76else
77 isadir=""
78fi
79vboxadditionsisa_path=$vboxadditions_path/$isadir
80
81
82# uncompress if necessary
83if test -f "$vboxadditions_path/VBoxClient.Z" || test -f "$vboxadditions64_path/VBoxClient.Z"; then
84 echo "Uncompressing files..."
85 if test -f "$vboxadditions_path/VBoxClient.Z"; then
86 uncompress_files "$vboxadditions_path"
87 fi
88 if test -f "$vboxadditions64_path/VBoxClient.Z"; then
89 uncompress_files "$vboxadditions64_path"
90 fi
91fi
92
93# vboxguest.sh would've been installed, we just need to call it.
94echo "Configuring VirtualBox guest kernel module..."
95$vboxadditions_path/vboxguest.sh restartall silentunload
96
97sed -e '
98/name=vboxguest/d' /etc/devlink.tab > /etc/devlink.vbox
99echo "type=ddi_pseudo;name=vboxguest \D" >> /etc/devlink.vbox
100mv -f /etc/devlink.vbox /etc/devlink.tab
101
102# create the device link
103/usr/sbin/devfsadm -i vboxguest
104sync
105
106# create links
107echo "Creating links..."
108/usr/sbin/installf -c none $PKGINST /dev/vboxguest=../devices/pci@0,0/pci80ee,cafe@4:vboxguest s
109/usr/sbin/installf -c none $PKGINST /usr/bin/VBoxClient=$vboxadditions_path/VBox.sh s
110/usr/sbin/installf -c none $PKGINST /usr/bin/VBoxService=$vboxadditions_path/VBox.sh s
111/usr/sbin/installf -c none $PKGINST /usr/bin/VBoxControl=$vboxadditions_path/VBox.sh s
112/usr/sbin/installf -c none $PKGINST /usr/bin/VBoxRandR=$vboxadditions_path/VBoxRandR.sh s
113
114# Install Xorg components to the required places
115xorgversion_long=`/usr/X11/bin/Xorg -version 2>&1 | grep "X Window System Version"`
116xorgversion=`/usr/bin/expr "${xorgversion_long}" : 'X Window System Version \([^ ]*\)'`
117if test -z "$xorgversion_long"; then
118 xorgversion_long=`/usr/X11/bin/Xorg -version 2>&1 | grep "X.Org X Server"`
119 xorgversion=`/usr/bin/expr "${xorgversion_long}" : 'X.Org X Server \([^ ]*\)'`
120fi
121
122vboxmouse_src=""
123vboxvideo_src=""
124
125case "$xorgversion" in
126 1.3.* )
127 vboxmouse_src="vboxmouse_drv_71.so"
128 vboxvideo_src="vboxvideo_drv_13.so"
129 ;;
130 1.4.* )
131 vboxmouse_src="vboxmouse_drv_14.so"
132 vboxvideo_src="vboxvideo_drv_14.so"
133 ;;
134 1.5.99 | 1.6.* )
135 vboxmouse_src="vboxmouse_drv_16.so"
136 vboxvideo_src="vboxvideo_drv_16.so"
137 ;;
138 1.5.* )
139 vboxmouse_src="vboxmouse_drv_15.so"
140 vboxvideo_src="vboxvideo_drv_15.so"
141 ;;
142 7.1.* | *7.2.* )
143 vboxmouse_src="vboxmouse_drv_71.so"
144 vboxvideo_src="vboxvideo_drv_71.so"
145 ;;
146 6.9.* | 7.0.* )
147 vboxmouse_src="vboxmouse_drv_70.so"
148 vboxvideo_src="vboxvideo_drv_70.so"
149 ;;
150esac
151
152retval=0
153if test -z "$vboxmouse_src"; then
154 echo "*** Unknown version of the X Window System installed."
155 echo "*** Failed to install the VirtualBox X Window System drivers."
156
157 # Exit as partially failed installation
158 retval=2
159else
160 echo "Configuring Xorg..."
161
162 # 32-bit x11 drivers
163 if test -f "$vboxadditions_path/$vboxmouse_src"; then
164 vboxmouse_dest="/usr/X11/lib/modules/input/vboxmouse_drv.so"
165 vboxvideo_dest="/usr/X11/lib/modules/drivers/vboxvideo_drv.so"
166 /usr/sbin/installf -c none $PKGINST "$vboxmouse_dest" f
167 /usr/sbin/installf -c none $PKGINST "$vboxvideo_dest" f
168 cp "$vboxadditions_path/$vboxmouse_src" "$vboxmouse_dest"
169 cp "$vboxadditions_path/$vboxvideo_src" "$vboxvideo_dest"
170
171 # Removing redundent names from pkg and files from disk
172 /usr/sbin/removef $PKGINST $vboxadditions_path/vboxmouse_drv_* 1>/dev/null
173 /usr/sbin/removef $PKGINST $vboxadditions_path/vboxvideo_drv_* 1>/dev/null
174 rm -f $vboxadditions_path/vboxmouse_drv_*
175 rm -f $vboxadditions_path/vboxvideo_drv_*
176 fi
177
178 # 64-bit x11 drivers
179 if test -f "$vboxadditions64_path/$vboxmouse_src"; then
180 vboxmouse_dest="/usr/X11/lib/modules/input/$solaris64dir/vboxmouse_drv.so"
181 vboxvideo_dest="/usr/X11/lib/modules/drivers/$solaris64dir/vboxvideo_drv.so"
182 /usr/sbin/installf -c none $PKGINST "$vboxmouse_dest" f
183 /usr/sbin/installf -c none $PKGINST "$vboxvideo_dest" f
184 cp "$vboxadditions64_path/$vboxmouse_src" "$vboxmouse_dest"
185 cp "$vboxadditions64_path/$vboxvideo_src" "$vboxvideo_dest"
186
187 # Removing redundent names from pkg and files from disk
188 /usr/sbin/removef $PKGINST $vboxadditions64_path/vboxmouse_drv_* 1>/dev/null
189 /usr/sbin/removef $PKGINST $vboxadditions64_path/vboxvideo_drv_* 1>/dev/null
190 rm -f $vboxadditions64_path/vboxmouse_drv_*
191 rm -f $vboxadditions64_path/vboxvideo_drv_*
192 fi
193
194 # Some distros like Indiana have no xorg.conf, deal with this
195 if test ! -f '/etc/X11/xorg.conf' && test ! -f '/etc/X11/.xorg.conf'; then
196
197 # Xorg 1.3.x+ should use the modeline less Xorg confs while older should
198 # use ones with all the video modelines in place. Argh.
199 xorgconf_file="solaris_xorg_modeless.conf"
200 xorgconf_unfit="solaris_xorg.conf"
201 case "$xorgversion" in
202 7.1.* | 7.2.* | 6.9.* | 7.0.* )
203 xorgconf_file="solaris_xorg.conf"
204 xorgconf_unfit="solaris_xorg_modeless.conf"
205 ;;
206 esac
207
208 /usr/sbin/removef $PKGINST $vboxadditions_path/$xorgconf_file 1>/dev/null
209 mv -f $vboxadditions_path/$xorgconf_file /etc/X11/.xorg.conf
210
211 /usr/sbin/removef $PKGINST $vboxadditions_path/$xorgconf_unfit 1>/dev/null
212 rm -f $vboxadditions_path/$xorgconf_unfit
213 fi
214
215 $vboxadditions_path/x11config.pl
216fi
217
218
219# Setup our VBoxClient
220echo "Configuring client..."
221vboxclient_src=$vboxadditions_path
222vboxclient_dest="/usr/dt/config/Xsession.d"
223if test -d "$vboxclient_dest"; then
224 /usr/sbin/installf -c none $PKGINST "$vboxclient_dest/1099.vboxclient" f
225 cp "$vboxclient_src/1099.vboxclient" "$vboxclient_dest/1099.vboxclient"
226 chmod a+rx "$vboxclient_dest/1099.vboxclient"
227elif test -d "/usr/share/gnome/autostart"; then
228 vboxclient_dest="/usr/share/gnome/autostart"
229 /usr/sbin/installf -c none $PKGINST "$vboxclient_dest/vboxclient.desktop" f
230 cp "$vboxclient_src/vboxclient.desktop" "$vboxclient_dest/vboxclient.desktop"
231else
232 echo "*** Failed to configure client!! Couldn't find autostart directory."
233 retval=2
234fi
235
236# Shared Folder kernel module (different for S10 & Nevada)
237osverstr=`uname -r`
238vboxfsmod="vboxfs"
239vboxfsunused="vboxfs_s10"
240if test "$osverstr" = "5.10"; then
241 vboxfsmod="vboxfs_s10"
242 vboxfsunused="vboxfs"
243fi
244
245# Move the appropriate module to kernel/fs & remove the unused module name from pkg and file from disk
246# 64-bit shared folder module
247if test -f "$vboxadditions64_path/$vboxfsmod"; then
248 /usr/sbin/installf -c none $PKGINST "/usr/kernel/fs/$solaris64dir/vboxfs" f
249 mv -f $vboxadditions64_path/$vboxfsmod /usr/kernel/fs/$solaris64dir/vboxfs
250 /usr/sbin/removef $PKGINST $vboxadditions64_path/$vboxfsmod 1>/dev/null
251 /usr/sbin/removef $PKGINST $vboxadditions64_path/$vboxfsunused 1>/dev/null
252 rm -f $vboxadditions64_path/$vboxfsunused
253fi
254
255# 32-bit shared folder module
256if test -f "$vboxadditions_path/$vboxfsmod"; then
257 /usr/sbin/installf -c none $PKGINST "/usr/kernel/fs/vboxfs" f
258 mv -f $vboxadditions_path/$vboxfsmod /usr/kernel/fs/vboxfs
259 /usr/sbin/removef $PKGINST $vboxadditions_path/$vboxfsmod 1>/dev/null
260 /usr/sbin/removef $PKGINST $vboxadditions_path/$vboxfsunused 1>/dev/null
261 rm -f $vboxadditions_path/$vboxfsunused
262fi
263
264
265# Finalize
266/usr/sbin/removef -f $PKGINST
267/usr/sbin/installf -f $PKGINST
268
269
270# Setup our VBoxService SMF service
271echo "Configuring service..."
272
273/usr/sbin/svccfg import /var/svc/manifest/system/virtualbox/vboxservice.xml
274/usr/sbin/svcadm enable svc:/system/virtualbox/vboxservice
275
276/usr/sbin/devfsadm -i vboxguest
277
278echo "Done."
279if test $retval -eq 0; then
280 echo "Please re-login to activate the X11 guest additions."
281 echo "If you have just un-installed the previous guest additions a REBOOT is required."
282fi
283exit $retval
284
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette