mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
9a3d4f1ed0
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
69 lines
3 KiB
Diff
69 lines
3 KiB
Diff
--- mnt/progs/slack/test/VirtualBox-3.2.10_OSE/src/VBox/Installer/linux/vboxdrv.sh.in 2010-10-08 22:10:25.000000000 +0200
|
|
+++ tmp/vboxdrv.sh.in 2010-10-14 17:43:18.545000084 +0200
|
|
@@ -43,16 +43,8 @@
|
|
|
|
if [ -n "$INSTALL_DIR" ]; then
|
|
VBOXMANAGE="$INSTALL_DIR/VBoxManage"
|
|
- DODKMS="$INSTALL_DIR/src/vboxhost/do_dkms"
|
|
- BUILDVBOXDRV="$INSTALL_DIR/src/vboxhost/vboxdrv/build_in_tmp"
|
|
- BUILDVBOXNETFLT="$INSTALL_DIR/src/vboxhost/vboxnetflt/build_in_tmp"
|
|
- BUILDVBOXNETADP="$INSTALL_DIR/src/vboxhost/vboxnetadp/build_in_tmp"
|
|
else
|
|
VBOXMANAGE="/usr/lib/%PACKAGE%/VBoxManage"
|
|
- DODKMS="/usr/share/%PACKAGE%/src/vboxhost/do_dkms"
|
|
- BUILDVBOXDRV="/usr/share/%PACKAGE%/src/vboxhost/vboxdrv/build_in_tmp"
|
|
- BUILDVBOXNETFLT="/usr/share/%PACKAGE%/src/vboxhost/vboxnetflt/build_in_tmp"
|
|
- BUILDVBOXNETADP="/usr/share/%PACKAGE%/src/vboxhost/vboxnetadp/build_in_tmp"
|
|
fi
|
|
|
|
# silently exit if the package was uninstalled but not purged,
|
|
@@ -284,48 +276,7 @@
|
|
# setup_script
|
|
setup()
|
|
{
|
|
- stop
|
|
- begin_msg "Uninstalling old VirtualBox DKMS kernel modules"
|
|
- $DODKMS uninstall > $LOG
|
|
- succ_msg
|
|
- if find /lib/modules/`uname -r` -name "vboxnetadp\.*" 2>/dev/null|grep -q vboxnetadp; then
|
|
- begin_msg "Removing old VirtualBox netadp kernel module"
|
|
- find /lib/modules/`uname -r` -name "vboxnetadp\.*" 2>/dev/null|xargs rm -f 2>/dev/null
|
|
- succ_msg
|
|
- fi
|
|
- if find /lib/modules/`uname -r` -name "vboxnetflt\.*" 2>/dev/null|grep -q vboxnetflt; then
|
|
- begin_msg "Removing old VirtualBox netflt kernel module"
|
|
- find /lib/modules/`uname -r` -name "vboxnetflt\.*" 2>/dev/null|xargs rm -f 2>/dev/null
|
|
- succ_msg
|
|
- fi
|
|
- if find /lib/modules/`uname -r` -name "vboxdrv\.*" 2>/dev/null|grep -q vboxdrv; then
|
|
- begin_msg "Removing old VirtualBox kernel module"
|
|
- find /lib/modules/`uname -r` -name "vboxdrv\.*" 2>/dev/null|xargs rm -f 2>/dev/null
|
|
- succ_msg
|
|
- fi
|
|
- begin_msg "Trying to register the VirtualBox kernel modules using DKMS"
|
|
- if ! $DODKMS install >> $LOG; then
|
|
- fail_msg "Failed, trying without DKMS"
|
|
- begin_msg "Recompiling VirtualBox kernel modules"
|
|
- if ! $BUILDVBOXDRV \
|
|
- --save-module-symvers /tmp/vboxdrv-Module.symvers \
|
|
- --no-print-directory install >> $LOG 2>&1; then
|
|
- failure "Look at $LOG to find out what went wrong"
|
|
- fi
|
|
- if ! $BUILDVBOXNETFLT \
|
|
- --use-module-symvers /tmp/vboxdrv-Module.symvers \
|
|
- --no-print-directory install >> $LOG 2>&1; then
|
|
- failure "Look at $LOG to find out what went wrong"
|
|
- fi
|
|
- if ! $BUILDVBOXNETADP \
|
|
- --use-module-symvers /tmp/vboxdrv-Module.symvers \
|
|
- --no-print-directory install >> $LOG 2>&1; then
|
|
- failure "Look at $LOG to find out what went wrong"
|
|
- fi
|
|
- fi
|
|
- rm -f /etc/vbox/module_not_compiled
|
|
- succ_msg
|
|
- start
|
|
+ echo "Not implemented! Please use the virtualbox-kernel.SlackBuild available at SlackBuilds.org instead."
|
|
}
|
|
|
|
dmnstatus()
|