VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/darwin/load.sh@ 67954

Last change on this file since 67954 was 56293, checked in by vboxsync, 9 years ago

HostDrivers: Updated (C) year.

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 4.9 KB
Line 
1#!/bin/bash
2# $Id: load.sh 56293 2015-06-09 14:23:56Z vboxsync $
3## @file
4# For development.
5#
6
7#
8# Copyright (C) 2006-2015 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
28XNU_VERSION=`LC_ALL=C uname -r | LC_ALL=C cut -d . -f 1`
29DRVNAME="VBoxDrv.kext"
30BUNDLE="org.virtualbox.kext.VBoxDrv"
31
32DIR=`dirname "$0"`
33DIR=`cd "$DIR" && pwd`
34DIR="$DIR/$DRVNAME"
35if [ ! -d "$DIR" ]; then
36 echo "Cannot find $DIR or it's not a directory..."
37 exit 1;
38fi
39if [ -n "$*" ]; then
40 OPTS="$*"
41else
42 OPTS="-t"
43fi
44
45# Make sure VBoxUSB is unloaded as it might be using symbols from us.
46LOADED=`kextstat -b org.virtualbox.kext.VBoxUSB -l`
47if 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"
56fi
57
58# Make sure VBoxNetFlt is unloaded as it might be using symbols from us.
59LOADED=`kextstat -b org.virtualbox.kext.VBoxNetFlt -l`
60if 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"
69fi
70
71# Make sure VBoxNetAdp is unloaded as it might be using symbols from us.
72LOADED=`kextstat -b org.virtualbox.kext.VBoxNetAdp -l`
73if 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"
82fi
83
84# Try unload any existing instance first.
85LOADED=`kextstat -b $BUNDLE -l`
86if 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"
95fi
96
97set -e
98
99# Copy the .kext to the symbols directory and tweak the kextload options.
100if 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
107fi
108
109trap "sudo chown -R `whoami` $DIR; exit 1" INT
110trap "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.
113if sudo chown -R root:wheel "$DIR"; then
114 OWNER=`/usr/bin/stat -f "%u" "$DIR"`
115else
116 OWNER=1000
117fi
118if 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"
135fi
136sudo chmod -R o-rwx "$DIR"
137sync
138echo "load.sh: loading $DIR..."
139
140if [ "$XNU_VERSION" -ge "10" ]; then
141 echo "${SCRIPT_NAME}.sh: loading $DIR... (kextutil $OPTS \"$DIR\")"
142 sudo kextutil $OPTS "$DIR"
143else
144 sudo kextload $OPTS "$DIR"
145fi
146sync
147sudo chown -R `whoami` "$DIR"
148#sudo chmod 666 /dev/vboxdrv
149kextstat | grep org.virtualbox.kext
150if [ -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
153fi
154
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use