1 | #!/bin/sh
|
---|
2 | ## @file
|
---|
3 | # Sun xVM VirtualBox
|
---|
4 | # VirtualBox Solaris package creation script.
|
---|
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 | #
|
---|
24 | # Usage:
|
---|
25 | # makespackage.sh [--hardened] $(PATH_TARGET)/install packagename $(KBUILD_TARGET_ARCH) [VBIPackageName]
|
---|
26 |
|
---|
27 |
|
---|
28 | # Parse options.
|
---|
29 | HARDENED=""
|
---|
30 | while test $# -ge 1;
|
---|
31 | do
|
---|
32 | case "$1" in
|
---|
33 | --hardened)
|
---|
34 | HARDENED=1
|
---|
35 | ;;
|
---|
36 | *)
|
---|
37 | break
|
---|
38 | ;;
|
---|
39 | esac
|
---|
40 | shift
|
---|
41 | done
|
---|
42 |
|
---|
43 | if [ -z "$3" ]; then
|
---|
44 | echo "Usage: $0 installdir packagename x86|amd64"
|
---|
45 | echo "-- packagename must not have any extension (e.g. VirtualBox-SunOS-amd64-r28899)"
|
---|
46 | exit 1
|
---|
47 | fi
|
---|
48 |
|
---|
49 | VBOX_PKGFILE=$2.pkg
|
---|
50 | VBOX_ARCHIVE=$2.tar.gz
|
---|
51 | VBOX_PKGNAME=SUNWvbox
|
---|
52 |
|
---|
53 | VBOX_GGREP=/usr/sfw/bin/ggrep
|
---|
54 | VBOX_AWK=/usr/bin/awk
|
---|
55 | VBOX_GTAR=/usr/sfw/bin/gtar
|
---|
56 |
|
---|
57 | # check for GNU grep we use which might not ship with all Solaris
|
---|
58 | if test ! -f "$VBOX_GGREP" && test ! -h "$VBOX_GGREP"; then
|
---|
59 | echo "## GNU grep not found in $VBOX_GGREP."
|
---|
60 | exit 1
|
---|
61 | fi
|
---|
62 |
|
---|
63 | # check for GNU tar we use which might not ship with all Solaris
|
---|
64 | if test ! -f "$VBOX_GTAR" && test ! -h "$VBOX_GTAR"; then
|
---|
65 | echo "## GNU tar not found in $VBOX_GTAR."
|
---|
66 | exit 1
|
---|
67 | fi
|
---|
68 |
|
---|
69 | # bail out on non-zero exit status
|
---|
70 | set -e
|
---|
71 |
|
---|
72 | # Fixup filelist using awk, the parameters must be in awk syntax
|
---|
73 | # params: filename condition action
|
---|
74 | filelist_fixup()
|
---|
75 | {
|
---|
76 | "$VBOX_AWK" 'NF == 6 && '"$2"' { '"$3"' } { print }' "$1" > "tmp-$1"
|
---|
77 | mv -f "tmp-$1" "$1"
|
---|
78 | }
|
---|
79 |
|
---|
80 | # prepare file list
|
---|
81 | cd "$1"
|
---|
82 | echo 'i pkginfo=./vbox.pkginfo' > prototype
|
---|
83 | echo 'i postinstall=./postinstall.sh' >> prototype
|
---|
84 | echo 'i preremove=./preremove.sh' >> prototype
|
---|
85 | echo 'i space=./vbox.space' >> prototype
|
---|
86 | if test -f "./vbox.copyright"; then
|
---|
87 | echo 'i copyright=./vbox.copyright' >> prototype
|
---|
88 | fi
|
---|
89 | find . -print | $VBOX_GGREP -v -E 'prototype|makepackage.sh|vbox.pkginfo|postinstall.sh|preremove.sh|ReadMe.txt|vbox.space|vbox.copyright|VirtualBoxKern' | pkgproto >> prototype
|
---|
90 |
|
---|
91 | # don't grok for the class files
|
---|
92 | filelist_fixup prototype '$2 == "none"' '$5 = "root"; $6 = "bin"'
|
---|
93 | filelist_fixup prototype '$2 == "none"' '$3 = "opt/VirtualBox/"$3"="$3'
|
---|
94 |
|
---|
95 | # install the kernel module to the right place.
|
---|
96 | if test "$3" = "x86"; then
|
---|
97 | filelist_fixup prototype '$3 == "opt/VirtualBox/vboxdrv=vboxdrv"' '$3 = "platform/i86pc/kernel/drv/vboxdrv=vboxdrv"; $6 = "sys"'
|
---|
98 | else
|
---|
99 | filelist_fixup prototype '$3 == "opt/VirtualBox/vboxdrv=vboxdrv"' '$3 = "platform/i86pc/kernel/drv/amd64/vboxdrv=vboxdrv"; $6 = "sys"'
|
---|
100 | fi
|
---|
101 |
|
---|
102 | # install vboxflt to the right place.
|
---|
103 | if test "$3" = "x86"; then
|
---|
104 | filelist_fixup prototype '$3 == "opt/VirtualBox/vboxflt=vboxflt"' '$3 = "platform/i86pc/kernel/drv/vboxflt=vboxflt"; $6 = "sys"'
|
---|
105 | else
|
---|
106 | filelist_fixup prototype '$3 == "opt/VirtualBox/vboxflt=vboxflt"' '$3 = "platform/i86pc/kernel/drv/amd64/vboxflt=vboxflt"; $6 = "sys"'
|
---|
107 | fi
|
---|
108 |
|
---|
109 | filelist_fixup prototype '$3 == "opt/VirtualBox/vboxdrv.conf=vboxdrv.conf"' '$3 = "platform/i86pc/kernel/drv/vboxdrv.conf=vboxdrv.conf"'
|
---|
110 |
|
---|
111 | filelist_fixup prototype '$3 == "opt/VirtualBox/vboxflt.conf=vboxflt.conf"' '$3 = "platform/i86pc/kernel/drv/vboxflt.conf=vboxflt.conf"'
|
---|
112 |
|
---|
113 | # hardening requires some executables to be marked setuid.
|
---|
114 | if test -n "$HARDENED"; then
|
---|
115 | $VBOX_AWK 'NF == 6 \
|
---|
116 | && ( $3 == "opt/VirtualBox/VirtualBox=VirtualBox" \
|
---|
117 | || $3 == "opt/VirtualBox/VirtualBox3=VirtualBox3" \
|
---|
118 | || $3 == "opt/VirtualBox/VBoxHeadless=VBoxHeadless" \
|
---|
119 | || $3 == "opt/VirtualBox/VBoxSDL=VBoxSDL" \
|
---|
120 | || $3 == "opt/VirtualBox/VBoxBFE=VBoxBFE" \
|
---|
121 | ) \
|
---|
122 | { $4 = "4755" } { print }' prototype > prototype2
|
---|
123 | mv -f prototype2 prototype
|
---|
124 | fi
|
---|
125 |
|
---|
126 | # desktop links and icons
|
---|
127 | filelist_fixup prototype '$3 == "opt/VirtualBox/virtualbox.desktop=virtualbox.desktop"' '$3 = "usr/share/applications/virtualbox.desktop=virtualbox.desktop"'
|
---|
128 | filelist_fixup prototype '$3 == "opt/VirtualBox/VBox.png=VBox.png"' '$3 = "usr/share/pixmaps/VBox.png=VBox.png"'
|
---|
129 |
|
---|
130 | # webservice SMF manifest
|
---|
131 | filelist_fixup prototype '$3 == "opt/VirtualBox/virtualbox-webservice.xml=virtualbox-webservice.xml"' '$3 = "var/svc/manifest/application/virtualbox/webservice.xml=virtualbox-webservice.xml"'
|
---|
132 |
|
---|
133 | # webservice SMF start/stop script
|
---|
134 | filelist_fixup prototype '$3 == "opt/VirtualBox/smf-vboxwebsrv.sh=smf-vboxwebsrv.sh"' '$3 = "opt/VirtualBox/smf-vboxwebsrv=smf-vboxwebsrv.sh"'
|
---|
135 | echo " --- start of prototype ---"
|
---|
136 | cat prototype
|
---|
137 | echo " --- end of prototype --- "
|
---|
138 |
|
---|
139 | # explicitly set timestamp to shutup warning
|
---|
140 | VBOXPKG_TIMESTAMP=vbox`date '+%Y%m%d%H%M%S'`
|
---|
141 |
|
---|
142 | # create the package instance
|
---|
143 | pkgmk -p $VBOXPKG_TIMESTAMP -o -r .
|
---|
144 |
|
---|
145 | # translate into package datastream
|
---|
146 | pkgtrans -s -o /var/spool/pkg "`pwd`/$VBOX_PKGFILE" "$VBOX_PKGNAME"
|
---|
147 |
|
---|
148 | # $4 if exist would contain the path to the VBI package to include in the .tar.gz
|
---|
149 | if test -f "$4"; then
|
---|
150 | $VBOX_GTAR zcvf "$VBOX_ARCHIVE" "$VBOX_PKGFILE" "$4" autoresponse ReadMe.txt
|
---|
151 | else
|
---|
152 | $VBOX_GTAR zcvf "$VBOX_ARCHIVE" "$VBOX_PKGFILE" autoresponse ReadMe.txt
|
---|
153 | fi
|
---|
154 |
|
---|
155 | echo "## Packaging and transfer completed successfully!"
|
---|
156 | rm -rf "/var/spool/pkg/$VBOX_PKGNAME"
|
---|
157 |
|
---|
158 | exit $?
|
---|
159 |
|
---|