Changeset 7950 in vbox
- Timestamp:
- Apr 14, 2008 1:22:19 PM (17 years ago)
- Location:
- trunk/src/VBox/Additions/solaris
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/solaris/Installer/makepackage.sh
r7870 r7950 36 36 37 37 # install the vboxclient daemon 38 /usr/bin/awk 'NF == 6 && $3 == "opt/VirtualBoxAdditions/1099.vboxclient=1099.vboxclient" { $3 = "usr/dt/config/Xsession.d/1099.vboxclient=1099.vboxclient" } { print }' prototype > prototype238 #/usr/bin/awk 'NF == 6 && $3 == "opt/VirtualBoxAdditions/1099.vboxclient=1099.vboxclient" { $3 = "usr/dt/config/Xsession.d/1099.vboxclient=1099.vboxclient" } { print }' prototype > prototype2 39 39 40 40 #install the timesync daemon -
trunk/src/VBox/Additions/solaris/Installer/postinstall.sh
r7906 r7950 62 62 retval=0 63 63 if test -z "$vboxmouse_src"; then 64 echo " Unknown version of the X Window System installed."65 echo " Failed to install the VirtualBox X Window System drivers."64 echo "*** Unknown version of the X Window System installed." 65 echo "*** Failed to install the VirtualBox X Window System drivers." 66 66 67 67 # Exit as partially failed installation … … 92 92 fi 93 93 94 95 # Setup our VBoxClient 96 echo "Configuring client..." 97 vboxclient_src=$vboxadditions_path 98 vboxclient_dest="/usr/dt/config/Xsession.d" 99 if test -d "$vboxclient_dest"; then 100 /usr/sbin/installf -c none $PKGINST "$vboxclient_dest/1099.vboxclient" f 101 cp "$vboxclient_src/1099.vboxclient" "$vboxclient_dest/1099.vboxclient" 102 elif test -d "/usr/share/gnome/autostart"; then 103 vboxclient_dest="/usr/share/gnome/autostart" 104 /usr/sbin/installf -c none $PKGINST "$vboxclient_dest/vboxclient.desktop" f 105 cp "$vboxclient_src/vboxclient.desktop" "$vboxclient_dest/vboxclient.desktop" 106 else 107 echo "*** Failed to configure client!! Couldn't find autostart directory." 108 retval=2 109 fi 110 111 94 112 # Remove redundant files 95 113 /usr/sbin/removef $PKGINST $vboxadditions_path/etc/devlink.tab 1>/dev/null … … 99 117 100 118 /usr/sbin/installf -f $PKGINST 119 101 120 102 121 # Setup our VBoxService SMF service -
trunk/src/VBox/Additions/solaris/Makefile.kmk
r7930 r7950 84 84 $(QUIET)$(INSTALL) -m 0755 $(VBOX_PATH_SOLARIS_ADDITION_INSTALLER)/vboxguest.sh $(SOLARISINSTDIR)/vboxguest.sh 85 85 $(QUIET)$(INSTALL) -m 0644 $(VBOX_PATH_SOLARIS_ADDITION_INSTALLER)/vboxservice.xml $(SOLARISINSTDIR)/vboxservice.xml 86 $(QUIET)$(INSTALL) -m 0644 $(VBOX_PATH_SOLARIS_ADDITION_INSTALLER)/vboxclient.desktop $(SOLARISINSTDIR)/vboxclient.desktop 86 87 $(QUIET)$(INSTALL) -m 0755 $(VBOX_PATH_X11_ADDITION_INSTALLER)/98vboxadd-xclient $(SOLARISINSTDIR)/1099.vboxclient 87 88 $(QUIET)$(INSTALL) -m 0755 $(VBOX_PATH_X11_ADDITION_INSTALLER)/x11config.pl $(SOLARISINSTDIR)/x11config.pl
Note:
See TracChangeset
for help on using the changeset viewer.