VirtualBox

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

Last change on this file since 38093 was 35920, checked in by vboxsync, 14 years ago

PCI: Linux driver

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
File size: 7.5 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_LINUX="$PATH_ROOT/src/VBox/HostDrivers/linux"
33PATH_VBOXDRV="$PATH_ROOT/src/VBox/HostDrivers/Support"
34PATH_VBOXNET="$PATH_ROOT/src/VBox/HostDrivers/VBoxNetFlt"
35PATH_VBOXADP="$PATH_ROOT/src/VBox/HostDrivers/VBoxNetAdp"
36PATH_VBOXPCI="$PATH_ROOT/src/VBox/HostDrivers/VBoxPci"
37
38VBOX_VERSION_MAJOR=`sed -e "s/^ *VBOX_VERSION_MAJOR *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Config.kmk`
39VBOX_VERSION_MINOR=`sed -e "s/^ *VBOX_VERSION_MINOR *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Config.kmk`
40VBOX_VERSION_BUILD=`sed -e "s/^ *VBOX_VERSION_BUILD *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Config.kmk`
41VBOX_VERSION_STRING=$VBOX_VERSION_MAJOR.$VBOX_VERSION_MINOR.$VBOX_VERSION_BUILD
42VBOX_SVN_REV=`sed -e 's/^ *VBOX_SVN_REV_FALLBACK *:= \+\$(patsubst *%:,, *\$Rev: *\([0-9]\+\) *\$ *) */\1/;t;d' $PATH_ROOT/Config.kmk` VBOX_VENDOR=`sed -e 's/^ *VBOX_VENDOR *= \+\(.\+\)/\1/;t;d' $PATH_ROOT/Config.kmk` VBOX_VENDOR_SHORT=`sed -e 's/^ *VBOX_VENDOR_SHORT *= \+\(.\+\)/\1/;t;d' $PATH_ROOT/Config.kmk` VBOX_PRODUCT=`sed -e 's/^ *VBOX_PRODUCT *= \+\(.\+\)/\1/;t;d' $PATH_ROOT/Config.kmk` VBOX_C_YEAR=`date +%Y`
43
44. $PATH_VBOXDRV/linux/files_vboxdrv
45. $PATH_VBOXNET/linux/files_vboxnetflt
46. $PATH_VBOXADP/linux/files_vboxnetadp
47. $PATH_VBOXPCI/linux/files_vboxpci
48
49# Temporary path for creating the modules, will be removed later
50mkdir $PATH_TMP || exit 1
51
52# Create auto-generated version file, needed by all modules
53echo "#ifndef __version_generated_h__" > $PATH_TMP/version-generated.h
54echo "#define __version_generated_h__" >> $PATH_TMP/version-generated.h
55echo "" >> $PATH_TMP/version-generated.h
56echo "#define VBOX_VERSION_MAJOR $VBOX_VERSION_MAJOR" >> $PATH_TMP/version-generated.h
57echo "#define VBOX_VERSION_MINOR $VBOX_VERSION_MINOR" >> $PATH_TMP/version-generated.h
58echo "#define VBOX_VERSION_BUILD $VBOX_VERSION_BUILD" >> $PATH_TMP/version-generated.h
59echo "#define VBOX_VERSION_STRING \"$VBOX_VERSION_STRING\"" >> $PATH_TMP/version-generated.h
60echo "" >> $PATH_TMP/version-generated.h
61echo "#endif" >> $PATH_TMP/version-generated.h
62
63# Create auto-generated revision file, needed by all modules
64echo "#ifndef __revision_generated_h__" > $PATH_TMP/revision-generated.h
65echo "#define __revision_generated_h__" >> $PATH_TMP/revision-generated.h
66echo "" >> $PATH_TMP/revision-generated.h
67echo "#define VBOX_SVN_REV $VBOX_SVN_REV" >> $PATH_TMP/revision-generated.h
68echo "" >> $PATH_TMP/revision-generated.h
69echo "#endif" >> $PATH_TMP/revision-generated.h
70
71# Create auto-generated product file, needed by all modules
72echo "#ifndef __product_generated_h__" > $PATH_TMP/product-generated.h
73echo "#define __product_generated_h__" >> $PATH_TMP/product-generated.h
74echo "" >> $PATH_TMP/product-generated.h
75echo "#define VBOX_VENDOR \"$VBOX_VENDOR\"" >> $PATH_TMP/product-generated.h
76echo "#define VBOX_VENDOR_SHORT \"$VBOX_VENDOR_SHORT\"" >> $PATH_TMP/product-generated.h
77echo "" >> $PATH_TMP/product-generated.h
78echo "#define VBOX_PRODUCT \"$VBOX_PRODUCT\"" >> $PATH_TMP/product-generated.h
79echo "#define VBOX_C_YEAR \"$VBOX_C_YEAR\"" >> $PATH_TMP/product-generated.h
80echo "" >> $PATH_TMP/product-generated.h
81echo "#endif" >> $PATH_TMP/product-generated.h
82
83# vboxdrv (VirtualBox host kernel module)
84mkdir $PATH_TMP/vboxdrv || exit 1
85for f in $FILES_VBOXDRV_NOBIN; do
86 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxdrv/`echo $f|cut -d'>' -f2`"
87done
88for f in $FILES_VBOXDRV_BIN; do
89 install -D -m 0755 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxdrv/`echo $f|cut -d'>' -f2`"
90done
91sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_LINUX/build_in_tmp > $PATH_TMP/vboxdrv/build_in_tmp
92chmod 0755 $PATH_TMP/vboxdrv/build_in_tmp
93sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_VBOXDRV/linux/dkms.conf > $PATH_TMP/vboxdrv/dkms.conf
94if [ -n "$VBOX_WITH_HARDENING" ]; then
95 cat $PATH_VBOXDRV/linux/Makefile > $PATH_TMP/vboxdrv/Makefile
96else
97 sed -e "s;-DVBOX_WITH_HARDENING;;g" < $PATH_VBOXDRV/linux/Makefile > $PATH_TMP/vboxdrv/Makefile
98fi
99
100# vboxnetflt (VirtualBox netfilter kernel module)
101mkdir $PATH_TMP/vboxnetflt || exit 1
102for f in $VBOX_VBOXNETFLT_SOURCES; do
103 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxnetflt/`echo $f|cut -d'>' -f2`"
104done
105sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_LINUX/build_in_tmp > $PATH_TMP/vboxnetflt/build_in_tmp
106chmod 0755 $PATH_TMP/vboxnetflt/build_in_tmp
107sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_VBOXNET/linux/dkms.conf > $PATH_TMP/vboxnetflt/dkms.conf
108if [ -n "$VBOX_WITH_HARDENING" ]; then
109 cat $PATH_VBOXNET/linux/Makefile > $PATH_TMP/vboxnetflt/Makefile
110else
111 sed -e "s;-DVBOX_WITH_HARDENING;;g" < $PATH_VBOXNET/linux/Makefile > $PATH_TMP/vboxnetflt/Makefile
112fi
113
114# vboxnetadp (VirtualBox network adapter kernel module)
115mkdir $PATH_TMP/vboxnetadp || exit 1
116for f in $VBOX_VBOXNETADP_SOURCES; do
117 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxnetadp/`echo $f|cut -d'>' -f2`"
118done
119sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_LINUX/build_in_tmp > $PATH_TMP/vboxnetadp/build_in_tmp
120chmod 0755 $PATH_TMP/vboxnetadp/build_in_tmp
121sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_VBOXADP/linux/dkms.conf > $PATH_TMP/vboxnetadp/dkms.conf
122if [ -n "$VBOX_WITH_HARDENING" ]; then
123 cat $PATH_VBOXADP/linux/Makefile > $PATH_TMP/vboxnetadp/Makefile
124else
125 sed -e "s;-DVBOX_WITH_HARDENING;;g" < $PATH_VBOXADP/linux/Makefile > $PATH_TMP/vboxnetadp/Makefile
126fi
127
128# vboxpci (VirtualBox host PCI access kernel module)
129mkdir $PATH_TMP/vboxpci || exit 1
130for f in $VBOX_VBOXPCI_SOURCES; do
131 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxpci/`echo $f|cut -d'>' -f2`"
132done
133sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_LINUX/build_in_tmp > $PATH_TMP/vboxpci/build_in_tmp
134chmod 0755 $PATH_TMP/vboxpci/build_in_tmp
135sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_VBOXPCI/linux/dkms.conf > $PATH_TMP/vboxpci/dkms.conf
136if [ -n "$VBOX_WITH_HARDENING" ]; then
137 cat $PATH_VBOXPCI/linux/Makefile > $PATH_TMP/vboxpci/Makefile
138else
139 sed -e "s;-DVBOX_WITH_HARDENING;;g" < $PATH_VBOXPCI/linux/Makefile > $PATH_TMP/vboxpci/Makefile
140fi
141
142install -D -m 0644 $PATH_LINUX/Makefile $PATH_TMP/Makefile
143
144# Only temporary, omit from archive
145rm $PATH_TMP/version-generated.h
146rm $PATH_TMP/revision-generated.h
147rm $PATH_TMP/product-generated.h
148
149# Create the archive
150tar -czf $FILE_OUT -C $PATH_TMP . || exit 1
151
152# Remove the temporary directory
153rm -r $PATH_TMP
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