VirtualBox

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

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

#3076: Merged in the branch with the alternate driver authentication method. (34468:HEAD)

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 5.4 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
89echo 'e sed /etc/devlink.tab ? ? ?' >> prototype
90find . -print | $VBOX_GGREP -v -E 'prototype|makepackage.sh|vbox.pkginfo|postinstall.sh|preremove.sh|ReadMe.txt|vbox.space|vbox.copyright|VirtualBoxKern' | pkgproto >> prototype
91
92# don't grok for the sed class files
93filelist_fixup prototype '$2 == "none"' '$5 = "root"; $6 = "bin"'
94filelist_fixup prototype '$2 == "none"' '$3 = "opt/VirtualBox/"$3"="$3'
95
96# install the kernel module to the right place.
97if test "$3" = "x86"; then
98 filelist_fixup prototype '$3 == "opt/VirtualBox/vboxdrv=vboxdrv"' '$3 = "platform/i86pc/kernel/drv/vboxdrv=vboxdrv"; $6 = "sys"'
99else
100 filelist_fixup prototype '$3 == "opt/VirtualBox/vboxdrv=vboxdrv"' '$3 = "platform/i86pc/kernel/drv/amd64/vboxdrv=vboxdrv"; $6 = "sys"'
101fi
102
103filelist_fixup prototype '$3 == "opt/VirtualBox/vboxdrv.conf=vboxdrv.conf"' '$3 = "platform/i86pc/kernel/drv/vboxdrv.conf=vboxdrv.conf"'
104
105# hardening requires some executables to be marked setuid.
106if test -n "$HARDENED"; then
107 $VBOX_AWK 'NF == 6 \
108 && ( $3 == "opt/VirtualBox/VirtualBox=VirtualBox" \
109 || $3 == "opt/VirtualBox/VirtualBox3=VirtualBox3" \
110 || $3 == "opt/VirtualBox/VBoxHeadless=VBoxHeadless" \
111 || $3 == "opt/VirtualBox/VBoxSDL=VBoxSDL" \
112 || $3 == "opt/VirtualBox/VBoxBFE=VBoxBFE" \
113 ) \
114 { $4 = "4755" } { print }' prototype > prototype2
115 mv -f prototype2 prototype
116fi
117
118# desktop links and icons
119filelist_fixup prototype '$3 == "opt/VirtualBox/virtualbox.desktop=virtualbox.desktop"' '$3 = "usr/share/applications/virtualbox.desktop=virtualbox.desktop"'
120filelist_fixup prototype '$3 == "opt/VirtualBox/VBox.png=VBox.png"' '$3 = "usr/share/pixmaps/VBox.png=VBox.png"'
121
122# webservice SMF manifest
123filelist_fixup prototype '$3 == "opt/VirtualBox/virtualbox-webservice.xml=virtualbox-webservice.xml"' '$3 = "var/svc/manifest/application/virtualbox/webservice.xml=virtualbox-webservice.xml"'
124
125# webservice SMF start/stop script
126filelist_fixup prototype '$3 == "opt/VirtualBox/smf-vboxwebsrv.sh=smf-vboxwebsrv.sh"' '$3 = "opt/VirtualBox/smf-vboxwebsrv=smf-vboxwebsrv.sh"'
127echo " --- start of prototype ---"
128cat prototype
129echo " --- end of prototype --- "
130
131# explicitly set timestamp to shutup warning
132VBOXPKG_TIMESTAMP=vbox`date '+%Y%m%d%H%M%S'`
133
134# create the package instance
135pkgmk -p $VBOXPKG_TIMESTAMP -o -r .
136
137# translate into package datastream
138pkgtrans -s -o /var/spool/pkg "`pwd`/$VBOX_PKGFILE" "$VBOX_PKGNAME"
139
140# $4 if exist would contain the path to the VBI package to include in the .tar.gz
141if test -f "$4"; then
142 $VBOX_GTAR zcvf "$VBOX_ARCHIVE" "$VBOX_PKGFILE" "$4" autoresponse ReadMe.txt
143else
144 $VBOX_GTAR zcvf "$VBOX_ARCHIVE" "$VBOX_PKGFILE" autoresponse ReadMe.txt
145fi
146
147echo "## Packaging and transfer completed successfully!"
148rm -rf "/var/spool/pkg/$VBOX_PKGNAME"
149
150exit $?
151
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