b01946cf966a38d8c9302826bc641649c669eb9bvboxsync#!/bin/bash
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync## @file
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync# For development, builds and loads all the host drivers.
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync#
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync#
c58f1213e628a545081c70e26c6b67a841cff880vboxsync# Copyright (C) 2010-2012 Oracle Corporation
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync#
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync# This file is part of VirtualBox Open Source Edition (OSE), as
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync# available from http://www.virtualbox.org. This file is free software;
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync# you can redistribute it and/or modify it under the terms of the GNU
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync# General Public License (GPL) as published by the Free Software
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync# Foundation, in version 2 as it comes in the "COPYING" file of the
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync#
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync
b01946cf966a38d8c9302826bc641649c669eb9bvboxsyncMY_DIR=`dirname "$0"`
b01946cf966a38d8c9302826bc641649c669eb9bvboxsyncMY_DIR=`cd "${MY_DIR}" && pwd`
b01946cf966a38d8c9302826bc641649c669eb9bvboxsyncif [ ! -d "${MY_DIR}" ]; then
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync echo "Cannot find ${MY_DIR} or it's not a directory..."
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync exit 1;
b01946cf966a38d8c9302826bc641649c669eb9bvboxsyncfi
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync
b01946cf966a38d8c9302826bc641649c669eb9bvboxsyncset -e
fa7c343b6e1507960e651c04a3241ff117a1d0fevboxsynckmk -C "${MY_DIR}/src/" "$@"
b01946cf966a38d8c9302826bc641649c669eb9bvboxsyncsudo make -C "${MY_DIR}/src/" load
b01946cf966a38d8c9302826bc641649c669eb9bvboxsync