VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/linux/export_modules@ 18499

Last change on this file since 18499 was 16115, checked in by vboxsync, 15 years ago

filemuncher

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
File size: 4.3 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_LINUX="$PATH_ROOT/src/VBox/HostDrivers/linux"
37PATH_VBOXDRV="$PATH_ROOT/src/VBox/HostDrivers/Support"
38PATH_VBOXNET="$PATH_ROOT/src/VBox/HostDrivers/VBoxNetFlt"
39
40VBOX_VERSION_MAJOR=`sed -e "s/^ *VBOX_VERSION_MAJOR *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Config.kmk`
41VBOX_VERSION_MINOR=`sed -e "s/^ *VBOX_VERSION_MINOR *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Config.kmk`
42VBOX_VERSION_BUILD=`sed -e "s/^ *VBOX_VERSION_BUILD *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Config.kmk`
43VBOX_VERSION_STRING=$VBOX_VERSION_MAJOR.$VBOX_VERSION_MINOR.$VBOX_VERSION_BUILD
44
45. $PATH_VBOXDRV/linux/files_vboxdrv
46. $PATH_VBOXNET/linux/files_vboxnetflt
47
48# Temporary path for creating the modules, will be removed later
49mkdir $PATH_TMP || exit 1
50
51# Create auto-generated version file, needed by all modules
52echo "#ifndef __version_generated_h__" > $PATH_TMP/version-generated.h
53echo "#define __version_generated_h__" >> $PATH_TMP/version-generated.h
54echo "" >> $PATH_TMP/version-generated.h
55echo "#define VBOX_VERSION_MAJOR $VBOX_VERSION_MAJOR" >> $PATH_TMP/version-generated.h
56echo "#define VBOX_VERSION_MINOR $VBOX_VERSION_MINOR" >> $PATH_TMP/version-generated.h
57echo "#define VBOX_VERSION_BUILD $VBOX_VERSION_BUILD" >> $PATH_TMP/version-generated.h
58echo "#define VBOX_VERSION_STRING \"$VBOX_VERSION_STRING\"" >> $PATH_TMP/version-generated.h
59echo "" >> $PATH_TMP/version-generated.h
60echo "#endif" >> $PATH_TMP/version-generated.h
61
62# vboxdrv (VirtualBox host kernel module)
63mkdir $PATH_TMP/vboxdrv || exit 1
64for f in $FILES_VBOXDRV_NOBIN; do
65 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxdrv/`echo $f|cut -d'>' -f2`"
66done
67for f in $FILES_VBOXDRV_BIN; do
68 install -D -m 0755 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxdrv/`echo $f|cut -d'>' -f2`"
69done
70sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_LINUX/build_in_tmp > $PATH_TMP/vboxdrv/build_in_tmp
71chmod 0755 $PATH_TMP/vboxdrv/build_in_tmp
72sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_VBOXDRV/linux/dkms.conf > $PATH_TMP/vboxdrv/dkms.conf
73if [ -n "$VBOX_WITH_HARDENING" ]; then
74 cat $PATH_VBOXDRV/linux/Makefile > $PATH_TMP/vboxdrv/Makefile
75else
76 sed -e "s;-DVBOX_WITH_HARDENING;;g" < $PATH_VBOXDRV/linux/Makefile > $PATH_TMP/vboxdrv/Makefile
77fi
78
79# vboxnetflt (VirtualBox netfilter kernel module)
80mkdir $PATH_TMP/vboxnetflt || exit 1
81for f in $VBOX_VBOXNETFLT_SOURCES; do
82 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxnetflt/`echo $f|cut -d'>' -f2`"
83done
84sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_LINUX/build_in_tmp > $PATH_TMP/vboxnetflt/build_in_tmp
85chmod 0755 $PATH_TMP/vboxnetflt/build_in_tmp
86sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_VBOXNET/linux/dkms.conf > $PATH_TMP/vboxnetflt/dkms.conf
87if [ -n "$VBOX_WITH_HARDENING" ]; then
88 cat $PATH_VBOXNET/linux/Makefile > $PATH_TMP/vboxnetflt/Makefile
89else
90 sed -e "s;-DVBOX_WITH_HARDENING;;g" < $PATH_VBOXNET/linux/Makefile > $PATH_TMP/vboxnetflt/Makefile
91fi
92
93install -D -m 0644 $PATH_LINUX/Makefile $PATH_TMP/Makefile
94
95# Only temporary, omit from archive
96rm $PATH_TMP/version-generated.h
97
98# Create the archive
99tar -czf $FILE_OUT -C $PATH_TMP . || exit 1
100
101# Remove the temporary directory
102rm -r $PATH_TMP
103
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use