VirtualBox

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

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

Solaris/installer: Zone fixes - eliminated devlink.tab and webservice to load only in the global zone. Link creation is now done manually during postinstall.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 5.9 KB
Line 
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.
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 "$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
47fi
48
49VBOX_PKGFILE=$2.pkg
50VBOX_ARCHIVE=$2.tar.gz
51VBOX_PKGNAME=SUNWvbox
52
53VBOX_GGREP=/usr/sfw/bin/ggrep
54VBOX_AWK=/usr/bin/awk
55VBOX_GTAR=/usr/sfw/bin/gtar
56
57# check for GNU grep we use which might not ship with all Solaris
58if test ! -f "$VBOX_GGREP" && test ! -h "$VBOX_GGREP"; then
59 echo "## GNU grep not found in $VBOX_GGREP."
60 exit 1
61fi
62
63# check for GNU tar we use which might not ship with all Solaris
64if test ! -f "$VBOX_GTAR" && test ! -h "$VBOX_GTAR"; then
65 echo "## GNU tar not found in $VBOX_GTAR."
66 exit 1
67fi
68
69# bail out on non-zero exit status
70set -e
71
72# Fixup filelist using awk, the parameters must be in awk syntax
73# params: filename condition action
74filelist_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
81cd "$1"
82echo 'i pkginfo=./vbox.pkginfo' > prototype
83echo 'i postinstall=./postinstall.sh' >> prototype
84echo 'i preremove=./preremove.sh' >> prototype
85echo 'i space=./vbox.space' >> prototype
86if test -f "./vbox.copyright"; then
87 echo 'i copyright=./vbox.copyright' >> prototype
88fi
89find . -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
92filelist_fixup prototype '$2 == "none"' '$5 = "root"; $6 = "bin"'
93filelist_fixup prototype '$2 == "none"' '$3 = "opt/VirtualBox/"$3"="$3'
94
95# install the kernel module to the right place.
96if test "$3" = "x86"; then
97 filelist_fixup prototype '$3 == "opt/VirtualBox/vboxdrv=vboxdrv"' '$3 = "platform/i86pc/kernel/drv/vboxdrv=vboxdrv"; $6 = "sys"'
98else
99 filelist_fixup prototype '$3 == "opt/VirtualBox/vboxdrv=vboxdrv"' '$3 = "platform/i86pc/kernel/drv/amd64/vboxdrv=vboxdrv"; $6 = "sys"'
100fi
101
102# install vboxflt to the right place.
103if test "$3" = "x86"; then
104 filelist_fixup prototype '$3 == "opt/VirtualBox/vboxflt=vboxflt"' '$3 = "platform/i86pc/kernel/drv/vboxflt=vboxflt"; $6 = "sys"'
105else
106 filelist_fixup prototype '$3 == "opt/VirtualBox/vboxflt=vboxflt"' '$3 = "platform/i86pc/kernel/drv/amd64/vboxflt=vboxflt"; $6 = "sys"'
107fi
108
109filelist_fixup prototype '$3 == "opt/VirtualBox/vboxdrv.conf=vboxdrv.conf"' '$3 = "platform/i86pc/kernel/drv/vboxdrv.conf=vboxdrv.conf"'
110
111filelist_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.
114if 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
124fi
125
126# desktop links and icons
127filelist_fixup prototype '$3 == "opt/VirtualBox/virtualbox.desktop=virtualbox.desktop"' '$3 = "usr/share/applications/virtualbox.desktop=virtualbox.desktop"'
128filelist_fixup prototype '$3 == "opt/VirtualBox/VBox.png=VBox.png"' '$3 = "usr/share/pixmaps/VBox.png=VBox.png"'
129
130# webservice SMF manifest
131filelist_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
134filelist_fixup prototype '$3 == "opt/VirtualBox/smf-vboxwebsrv.sh=smf-vboxwebsrv.sh"' '$3 = "opt/VirtualBox/smf-vboxwebsrv=smf-vboxwebsrv.sh"'
135echo " --- start of prototype ---"
136cat prototype
137echo " --- end of prototype --- "
138
139# explicitly set timestamp to shutup warning
140VBOXPKG_TIMESTAMP=vbox`date '+%Y%m%d%H%M%S'`
141
142# create the package instance
143pkgmk -p $VBOXPKG_TIMESTAMP -o -r .
144
145# translate into package datastream
146pkgtrans -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
149if test -f "$4"; then
150 $VBOX_GTAR zcvf "$VBOX_ARCHIVE" "$VBOX_PKGFILE" "$4" autoresponse ReadMe.txt
151else
152 $VBOX_GTAR zcvf "$VBOX_ARCHIVE" "$VBOX_PKGFILE" autoresponse ReadMe.txt
153fi
154
155echo "## Packaging and transfer completed successfully!"
156rm -rf "/var/spool/pkg/$VBOX_PKGNAME"
157
158exit $?
159
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