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 |
|
---|
7 | DIR="VBoxDrv.kext"
|
---|
8 |
|
---|
9 | if [ ! -d "$DIR" ]; then
|
---|
10 | echo "Cannot find $DIR or it's not a directory..."
|
---|
11 | exit 1;
|
---|
12 | fi
|
---|
13 |
|
---|
14 | sudo chown -R root:wheel "$DIR"
|
---|
15 | sudo chmod -R o-rwx "$DIR"
|
---|
16 | sudo kextload -t -v 6 "$DIR"
|
---|
17 | sudo chown -R `whoami` "$DIR"
|
---|
18 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.