#!/bin/sh ## @file # For development, builds and loads all the host drivers. # # # Copyright (C) 2010-2015 Oracle Corporation # # This file is part of VirtualBox Open Source Edition (OSE), as # available from http://www.virtualbox.org. This file is free software; # you can redistribute it and/or modify it under the terms of the GNU # General Public License (GPL) as published by the Free Software # Foundation, in version 2 as it comes in the "COPYING" file of the # VirtualBox OSE distribution. VirtualBox OSE is distributed in the # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. # # The below is GNU-specific. See VBox.sh for the longer Solaris/OS X version. TARGET=`readlink -e -- "${0}"` || exit 1 MY_DIR="${TARGET%/[!/]*}" set -e if ! test `echo /etc/udev/rules.d/*-vboxdrv.rules` \ = "/etc/udev/rules.d/*-vboxdrv.rules"; then echo "You can not use this script while you have a version of VirtualBox installed." echo "If you are running from the build directory you may have installed using" echo "loadall.sh. You may wish to re-run that." ## @todo Any one who needs different behaviour should decide what and do it. exit 1 fi test ${#} -eq 0 || if ! test ${#} -eq 1 || ! test "x${1}" = x-u; then echo "Usage: load.sh [-u]" exit 1 fi sudo "${MY_DIR}/vboxdrv.sh" stop test ${#} -eq 0 || exit 0 make -C "${MY_DIR}/src/vboxdrv" "$@" echo "Installing SUPDrv (aka VBoxDrv/vboxdrv)" sudo /sbin/insmod "${MY_DIR}/src/vboxdrv/vboxdrv.ko"