VirtualBox

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

Last change on this file since 195 was 195, checked in by vboxsync, 18 years ago

Created a script for loading the kernel extension (for development) and supplied some missing dependencies.

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 272 bytes
Line 
1#!/bin/bash
2
3#
4# For development.
5#
6
7DIR="VBoxDrv.kext"
8
9if [ ! -d "$DIR" ]; then
10 echo "Cannot find $DIR or it's not a directory..."
11 exit 1;
12fi
13
14sudo chown -R root:wheel "$DIR"
15sudo chmod -R o-rwx "$DIR"
16sudo kextload -t -v 6 "$DIR"
17sudo chown -R `whoami` "$DIR"
18
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette