Changeset 8867 in vbox for trunk/src/VBox/Installer
- Timestamp:
- May 16, 2008 4:50:01 AM (17 years ago)
- Location:
- trunk/src/VBox/Installer/solaris
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/Makefile.kmk
r8760 r8867 49 49 solaris-doc_MODE = a+r,u+w 50 50 solaris-doc_SOURCES = \ 51 $(if $(VBOX_OSE),,$(PATH_ROOT)/doc/License.txt=>LICENSE) 51 $(if $(VBOX_OSE),,$(PATH_ROOT)/doc/License.txt=>LICENSE) \ 52 $(PATH_ROOT)/src/VBox/Frontends/VirtualBox/images/$(if $(VBOX_OSE),OSE,NonOSE)/VirtualBox_64px.png=>VBox.png 52 53 53 54 # … … 107 108 $(if $(VBOX_WITH_QTGUI),qtgcc/lib/libqt-mt.so.3,) \ 108 109 $(if $(VBOX_WITH_QTGUI),qtgcc/bin/qtconfig,) \ 110 $(if $(VBOX_WITH_QTGUI),virtualbox.desktop,) \ 111 VBox.png \ 109 112 autoresponse \ 110 113 vboxdrv.conf \ … … 181 184 vboxdevlink.sed \ 182 185 VBox.sh \ 186 virtualbox.desktop \ 183 187 sdkfiles \ 184 188 $(PATH_ROOT)/doc/ReadMe-Solaris.txt \ … … 280 284 $(QUIET)$(INSTALL) -m 0755 $(PATH_CURRENT)/vboxdrv.sh $(SOLARIS_INST_DIR)/vboxdrv.sh 281 285 $(QUIET)$(INSTALL) -m 0755 $(PATH_CURRENT)/VBox.sh $(SOLARIS_INST_DIR)/VBox.sh 286 $(QUIET)$(if $(VBOX_WITH_QTGUI),$(INSTALL) -m 0644 $(PATH_CURRENT)/virtualbox.desktop $(SOLARIS_INST_DIR)/virtualbox.desktop,) 287 $(QUIET)$(INSTALL) -m 0644 $(PATH_BIN)/VBox.png $(SOLARIS_INST_DIR)/VBox.png 282 288 $(QUIET)$(INSTALL) -m 0755 $(PATH_CURRENT)/postinstall.sh $(SOLARIS_INST_DIR)/postinstall.sh 283 289 $(QUIET)$(INSTALL) -m 0755 $(PATH_CURRENT)/preremove.sh $(SOLARIS_INST_DIR)/preremove.sh -
trunk/src/VBox/Installer/solaris/makepackage.sh
r8320 r8867 73 73 $VBOX_AWK 'NF == 6 && $3 == "opt/VirtualBox/vboxdrv.conf=vboxdrv.conf" { $3 = "platform/i86pc/kernel/drv/vboxdrv.conf=vboxdrv.conf" } { print }' prototype2 > prototype 74 74 75 # desktop links and icons 76 $VBOX_AWK 'NF == 6 && $3 == "opt/VirtualBox/virtualbox.desktop=virtualbox.desktop" { $3 = "usr/share/applications/virtualbox.desktop=virtualbox.desktop" } { print }' prototype > prototype2 77 $VBOX_AWK 'NF == 6 && $3 == "opt/VirtualBox/VBox.png=VBox.png" { $3 = "usr/share/pixmaps/VBox.png=VBox.png" } { print }' prototype2 > prototype 78 79 75 80 rm prototype2 76 81 -
trunk/src/VBox/Installer/solaris/postinstall.sh
r8526 r8867 49 49 /usr/sbin/installf -f $PKGINST 50 50 51 # We need to touch the desktop link inorder to add it to the menu right away 52 if test -f /usr/share/applications/virtualbox.desktop; then 53 touch /usr/share/applications/virtualbox.desktop 54 fi 55 56 # create /dev link for vboxdrv (only possible from global zone) 51 57 if test "$currentzone" = "global"; then 52 58 /usr/sbin/devfsadm -i vboxdrv -
trunk/src/VBox/Installer/solaris/vboxdrv.sh
r8526 r8867 76 76 abort "## Failed to load VirtualBox kernel module." 77 77 elif test -c "/devices/pseudo/$MODNAME@0:$MODNAME"; then 78 info "VirtualBox kernel module successfullyloaded."78 info "VirtualBox kernel module loaded." 79 79 else 80 80 abort "Aborting due to attach failure."
Note:
See TracChangeset
for help on using the changeset viewer.