VirtualBox

source: vbox/trunk/src/VBox/Installer/solaris/makepackage.sh@ 16469

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

Solaris/Installer: zone fixes for #3381 (combined package).

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