VirtualBox

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

Last change on this file since 25757 was 24408, checked in by vboxsync, 15 years ago

export the FreeBSD HostDrivers Makefile to OSE

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 5.0 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 Sun Microsystems, Inc.
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# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
17# Clara, CA 95054 USA or visit http://www.sun.com if you need
18# additional information or have any questions.
19#
20
21if [ -z "$1" ]; then
22 echo "Usage: $0 <filename.tar.gz> [--without-hardening]"
23 echo " Export VirtualBox kernel modules to <filename.tar.gz>"
24 exit 1
25fi
26
27VBOX_WITH_HARDENING=1
28if [ "$2" = "--without-hardening" ]; then
29 VBOX_WITH_HARDENING=
30fi
31
32PATH_TMP="`cd \`dirname $1\`; pwd`/.vbox_modules"
33PATH_OUT=$PATH_TMP
34FILE_OUT="`cd \`dirname $1\`; pwd`/`basename $1`"
35PATH_ROOT="`cd \`dirname $0\`/../../../..; pwd`"
36PATH_FREEBSD="$PATH_ROOT/src/VBox/HostDrivers/freebsd"
37PATH_VBOXDRV="$PATH_ROOT/src/VBox/HostDrivers/Support"
38PATH_VBOXNET="$PATH_ROOT/src/VBox/HostDrivers/VBoxNetFlt"
39PATH_VBOXNETADP="$PATH_ROOT/src/VBox/HostDrivers/VBoxNetAdp"
40
41VBOX_VERSION_MAJOR=`sed -e "s/^ *VBOX_VERSION_MAJOR *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Config.kmk`
42VBOX_VERSION_MINOR=`sed -e "s/^ *VBOX_VERSION_MINOR *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Config.kmk`
43VBOX_VERSION_BUILD=`sed -e "s/^ *VBOX_VERSION_BUILD *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Config.kmk`
44VBOX_VERSION_STRING=$VBOX_VERSION_MAJOR.$VBOX_VERSION_MINOR.$VBOX_VERSION_BUILD
45
46. $PATH_VBOXDRV/freebsd/files_vboxdrv
47. $PATH_VBOXNET/freebsd/files_vboxnetflt
48. $PATH_VBOXNETADP/freebsd/files_vboxnetadp
49
50# Temporary path for creating the modules, will be removed later
51mkdir $PATH_TMP || exit 1
52
53# Create auto-generated version file, needed by all modules
54echo "#ifndef __version_generated_h__" > $PATH_TMP/version-generated.h
55echo "#define __version_generated_h__" >> $PATH_TMP/version-generated.h
56echo "" >> $PATH_TMP/version-generated.h
57echo "#define VBOX_VERSION_MAJOR $VBOX_VERSION_MAJOR" >> $PATH_TMP/version-generated.h
58echo "#define VBOX_VERSION_MINOR $VBOX_VERSION_MINOR" >> $PATH_TMP/version-generated.h
59echo "#define VBOX_VERSION_BUILD $VBOX_VERSION_BUILD" >> $PATH_TMP/version-generated.h
60echo "#define VBOX_VERSION_STRING \"$VBOX_VERSION_STRING\"" >> $PATH_TMP/version-generated.h
61echo "" >> $PATH_TMP/version-generated.h
62echo "#endif" >> $PATH_TMP/version-generated.h
63
64# vboxdrv (VirtualBox host kernel module)
65mkdir $PATH_TMP/vboxdrv || exit 1
66for f in $FILES_VBOXDRV_NOBIN; do
67 install -d -m 755 "$PATH_TMP/vboxdrv/`dirname $f|cut -d'>' -f2`"
68 install -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxdrv/`echo $f|cut -d'>' -f2`"
69done
70for f in $FILES_VBOXDRV_BIN; do
71 install -m 0755 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxdrv/`echo $f|cut -d'>' -f2`"
72done
73sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_FREEBSD/build_in_tmp > $PATH_TMP/vboxdrv/build_in_tmp
74if [ -n "$VBOX_WITH_HARDENING" ]; then
75 cat $PATH_VBOXDRV/freebsd/Makefile > $PATH_TMP/vboxdrv/Makefile
76else
77 sed -e "s;-DVBOX_WITH_HARDENING;;g" < $PATH_VBOXDRV/freebsd/Makefile > $PATH_TMP/vboxdrv/Makefile
78fi
79
80# vboxnetflt (VirtualBox netfilter kernel module)
81mkdir $PATH_TMP/vboxnetflt || exit 1
82for f in $VBOX_VBOXNETFLT_SOURCES; do
83 install -d -m 755 "$PATH_TMP/vboxnetflt/`dirname $f|cut -d'>' -f2`"
84 install -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxnetflt/`echo $f|cut -d'>' -f2`"
85done
86sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_FREEBSD/build_in_tmp > $PATH_TMP/vboxnetflt/build_in_tmp
87if [ -n "$VBOX_WITH_HARDENING" ]; then
88 cat $PATH_VBOXNET/freebsd/Makefile > $PATH_TMP/vboxnetflt/Makefile
89else
90 sed -e "s;-DVBOX_WITH_HARDENING;;g" < $PATH_VBOXNET/freebsd/Makefile > $PATH_TMP/vboxnetflt/Makefile
91fi
92
93# vboxnetadp (VirtualBox network adapter kernel module)
94mkdir $PATH_TMP/vboxnetadp || exit 1
95for f in $VBOX_VBOXNETADP_SOURCES; do
96 install -d -m 755 "$PATH_TMP/vboxnetadp/`dirname $f|cut -d'>' -f2`"
97 install -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxnetadp/`echo $f|cut -d'>' -f2`"
98done
99sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_FREEBSD/build_in_tmp > $PATH_TMP/vboxnetadp/build_in_tmp
100if [ -n "$VBOX_WITH_HARDENING" ]; then
101 cat $PATH_VBOXNETADP/freebsd/Makefile > $PATH_TMP/vboxnetadp/Makefile
102else
103 sed -e "s;-DVBOX_WITH_HARDENING;;g" < $PATH_VBOXNETADP/freebsd/Makefile > $PATH_TMP/vboxnetadp/Makefile
104fi
105
106install -m 0644 $PATH_FREEBSD/Makefile $PATH_TMP/Makefile
107
108# Only temporary, omit from archive
109rm $PATH_TMP/version-generated.h
110
111# Create the archive
112tar -czf $FILE_OUT -C $PATH_TMP . || exit 1
113
114# Remove the temporary directory
115rm -r $PATH_TMP
116
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