VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/freebsd/export_modules@ 30948

Last change on this file since 30948 was 28800, checked in by vboxsync, 15 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 4.8 KB
Line 
1#!/bin/sh
2
3#
4# Create a tar archive containing the sources of the vboxdrv kernel module
5#
6# Copyright (C) 2007 Oracle Corporation
7#
8# This file is part of VirtualBox Open Source Edition (OSE), as
9# available from http://www.virtualbox.org. This file is free software;
10# you can redistribute it and/or modify it under the terms of the GNU
11# General Public License (GPL) as published by the Free Software
12# Foundation, in version 2 as it comes in the "COPYING" file of the
13# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15#
16
17if [ -z "$1" ]; then
18 echo "Usage: $0 <filename.tar.gz> [--without-hardening]"
19 echo " Export VirtualBox kernel modules to <filename.tar.gz>"
20 exit 1
21fi
22
23VBOX_WITH_HARDENING=1
24if [ "$2" = "--without-hardening" ]; then
25 VBOX_WITH_HARDENING=
26fi
27
28PATH_TMP="`cd \`dirname $1\`; pwd`/.vbox_modules"
29PATH_OUT=$PATH_TMP
30FILE_OUT="`cd \`dirname $1\`; pwd`/`basename $1`"
31PATH_ROOT="`cd \`dirname $0\`/../../../..; pwd`"
32PATH_FREEBSD="$PATH_ROOT/src/VBox/HostDrivers/freebsd"
33PATH_VBOXDRV="$PATH_ROOT/src/VBox/HostDrivers/Support"
34PATH_VBOXNET="$PATH_ROOT/src/VBox/HostDrivers/VBoxNetFlt"
35PATH_VBOXNETADP="$PATH_ROOT/src/VBox/HostDrivers/VBoxNetAdp"
36
37VBOX_VERSION_MAJOR=`sed -e "s/^ *VBOX_VERSION_MAJOR *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Config.kmk`
38VBOX_VERSION_MINOR=`sed -e "s/^ *VBOX_VERSION_MINOR *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Config.kmk`
39VBOX_VERSION_BUILD=`sed -e "s/^ *VBOX_VERSION_BUILD *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Config.kmk`
40VBOX_VERSION_STRING=$VBOX_VERSION_MAJOR.$VBOX_VERSION_MINOR.$VBOX_VERSION_BUILD
41
42. $PATH_VBOXDRV/freebsd/files_vboxdrv
43. $PATH_VBOXNET/freebsd/files_vboxnetflt
44. $PATH_VBOXNETADP/freebsd/files_vboxnetadp
45
46# Temporary path for creating the modules, will be removed later
47mkdir $PATH_TMP || exit 1
48
49# Create auto-generated version file, needed by all modules
50echo "#ifndef __version_generated_h__" > $PATH_TMP/version-generated.h
51echo "#define __version_generated_h__" >> $PATH_TMP/version-generated.h
52echo "" >> $PATH_TMP/version-generated.h
53echo "#define VBOX_VERSION_MAJOR $VBOX_VERSION_MAJOR" >> $PATH_TMP/version-generated.h
54echo "#define VBOX_VERSION_MINOR $VBOX_VERSION_MINOR" >> $PATH_TMP/version-generated.h
55echo "#define VBOX_VERSION_BUILD $VBOX_VERSION_BUILD" >> $PATH_TMP/version-generated.h
56echo "#define VBOX_VERSION_STRING \"$VBOX_VERSION_STRING\"" >> $PATH_TMP/version-generated.h
57echo "" >> $PATH_TMP/version-generated.h
58echo "#endif" >> $PATH_TMP/version-generated.h
59
60# vboxdrv (VirtualBox host kernel module)
61mkdir $PATH_TMP/vboxdrv || exit 1
62for f in $FILES_VBOXDRV_NOBIN; do
63 install -d -m 755 "$PATH_TMP/vboxdrv/`dirname $f|cut -d'>' -f2`"
64 install -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxdrv/`echo $f|cut -d'>' -f2`"
65done
66for f in $FILES_VBOXDRV_BIN; do
67 install -m 0755 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxdrv/`echo $f|cut -d'>' -f2`"
68done
69sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_FREEBSD/build_in_tmp > $PATH_TMP/vboxdrv/build_in_tmp
70if [ -n "$VBOX_WITH_HARDENING" ]; then
71 cat $PATH_VBOXDRV/freebsd/Makefile > $PATH_TMP/vboxdrv/Makefile
72else
73 sed -e "s;-DVBOX_WITH_HARDENING;;g" < $PATH_VBOXDRV/freebsd/Makefile > $PATH_TMP/vboxdrv/Makefile
74fi
75
76# vboxnetflt (VirtualBox netfilter kernel module)
77mkdir $PATH_TMP/vboxnetflt || exit 1
78for f in $VBOX_VBOXNETFLT_SOURCES; do
79 install -d -m 755 "$PATH_TMP/vboxnetflt/`dirname $f|cut -d'>' -f2`"
80 install -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxnetflt/`echo $f|cut -d'>' -f2`"
81done
82sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_FREEBSD/build_in_tmp > $PATH_TMP/vboxnetflt/build_in_tmp
83if [ -n "$VBOX_WITH_HARDENING" ]; then
84 cat $PATH_VBOXNET/freebsd/Makefile > $PATH_TMP/vboxnetflt/Makefile
85else
86 sed -e "s;-DVBOX_WITH_HARDENING;;g" < $PATH_VBOXNET/freebsd/Makefile > $PATH_TMP/vboxnetflt/Makefile
87fi
88
89# vboxnetadp (VirtualBox network adapter kernel module)
90mkdir $PATH_TMP/vboxnetadp || exit 1
91for f in $VBOX_VBOXNETADP_SOURCES; do
92 install -d -m 755 "$PATH_TMP/vboxnetadp/`dirname $f|cut -d'>' -f2`"
93 install -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxnetadp/`echo $f|cut -d'>' -f2`"
94done
95sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_FREEBSD/build_in_tmp > $PATH_TMP/vboxnetadp/build_in_tmp
96if [ -n "$VBOX_WITH_HARDENING" ]; then
97 cat $PATH_VBOXNETADP/freebsd/Makefile > $PATH_TMP/vboxnetadp/Makefile
98else
99 sed -e "s;-DVBOX_WITH_HARDENING;;g" < $PATH_VBOXNETADP/freebsd/Makefile > $PATH_TMP/vboxnetadp/Makefile
100fi
101
102install -m 0644 $PATH_FREEBSD/Makefile $PATH_TMP/Makefile
103
104# Only temporary, omit from archive
105rm $PATH_TMP/version-generated.h
106
107# Create the archive
108tar -czf $FILE_OUT -C $PATH_TMP . || exit 1
109
110# Remove the temporary directory
111rm -r $PATH_TMP
112
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