VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/linux/export_modules@ 11889

Last change on this file since 11889 was 11752, checked in by vboxsync, 16 years ago

#3076: edit linux/Makefile so VBOX_WITH_HARDENING is defined correctly.

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
File size: 3.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 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# The contents of this file may alternatively be used under the terms
17# of the Common Development and Distribution License Version 1.0
18# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19# VirtualBox OSE distribution, in which case the provisions of the
20# CDDL are applicable instead of those of the GPL.
21#
22# You may elect to license modified versions of this file under the
23# terms and conditions of either the GPL or the CDDL or both.
24#
25# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
26# Clara, CA 95054 USA or visit http://www.sun.com if you need
27# additional information or have any questions.
28#
29
30if [ -z "$1" ]; then
31 echo "Usage: $0 <filename.tar.gz> [--without-hardening]"
32 echo " Export VirtualBox kernel modules to <filename.tar.gz>"
33 exit 1
34fi
35
36VBOX_WITH_HARDENING=1
37if [ "$2" = "--without-hardening" ]; then
38 VBOX_WITH_HARDENING=
39fi
40
41PATH_TMP="`cd \`dirname $1\`; pwd`/.vbox_modules"
42PATH_OUT=$PATH_TMP
43FILE_OUT="`cd \`dirname $1\`; pwd`/`basename $1`"
44PATH_ROOT="`cd \`dirname $0\`/../../../../..; pwd`"
45PATH_VBOXDRV="$PATH_ROOT/src/VBox/HostDrivers/Support"
46
47VBOX_VERSION_MAJOR=`sed -e "s/^ *VBOX_VERSION_MAJOR *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Config.kmk`
48VBOX_VERSION_MINOR=`sed -e "s/^ *VBOX_VERSION_MINOR *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Config.kmk`
49VBOX_VERSION_BUILD=`sed -e "s/^ *VBOX_VERSION_BUILD *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Config.kmk`
50VBOX_VERSION_STRING=$VBOX_VERSION_MAJOR.$VBOX_VERSION_MINOR.$VBOX_VERSION_BUILD
51
52. $PATH_VBOXDRV/linux/files_vboxdrv
53
54# Temporary path for creating the modules, will be removed later
55mkdir $PATH_TMP || exit 1
56
57# Create auto-generated version file, needed by all modules
58echo "#ifndef __version_generated_h__" > $PATH_TMP/version-generated.h
59echo "#define __version_generated_h__" >> $PATH_TMP/version-generated.h
60echo "" >> $PATH_TMP/version-generated.h
61echo "#define VBOX_VERSION_MAJOR $VBOX_VERSION_MAJOR" >> $PATH_TMP/version-generated.h
62echo "#define VBOX_VERSION_MINOR $VBOX_VERSION_MINOR" >> $PATH_TMP/version-generated.h
63echo "#define VBOX_VERSION_BUILD $VBOX_VERSION_BUILD" >> $PATH_TMP/version-generated.h
64echo "#define VBOX_VERSION_STRING \"$VBOX_VERSION_STRING\"" >> $PATH_TMP/version-generated.h
65echo "" >> $PATH_TMP/version-generated.h
66echo "#endif" >> $PATH_TMP/version-generated.h
67
68# vboxdrv (VirtualBox host kernel module)
69mkdir $PATH_TMP/vboxdrv || exit 1
70for f in $FILES_VBOXDRV_NOBIN; do
71 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxdrv/`echo $f|cut -d'>' -f2`"
72done
73for f in $FILES_VBOXDRV_BIN; do
74 install -D -m 0755 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxdrv/`echo $f|cut -d'>' -f2`"
75done
76sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_VBOXDRV/linux/build_in_tmp > $PATH_TMP/vboxdrv/build_in_tmp
77chmod 0755 $PATH_TMP/vboxdrv/build_in_tmp
78sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_VBOXDRV/linux/dkms.conf > $PATH_TMP/vboxdrv/dkms.conf
79if [ -n "$VBOX_WITH_HARDENING" ]; then
80 cat $PATH_VBOXDRV/linux/Makefile > $PATH_TMP/vboxdrv/Makefile
81else
82 sed -e "s;-DVBOX_WITH_HARDENING;;g" < $PATH_VBOXDRV/linux/Makefile > $PATH_TMP/vboxdrv/Makefile
83fi
84
85# Only temporary, omit from archive
86rm $PATH_TMP/version-generated.h
87
88# Create the archive
89tar -czf $FILE_OUT -C $PATH_TMP . || exit 1
90
91# Remove the temporary directory
92rm -r $PATH_TMP
93
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