1 | #!/bin/bash
|
---|
2 | # $Id: load.sh 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
3 | ## @file
|
---|
4 | # For development.
|
---|
5 | #
|
---|
6 |
|
---|
7 | #
|
---|
8 | # Copyright (C) 2006-2024 Oracle and/or its affiliates.
|
---|
9 | #
|
---|
10 | # This file is part of VirtualBox base platform packages, as
|
---|
11 | # available from https://www.virtualbox.org.
|
---|
12 | #
|
---|
13 | # This program is free software; you can redistribute it and/or
|
---|
14 | # modify it under the terms of the GNU General Public License
|
---|
15 | # as published by the Free Software Foundation, in version 3 of the
|
---|
16 | # License.
|
---|
17 | #
|
---|
18 | # This program is distributed in the hope that it will be useful, but
|
---|
19 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
20 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
21 | # General Public License for more details.
|
---|
22 | #
|
---|
23 | # You should have received a copy of the GNU General Public License
|
---|
24 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
25 | #
|
---|
26 | # The contents of this file may alternatively be used under the terms
|
---|
27 | # of the Common Development and Distribution License Version 1.0
|
---|
28 | # (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
29 | # in the VirtualBox distribution, in which case the provisions of the
|
---|
30 | # CDDL are applicable instead of those of the GPL.
|
---|
31 | #
|
---|
32 | # You may elect to license modified versions of this file under the
|
---|
33 | # terms and conditions of either the GPL or the CDDL or both.
|
---|
34 | #
|
---|
35 | # SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
36 | #
|
---|
37 |
|
---|
38 | DRVNAME="vboxdrv"
|
---|
39 | DRIVERS_USING_IT="vboxusb vboxusbmon vboxnet vboxflt vboxbow"
|
---|
40 |
|
---|
41 | DRVFILE=`dirname "$0"`
|
---|
42 | DRVFILE=`cd "$DRVFILE" && pwd`
|
---|
43 | DRVFILE="$DRVFILE/$DRVNAME"
|
---|
44 | if [ ! -f "$DRVFILE" ]; then
|
---|
45 | echo "load.sh: Cannot find $DRVFILE or it's not a file..."
|
---|
46 | exit 1;
|
---|
47 | fi
|
---|
48 | if [ ! -f "$DRVFILE.conf" ]; then
|
---|
49 | echo "load.sh: Cannot find $DRVFILE.conf or it's not a file..."
|
---|
50 | exit 1;
|
---|
51 | fi
|
---|
52 |
|
---|
53 | SUDO=sudo
|
---|
54 | hash "${SUDO}" 2> /dev/null || SUDO=pfexec
|
---|
55 | #set -x
|
---|
56 |
|
---|
57 | # Disable the zone access service.
|
---|
58 | servicefound=`svcs -H "virtualbox/zoneaccess" 2>/dev/null | grep '^online'`
|
---|
59 | if test ! -z "$servicefound"; then
|
---|
60 | $SUDO svcadm disable svc:/application/virtualbox/zoneaccess:default
|
---|
61 | fi
|
---|
62 |
|
---|
63 | # Unload driver that may depend on the driver we're going to (re-)load
|
---|
64 | # as well as the driver itself.
|
---|
65 | for drv in $DRIVERS_USING_IT $DRVNAME;
|
---|
66 | do
|
---|
67 | LOADED=`modinfo | grep -w "$drv"`
|
---|
68 | if test -n "$LOADED"; then
|
---|
69 | MODID=`echo "$LOADED" | cut -d ' ' -f 1`
|
---|
70 | $SUDO modunload -i $MODID;
|
---|
71 | LOADED=`modinfo | grep -w "$drv"`;
|
---|
72 | if test -n "$LOADED"; then
|
---|
73 | echo "load.sh: failed to unload $drv";
|
---|
74 | dmesg | tail
|
---|
75 | exit 1;
|
---|
76 | fi
|
---|
77 | fi
|
---|
78 | done
|
---|
79 |
|
---|
80 | #
|
---|
81 | # Reconfigure the driver so it get a major number.
|
---|
82 | #
|
---|
83 | # Note! We have to copy the driver and config files to somewhere the kernel can
|
---|
84 | # find them. It is searched for as drv/${DRVNAME}.conf in
|
---|
85 | # kobj_module_path, which is usually:
|
---|
86 | # /platform/i86pc/kernel /kernel /usr/kernel
|
---|
87 | # To try prevent bad drivers from being loaded on the next boot, we remove
|
---|
88 | # always the files.
|
---|
89 | #
|
---|
90 | MY_RC=1
|
---|
91 | set -e
|
---|
92 | $SUDO rm -f \
|
---|
93 | "/platform/i86pc/kernel/drv/${DRVNAME}.conf" \
|
---|
94 | "/platform/i86pc/kernel/drv/${DRVNAME}" \
|
---|
95 | "/platform/i86pc/kernel/drv/amd64/${DRVNAME}"
|
---|
96 | sync
|
---|
97 | $SUDO cp "${DRVFILE}" /platform/i86pc/kernel/drv/amd64/
|
---|
98 | $SUDO cp "${DRVFILE}.conf" /platform/i86pc/kernel/drv/
|
---|
99 | set +e
|
---|
100 |
|
---|
101 | $SUDO rem_drv $DRVNAME
|
---|
102 | if $SUDO add_drv -v $DRVNAME; then
|
---|
103 | sync
|
---|
104 | if $SUDO modload "/platform/i86pc/kernel/drv/amd64/${DRVNAME}"; then
|
---|
105 | echo "load.sh: successfully loaded the driver"
|
---|
106 | modinfo | grep -w "$DRVNAME"
|
---|
107 | MY_RC=0
|
---|
108 | if test ! -h "/dev/vboxdrv"; then
|
---|
109 | $SUDO ln -sf "/devices/pseudo/vboxdrv@0:vboxdrv" /dev/vboxdrv
|
---|
110 | $SUDO chmod 0666 /dev/vboxdrv
|
---|
111 | fi
|
---|
112 | else
|
---|
113 | dmesg | tail
|
---|
114 | echo "load.sh: modload failed"
|
---|
115 | fi
|
---|
116 | else
|
---|
117 | dmesg | tail
|
---|
118 | echo "load.sh: add_drv failed."
|
---|
119 | fi
|
---|
120 |
|
---|
121 | $SUDO rm -f \
|
---|
122 | "/platform/i86pc/kernel/drv/${DRVNAME}.conf" \
|
---|
123 | "/platform/i86pc/kernel/drv/${DRVNAME}" \
|
---|
124 | "/platform/i86pc/kernel/drv/amd64/${DRVNAME}"
|
---|
125 | sync
|
---|
126 |
|
---|
127 | exit $MY_RC;
|
---|
128 |
|
---|