initial commit of file from CVS for smeserver-virtualbox on Sat Sep 7 21:14:17 AEST 2024

This commit is contained in:
Trevor Batley
2024-09-07 21:14:17 +10:00
parent b69cbf6dc9
commit d2de291fe3
26 changed files with 973 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/bash
##script to compile vboxdrv kernel module if needed by virtualbox
##stephane de Labrusse <stephdl@de-labrusse.fr>
rkernel=`uname -r`
vmxnet="/lib/modules/`uname -r`/misc/vboxdrv.ko"
if [ ! -e $vmxnet ]; then
/usr/lib/virtualbox/vboxdrv.sh setup;
fi