Changeset 39333 in vbox for trunk/src/VBox/HostDrivers/linux
- Timestamp:
- Nov 16, 2011 3:19:21 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/linux/export_modules
r35920 r39333 6 6 # Copyright (C) 2007 Oracle Corporation 7 7 # 8 # This file is part of VirtualBox Open Source Edition (OSE), as9 8 # available from http://www.virtualbox.org. This file is free software; 10 9 # you can redistribute it and/or modify it under the terms of the GNU … … 26 25 fi 27 26 28 PATH_TMP="`cd \`dirname $1\`; pwd`/.vbox_modules"29 PATH_OUT=$PATH_TMP30 FILE_OUT="`cd \`dirname $1\`; pwd`/`basename $1`"31 27 PATH_ROOT="`cd \`dirname $0\`/../../../..; pwd`" 32 28 PATH_LINUX="$PATH_ROOT/src/VBox/HostDrivers/linux" … … 89 85 install -D -m 0755 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxdrv/`echo $f|cut -d'>' -f2`" 90 86 done 91 sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_LINUX/build_in_tmp > $PATH_TMP/vboxdrv/build_in_tmp92 chmod 0755 $PATH_TMP/vboxdrv/build_in_tmp93 87 sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_VBOXDRV/linux/dkms.conf > $PATH_TMP/vboxdrv/dkms.conf 94 88 if [ -n "$VBOX_WITH_HARDENING" ]; then … … 103 97 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxnetflt/`echo $f|cut -d'>' -f2`" 104 98 done 105 sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_LINUX/build_in_tmp > $PATH_TMP/vboxnetflt/build_in_tmp106 chmod 0755 $PATH_TMP/vboxnetflt/build_in_tmp107 99 sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_VBOXNET/linux/dkms.conf > $PATH_TMP/vboxnetflt/dkms.conf 108 100 if [ -n "$VBOX_WITH_HARDENING" ]; then … … 117 109 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxnetadp/`echo $f|cut -d'>' -f2`" 118 110 done 119 sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_LINUX/build_in_tmp > $PATH_TMP/vboxnetadp/build_in_tmp120 chmod 0755 $PATH_TMP/vboxnetadp/build_in_tmp121 111 sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_VBOXADP/linux/dkms.conf > $PATH_TMP/vboxnetadp/dkms.conf 122 112 if [ -n "$VBOX_WITH_HARDENING" ]; then … … 131 121 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxpci/`echo $f|cut -d'>' -f2`" 132 122 done 133 sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_LINUX/build_in_tmp > $PATH_TMP/vboxpci/build_in_tmp134 chmod 0755 $PATH_TMP/vboxpci/build_in_tmp135 123 sed -e "s;_VERSION_;$VBOX_VERSION_STRING;g" < $PATH_VBOXPCI/linux/dkms.conf > $PATH_TMP/vboxpci/dkms.conf 136 124 if [ -n "$VBOX_WITH_HARDENING" ]; then … … 141 129 142 130 install -D -m 0644 $PATH_LINUX/Makefile $PATH_TMP/Makefile 131 install -D -m 0755 $PATH_LINUX/build_in_tmp $PATH_TMP/build_in_tmp 143 132 144 133 # Only temporary, omit from archive
Note:
See TracChangeset
for help on using the changeset viewer.