VirtualBox

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

Last change on this file since 40986 was 40986, checked in by vboxsync, 13 years ago

header fixes

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