VirtualBox

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

Last change on this file since 30948 was 29681, checked in by vboxsync, 14 years ago

fixed Linux module export scripts

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