mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
55 lines
1.8 KiB
Plaintext
55 lines
1.8 KiB
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
. /etc/rc.conf
|
||
|
. /etc/rc.d/functions
|
||
|
. /etc/vbox/vbox.cfg
|
||
|
|
||
|
LOG="/var/log/vbox-install.log"
|
||
|
if [ -n "$INSTALL_DIR" ]; then
|
||
|
VBOXMANAGE="$INSTALL_DIR/VBoxManage"
|
||
|
BUILDVBOXDRV="$INSTALL_DIR/src/vboxdrv/build_in_tmp"
|
||
|
BUILDVBOXNETFLT="$INSTALL_DIR/src/vboxnetflt/build_in_tmp"
|
||
|
BUILDVBOXNETADP="$INSTALL_DIR/src/vboxnetadp/build_in_tmp"
|
||
|
else
|
||
|
echo "missing vbox.cfg"
|
||
|
exit 0
|
||
|
fi
|
||
|
case "$1" in
|
||
|
setup)
|
||
|
if find /lib/modules/`uname -r` -name "vboxnetadp\.*" 2>/dev/null|grep -q vboxnetadp; then
|
||
|
stat_busy "Removing old VirtualBox netadp kernel module"
|
||
|
find /lib/modules/`uname -r` -name "vboxnetadp\.*" 2>/dev/null|xargs rm -f 2>/dev/null
|
||
|
stat_done
|
||
|
fi
|
||
|
if find /lib/modules/`uname -r` -name "vboxnetflt\.*" 2>/dev/null|grep -q vboxnetflt; then
|
||
|
stat_busy "Removing old VirtualBox netflt kernel module"
|
||
|
find /lib/modules/`uname -r` -name "vboxnetflt\.*" 2>/dev/null|xargs rm -f 2>/dev/null
|
||
|
stat_done
|
||
|
fi
|
||
|
if find /lib/modules/`uname -r` -name "vboxdrv\.*" 2>/dev/null|grep -q vboxdrv; then
|
||
|
stat_busy "Removing old VirtualBox kernel module"
|
||
|
find /lib/modules/`uname -r` -name "vboxdrv\.*" 2>/dev/null|xargs rm -f 2>/dev/null
|
||
|
stat_done
|
||
|
fi
|
||
|
stat_busy "Recompiling VirtualBox kernel modules"
|
||
|
if ! $BUILDVBOXDRV \
|
||
|
--save-module-symvers /tmp/vboxdrv-Module.symvers \
|
||
|
--no-print-directory install > $LOG 2>&1; then
|
||
|
echo "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
|
||
|
echo "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
|
||
|
echo "Look at $LOG to find out what went wrong"
|
||
|
fi
|
||
|
stat_done
|
||
|
;;
|
||
|
*)
|
||
|
echo "usage: $0 {setup}"
|
||
|
esac
|