Changeset 7870 in vbox for trunk/src/VBox/Additions/solaris/Installer
- Timestamp:
- Apr 10, 2008 2:26:08 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29491
- Location:
- trunk/src/VBox/Additions/solaris/Installer
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/solaris/Installer/makepackage.sh
r7404 r7870 25 25 echo 'i postinstall=./postinstall.sh' >> prototype 26 26 echo 'i preremove=./preremove.sh' >> prototype 27 echo 'e sed /etc/devlink.tab ? ? ?' >> prototype 27 28 find . -print | /usr/sfw/bin/ggrep -v -E 'prototype|makepackage.sh|vboxguest.pkginfo|postinstall.sh|preremove.sh' | pkgproto >> prototype 28 29 29 /usr/bin/awk 'NF == 6 { $5 = "root"; $6 = "bin" } { print }' prototype > prototype230 /usr/bin/awk 'NF == 6 { $3 = "opt/VirtualBoxAdditions/"$3"="$3 } { print }' prototype2 > prototype30 /usr/bin/awk 'NF == 6 && $2 == "none" { $5 = "root"; $6 = "bin" } { print }' prototype > prototype2 31 /usr/bin/awk 'NF == 6 && $2 == "none" { $3 = "opt/VirtualBoxAdditions/"$3"="$3 } { print }' prototype2 > prototype 31 32 32 33 # install the kernel module to the right place (for now only 32-bit guests) -
trunk/src/VBox/Additions/solaris/Installer/postinstall.sh
r7771 r7870 29 29 # create links 30 30 echo "Creating links..." 31 /usr/sbin/installf -c none $PKGINST /dev/vboxguest=../devices/pci@0,0/pci80ee,cafe@4:vboxguest s31 #/usr/sbin/installf -c none $PKGINST /dev/vboxguest=../devices/pci@0,0/pci80ee,cafe@4:vboxguest s 32 32 /usr/sbin/installf -c none $PKGINST /usr/bin/VBoxClient=$vboxadditions_path/VBoxClient s 33 33 /usr/sbin/installf -c none $PKGINST /usr/bin/VBoxService=$vboxadditions_path/VBoxService s … … 81 81 rm -f $vboxadditions_path/vboxvideo_drv_* 82 82 /usr/sbin/removef -f $PKGINST 83 83 84 84 # Some distros like Indiana have no xorg.conf, deal with this 85 85 if ! (test -f '/etc/X11/xorg.conf' -o -f '/etc/X11/.xorg.conf'); then … … 91 91 fi 92 92 93 # Remove redundant files 94 #/usr/sbin/removef $PKGINST $vboxadditions_path/etc/devlink.tab 1>/dev/null 95 #/usr/sbin/removef $PKGINST $vboxadditions_path/etc 1>/dev/null 96 #rm -rf $vboxadditions_path/etc 97 #/usr/sbin/removef -f $PKGINST 98 93 99 /usr/sbin/installf -f $PKGINST 100 101 #/usr/sbin/devlinks 94 102 95 103 # Setup our VBoxService SMF service -
trunk/src/VBox/Additions/solaris/Installer/preremove.sh
r7404 r7870 24 24 /opt/VirtualBoxAdditions/vboxguest.sh stop 25 25 26 # clean up link 27 rm -f /dev/vboxguest 28 26 29 echo "Done." 27 30 -
trunk/src/VBox/Additions/solaris/Installer/vboxguest.pkginfo
r7486 r7870 7 7 EMAIL="[email protected]" 8 8 BASEDIR="/" 9 CLASSES= "none"9 CLASSES=none sed 10 10 DESC="VirtualBox Guest Additions for Solaris guests." 11 11
Note:
See TracChangeset
for help on using the changeset viewer.