VirtualBox

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

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

config file cleanup + small copyright year update

  • Property svn:eol-style set to LF
File size: 2.5 KB
Line 
1#!/bin/sh
2# Sun VirtualBox
3# VirtualBox Solaris VBI Kernel Module package creation script.
4#
5# Copyright (C) 2007-2009 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
23
24if [ -z "$2" ]; then
25 echo "Usage: $0 installdir packagename"
26 echo "-- packagename must not have any extension (e.g. VirtualBoxKern-SunOS-r28899)"
27 exit 1
28fi
29
30VBOX_PKGFILE=$2.pkg
31VBOX_ARCHIVE=$2.tar.gz
32VBOX_PKGNAME=SUNWvboxkern
33
34VBOX_GGREP=/usr/sfw/bin/ggrep
35VBOX_AWK=/usr/bin/awk
36VBOX_GTAR=/usr/sfw/bin/gtar
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# check for GNU tar we use which might not ship with all Solaris
45if test ! -f "$VBOX_GTAR" && test ! -h "$VBOX_GTAR"; then
46 echo "## GNU tar not found in $VBOX_GTAR."
47 exit 1
48fi
49
50# bail out on non-zero exit status
51set -e
52
53# prepare file list
54cd "$1"
55echo 'i pkginfo=./vboxkern.pkginfo' > prototype
56echo 'i preremove=./preremove.sh' >> prototype
57if test -f "./vbox.copyright"; then
58 echo 'i copyright=./vbox.copyright' >> prototype
59fi
60find . -print | $VBOX_GGREP -v -E 'prototype|makepackage.sh|preremove.sh|vboxkern.pkginfo|vbox.copyright' | pkgproto >> prototype
61
62$VBOX_AWK 'NF == 6 && $2 == "none" { $5 = "root"; $6 = "sys" } { print }' prototype > prototype2
63$VBOX_AWK 'NF == 6 && $2 == "none" { $3 = "platform/i86pc/kernel/misc/"$3"="$3 } { print }' prototype2 > prototype
64
65rm prototype2
66
67# explicitly set timestamp to shutup warning
68VBOXPKG_TIMESTAMP=vboxkern`date '+%Y%m%d%H%M%S'`
69
70# create the package instance
71pkgmk -p $VBOXPKG_TIMESTAMP -o -r .
72
73# translate into package datastream
74pkgtrans -s -o /var/spool/pkg "`pwd`/$VBOX_PKGFILE" "$VBOX_PKGNAME"
75
76echo "## Packaging and transfer completed successfully!"
77rm -rf "/var/spool/pkg/$VBOX_PKGNAME"
78
79exit $?
80
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