1 | #!/bin/bash
|
---|
2 | # $Id: load.sh 29844 2010-05-27 11:25:52Z vboxsync $
|
---|
3 | ## @file
|
---|
4 | # For development.
|
---|
5 | #
|
---|
6 |
|
---|
7 | #
|
---|
8 | # Copyright (C) 2006-2010 Oracle Corporation
|
---|
9 | #
|
---|
10 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | # available from http://www.virtualbox.org. This file is free software;
|
---|
12 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | # General Public License (GPL) as published by the Free Software
|
---|
14 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | #
|
---|
18 | # The contents of this file may alternatively be used under the terms
|
---|
19 | # of the Common Development and Distribution License Version 1.0
|
---|
20 | # (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
21 | # VirtualBox OSE distribution, in which case the provisions of the
|
---|
22 | # CDDL are applicable instead of those of the GPL.
|
---|
23 | #
|
---|
24 | # You may elect to license modified versions of this file under the
|
---|
25 | # terms and conditions of either the GPL or the CDDL or both.
|
---|
26 | #
|
---|
27 |
|
---|
28 | XNU_VERSION=`LC_ALL=C uname -r | LC_ALL=C cut -d . -f 1`
|
---|
29 | DRVNAME="VBoxDrv.kext"
|
---|
30 | BUNDLE="org.virtualbox.kext.VBoxDrv"
|
---|
31 |
|
---|
32 | DIR=`dirname "$0"`
|
---|
33 | DIR=`cd "$DIR" && pwd`
|
---|
34 | DIR="$DIR/$DRVNAME"
|
---|
35 | if [ ! -d "$DIR" ]; then
|
---|
36 | echo "Cannot find $DIR or it's not a directory..."
|
---|
37 | exit 1;
|
---|
38 | fi
|
---|
39 | if [ -n "$*" ]; then
|
---|
40 | OPTS="$*"
|
---|
41 | else
|
---|
42 | OPTS="-t"
|
---|
43 | fi
|
---|
44 |
|
---|
45 | # Make sure VBoxUSB is unloaded as it might be using symbols from us.
|
---|
46 | LOADED=`kextstat -b org.virtualbox.kext.VBoxUSB -l`
|
---|
47 | if test -n "$LOADED"; then
|
---|
48 | echo "load.sh: Unloading org.virtualbox.kext.VBoxUSB..."
|
---|
49 | sudo kextunload -v 6 -b org.virtualbox.kext.VBoxUSB
|
---|
50 | LOADED=`kextstat -b org.virtualbox.kext.VBoxUSB -l`
|
---|
51 | if test -n "$LOADED"; then
|
---|
52 | echo "load.sh: failed to unload org.virtualbox.kext.VBoxUSB, see above..."
|
---|
53 | exit 1;
|
---|
54 | fi
|
---|
55 | echo "load.sh: Successfully unloaded org.virtualbox.kext.VBoxUSB"
|
---|
56 | fi
|
---|
57 |
|
---|
58 | # Make sure VBoxNetFlt is unloaded as it might be using symbols from us.
|
---|
59 | LOADED=`kextstat -b org.virtualbox.kext.VBoxNetFlt -l`
|
---|
60 | if test -n "$LOADED"; then
|
---|
61 | echo "load.sh: Unloading org.virtualbox.kext.VBoxNetFlt..."
|
---|
62 | sudo kextunload -v 6 -b org.virtualbox.kext.VBoxNetFlt
|
---|
63 | LOADED=`kextstat -b org.virtualbox.kext.VBoxNetFlt -l`
|
---|
64 | if test -n "$LOADED"; then
|
---|
65 | echo "load.sh: failed to unload org.virtualbox.kext.VBoxNetFlt, see above..."
|
---|
66 | exit 1;
|
---|
67 | fi
|
---|
68 | echo "load.sh: Successfully unloaded org.virtualbox.kext.VBoxNetFlt"
|
---|
69 | fi
|
---|
70 |
|
---|
71 | # Make sure VBoxNetAdp is unloaded as it might be using symbols from us.
|
---|
72 | LOADED=`kextstat -b org.virtualbox.kext.VBoxNetAdp -l`
|
---|
73 | if test -n "$LOADED"; then
|
---|
74 | echo "load.sh: Unloading org.virtualbox.kext.VBoxNetAdp..."
|
---|
75 | sudo kextunload -v 6 -b org.virtualbox.kext.VBoxNetAdp
|
---|
76 | LOADED=`kextstat -b org.virtualbox.kext.VBoxNetAdp -l`
|
---|
77 | if test -n "$LOADED"; then
|
---|
78 | echo "load.sh: failed to unload org.virtualbox.kext.VBoxNetAdp, see above..."
|
---|
79 | exit 1;
|
---|
80 | fi
|
---|
81 | echo "load.sh: Successfully unloaded org.virtualbox.kext.VBoxNetAdp"
|
---|
82 | fi
|
---|
83 |
|
---|
84 | # Try unload any existing instance first.
|
---|
85 | LOADED=`kextstat -b $BUNDLE -l`
|
---|
86 | if test -n "$LOADED"; then
|
---|
87 | echo "load.sh: Unloading $BUNDLE..."
|
---|
88 | sudo kextunload -v 6 -b $BUNDLE
|
---|
89 | LOADED=`kextstat -b $BUNDLE -l`
|
---|
90 | if test -n "$LOADED"; then
|
---|
91 | echo "load.sh: failed to unload $BUNDLE, see above..."
|
---|
92 | exit 1;
|
---|
93 | fi
|
---|
94 | echo "load.sh: Successfully unloaded $BUNDLE"
|
---|
95 | fi
|
---|
96 |
|
---|
97 | set -e
|
---|
98 |
|
---|
99 | # Copy the .kext to the symbols directory and tweak the kextload options.
|
---|
100 | if test -n "$VBOX_DARWIN_SYMS"; then
|
---|
101 | echo "load.sh: copying the extension the symbol area..."
|
---|
102 | rm -Rf "$VBOX_DARWIN_SYMS/$DRVNAME"
|
---|
103 | mkdir -p "$VBOX_DARWIN_SYMS"
|
---|
104 | cp -R "$DIR" "$VBOX_DARWIN_SYMS/"
|
---|
105 | OPTS="$OPTS -s $VBOX_DARWIN_SYMS/ "
|
---|
106 | sync
|
---|
107 | fi
|
---|
108 |
|
---|
109 | trap "sudo chown -R `whoami` $DIR; exit 1" INT
|
---|
110 | trap "sudo chown -R `whoami` $DIR; exit 1" ERR
|
---|
111 | # On smbfs, this might succeed just fine but make no actual changes,
|
---|
112 | # so we might have to temporarily copy the driver to a local directory.
|
---|
113 | if sudo chown -R root:wheel "$DIR"; then
|
---|
114 | OWNER=`/usr/bin/stat -f "%u" "$DIR"`
|
---|
115 | else
|
---|
116 | OWNER=1000
|
---|
117 | fi
|
---|
118 | if test "$OWNER" -ne 0; then
|
---|
119 | TMP_DIR=/tmp/loaddrv.tmp
|
---|
120 | echo "load.sh: chown didn't work on $DIR, using temp location $TMP_DIR/$DRVNAME"
|
---|
121 |
|
---|
122 | # clean up first (no sudo rm)
|
---|
123 | if test -e "$TMP_DIR"; then
|
---|
124 | sudo chown -R `whoami` "$TMP_DIR"
|
---|
125 | rm -Rf "$TMP_DIR"
|
---|
126 | fi
|
---|
127 |
|
---|
128 | # make a copy and switch over DIR
|
---|
129 | mkdir -p "$TMP_DIR/"
|
---|
130 | sudo cp -Rp "$DIR" "$TMP_DIR/"
|
---|
131 | DIR="$TMP_DIR/$DRVNAME"
|
---|
132 |
|
---|
133 | # retry
|
---|
134 | sudo chown -R root:wheel "$DIR"
|
---|
135 | fi
|
---|
136 | sudo chmod -R o-rwx "$DIR"
|
---|
137 | sync
|
---|
138 | echo "load.sh: loading $DIR..."
|
---|
139 |
|
---|
140 | if [ "$XNU_VERSION" -ge "10" ]; then
|
---|
141 | echo "${SCRIPT_NAME}.sh: loading $DIR... (kextutil $OPTS \"$DIR\")"
|
---|
142 | sudo kextutil $OPTS "$DIR"
|
---|
143 | else
|
---|
144 | sudo kextload $OPTS "$DIR"
|
---|
145 | fi
|
---|
146 | sync
|
---|
147 | sudo chown -R `whoami` "$DIR"
|
---|
148 | #sudo chmod 666 /dev/vboxdrv
|
---|
149 | kextstat | grep org.virtualbox.kext
|
---|
150 | if [ -n "${VBOX_DARWIN_SYMS}" -a "$XNU_VERSION" -ge "10" ]; then
|
---|
151 | dsymutil -o "${VBOX_DARWIN_SYMS}/${DRVNAME}.dSYM" "${DIR}/Contents/MacOS/`basename -s .kext ${DRVNAME}`"
|
---|
152 | sync
|
---|
153 | fi
|
---|
154 |
|
---|