VirtualBox

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

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

Solaris/additions installer: eliminate devlink.tab, use devfsadm and dev tree, rather than the device tree.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
File size: 3.7 KB
Line 
1#!/bin/sh
2# Sun xVM VirtualBox
3# VirtualBox Solaris Guest Additions package creation script.
4#
5# Copyright (C) 2008 Sun Microsystems, Inc.
6#
7# This file is part of VirtualBox Open Source Edition (OSE), as
8# available from http://www.virtualbox.org. This file is free software;
9# you can redistribute it and/or modify it under the terms of the GNU
10# General Public License (GPL) as published by the Free Software
11# Foundation, in version 2 as it comes in the "COPYING" file of the
12# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14#
15# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
16# Clara, CA 95054 USA or visit http://www.sun.com if you need
17# additional information or have any questions.
18#
19
20#
21# Usage:
22# makespackage.sh $(PATH_TARGET)/install packagename svnrev
23
24if test -z "$3"; then
25 echo "Usage: $0 installdir packagename svnrev"
26 exit 1
27fi
28
29VBOX_INSTALLED_DIR=$1
30VBOX_PKGFILENAME=$2
31VBOX_SVN_REV=$3
32
33VBOX_PKGNAME=SUNWvboxguest
34VBOX_AWK=/usr/bin/awk
35VBOX_GGREP=/usr/sfw/bin/ggrep
36VBOX_AWK=/usr/bin/awk
37
38# check for GNU grep we use which might not ship with all Solaris
39if test ! -f "$VBOX_GGREP" && test ! -h "$VBOX_GGREP"; then
40 echo "## GNU grep not found in $VBOX_GGREP."
41 exit 1
42fi
43
44# bail out on non-zero exit status
45set -e
46
47# Fixup filelist using awk, the parameters must be in awk syntax
48# params: filename condition action
49filelist_fixup()
50{
51 "$VBOX_AWK" 'NF == 6 && '"$2"' { '"$3"' } { print }' "$1" > "tmp-$1"
52 mv -f "tmp-$1" "$1"
53}
54
55# prepare file list
56cd "$VBOX_INSTALLED_DIR"
57echo 'i pkginfo=./vboxguest.pkginfo' > prototype
58echo 'i postinstall=./postinstall.sh' >> prototype
59echo 'i preremove=./preremove.sh' >> prototype
60echo 'i space=./vboxguest.space' >> prototype
61if test -f "./vboxguest.copyright"; then
62 echo 'i copyright=./vboxguest.copyright' >> prototype
63fi
64find . -print | $VBOX_GGREP -v -E 'prototype|makepackage.sh|vboxguest.pkginfo|postinstall.sh|preremove.sh|vboxguest.space|vboxguest.copyright' | pkgproto >> prototype
65
66# don't grok for the class files
67filelist_fixup prototype '$2 == "none"' '$5 = "root"; $6 = "bin"'
68filelist_fixup prototype '$2 == "none"' '$3 = "opt/VirtualBoxAdditions/"$3"="$3'
69
70# VBoxService requires suid
71filelist_fixup prototype '$3 == "opt/VirtualBoxAdditions/VBoxService=VBoxService"' '$4 = "4755"'
72filelist_fixup prototype '$3 == "opt/VirtualBoxAdditions/amd64/VBoxService=amd64/VBoxService"' '$4 = "4755"'
73
74# 32-bit kernel module
75filelist_fixup prototype '$3 == "opt/VirtualBoxAdditions/vboxguest=vboxguest"' '$3 = "platform/i86pc/kernel/drv/vboxguest=vboxguest"; $6="sys"'
76
77# 64-bit kernel module
78filelist_fixup prototype '$3 == "opt/VirtualBoxAdditions/amd64/vboxguest=amd64/vboxguest"' '$3 = "platform/i86pc/kernel/drv/amd64/vboxguest=amd64/vboxguest"; $6="sys"'
79
80# kernel module config file
81filelist_fixup prototype '$3 == "opt/VirtualBoxAdditions/vboxguest.conf=vboxguest.conf"' '$3 = "platform/i86pc/kernel/drv/vboxguest.conf=vboxguest.conf"'
82
83filelist_fixup prototype '$3 == "opt/VirtualBoxAdditions/vboxservice.xml=vboxservice.xml"' '$3 = "var/svc/manifest/system/virtualbox/vboxservice.xml=vboxservice.xml"'
84echo " --- start of prototype ---"
85cat prototype
86echo " --- end of prototype --- "
87
88# explicitly set timestamp to shutup warning
89VBOXPKG_TIMESTAMP=vboxguest`date '+%Y%m%d%H%M%S'`_r$VBOX_SVN_REV
90
91# create the package instance
92pkgmk -p $VBOXPKG_TIMESTAMP -o -r .
93
94# translate into package datastream
95pkgtrans -s -o /var/spool/pkg `pwd`/$VBOX_PKGFILENAME "$VBOX_PKGNAME"
96
97rm -rf "/var/spool/pkg/$VBOX_PKGNAME"
98exit $?
99
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