2016-05-16 23:36:43 +02:00
|
|
|
Index: VirtualBox-5.0.18/src/VBox/Additions/linux/installer/vboxadd.sh
|
|
|
|
===================================================================
|
|
|
|
--- VirtualBox-5.0.18.orig/src/VBox/Additions/linux/installer/vboxadd.sh
|
|
|
|
+++ VirtualBox-5.0.18/src/VBox/Additions/linux/installer/vboxadd.sh
|
2016-01-14 17:37:33 +01:00
|
|
|
@@ -23,9 +23,12 @@
|
2010-12-23 11:08:49 +01:00
|
|
|
# Provides: vboxadd
|
2016-01-14 17:37:33 +01:00
|
|
|
# Required-Start:
|
|
|
|
# Required-Stop:
|
2010-12-23 11:08:49 +01:00
|
|
|
-# Default-Start: 2 3 4 5
|
2016-01-14 17:37:33 +01:00
|
|
|
+# Should-Start: $remote_fs
|
|
|
|
+# Should-Stop: $remote_fs
|
2010-12-23 11:08:49 +01:00
|
|
|
+# Default-Start: 2 3 5
|
|
|
|
# Default-Stop: 0 1 6
|
|
|
|
# Description: VirtualBox Linux Additions kernel modules
|
|
|
|
+# Short-Description: VirtualBox Linux Additions kernel modules
|
|
|
|
### END INIT INFO
|
|
|
|
|
2012-10-02 16:03:09 +02:00
|
|
|
PATH=$PATH:/bin:/sbin:/usr/sbin
|
2016-05-16 23:36:43 +02:00
|
|
|
@@ -148,7 +151,6 @@ fail()
|
|
|
|
|
|
|
|
dev=/dev/vboxguest
|
|
|
|
userdev=/dev/vboxuser
|
|
|
|
-config=/var/lib/VBoxGuestAdditions/config
|
|
|
|
owner=vboxadd
|
|
|
|
group=1
|
|
|
|
|
|
|
|
@@ -226,12 +228,6 @@ do_vboxguest_non_udev()
|
2010-12-23 11:08:49 +01:00
|
|
|
fail "Cannot create device $dev with major $maj and minor $min"
|
|
|
|
}
|
|
|
|
fi
|
|
|
|
- chown $owner:$group $dev 2>/dev/null || {
|
|
|
|
- rm -f $dev 2>/dev/null
|
|
|
|
- rm -f $userdev 2>/dev/null
|
|
|
|
- rmmod vboxguest 2>/dev/null
|
|
|
|
- fail "Cannot change owner $owner:$group for device $dev"
|
|
|
|
- }
|
|
|
|
|
|
|
|
if [ ! -c $userdev ]; then
|
|
|
|
maj=10
|
2016-05-16 23:36:43 +02:00
|
|
|
@@ -242,12 +238,6 @@ do_vboxguest_non_udev()
|
2010-12-23 11:08:49 +01:00
|
|
|
rmmod vboxguest 2>/dev/null
|
|
|
|
fail "Cannot create device $userdev with major $maj and minor $min"
|
|
|
|
}
|
|
|
|
- chown $owner:$group $userdev 2>/dev/null || {
|
|
|
|
- rm -f $dev 2>/dev/null
|
|
|
|
- rm -f $userdev 2>/dev/null
|
|
|
|
- rmmod vboxguest 2>/dev/null
|
|
|
|
- fail "Cannot change owner $owner:$group for device $userdev"
|
|
|
|
- }
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
2016-05-16 23:36:43 +02:00
|
|
|
@@ -255,13 +245,6 @@ do_vboxguest_non_udev()
|
|
|
|
start()
|
|
|
|
{
|
|
|
|
begin "Starting the VirtualBox Guest Additions ";
|
|
|
|
- if test -r $config; then
|
|
|
|
- . $config
|
|
|
|
- else
|
|
|
|
- fail "Configuration file $config not found"
|
|
|
|
- fi
|
|
|
|
- test -n "$INSTALL_DIR" -a -n "$INSTALL_VER" ||
|
|
|
|
- fail "Configuration file $config not complete"
|
2015-05-15 17:49:23 +02:00
|
|
|
uname -r | grep -q -E '^2\.6|^3|^4' 2>/dev/null &&
|
2013-03-03 11:58:46 +01:00
|
|
|
ps -A -o comm | grep -q '/*udevd$' 2>/dev/null ||
|
|
|
|
no_udev=1
|
2016-05-16 23:36:43 +02:00
|
|
|
@@ -300,7 +283,7 @@ start()
|
|
|
|
$MODPROBE vboxvideo > /dev/null 2>&1
|
|
|
|
|
|
|
|
# Put the X.Org driver in place. This is harmless if it is not needed.
|
|
|
|
- /sbin/rcvboxadd-x11 setup
|
|
|
|
+# /sbin/rcvboxadd-x11 setup
|
|
|
|
# Install the guest OpenGL drivers. For now we don't support
|
|
|
|
# multi-architecture installations
|
|
|
|
rm -rf /etc/ld.so.conf.d/00vboxvideo.conf
|
|
|
|
@@ -475,7 +458,7 @@ extra_setup()
|
|
|
|
ln -sf "$lib_path/$PACKAGE/mount.vboxsf" /sbin
|
|
|
|
# And an rc file to re-build the kernel modules and re-set-up the X server.
|
|
|
|
ln -sf "$lib_path/$PACKAGE/vboxadd" /sbin/rcvboxadd
|
|
|
|
- ln -sf "$lib_path/$PACKAGE/vboxadd-x11" /sbin/rcvboxadd-x11
|
|
|
|
+# ln -sf "$lib_path/$PACKAGE/vboxadd-x11" /sbin/rcvboxadd-x11
|
|
|
|
# At least Fedora 11 and Fedora 12 require the correct security context when
|
|
|
|
# executing this command from service scripts. Shouldn't hurt for other
|
|
|
|
# distributions.
|
|
|
|
@@ -497,49 +480,13 @@ extra_setup()
|
2011-01-19 14:48:53 +01:00
|
|
|
# setup_script
|
|
|
|
setup()
|
|
|
|
{
|
2012-10-02 16:03:09 +02:00
|
|
|
- if test -r $config; then
|
|
|
|
- . $config
|
|
|
|
- else
|
|
|
|
- fail "Configuration file $config not found"
|
|
|
|
- fi
|
|
|
|
- test -n "$INSTALL_DIR" -a -n "$INSTALL_VER" ||
|
|
|
|
- fail "Configuration file $config not complete"
|
|
|
|
- export BUILD_TYPE
|
|
|
|
- export USERNAME
|
|
|
|
-
|
2015-12-27 10:25:33 +01:00
|
|
|
- rm -f $LOG
|
2012-10-02 16:03:09 +02:00
|
|
|
- MODULE_SRC="$INSTALL_DIR/src/vboxguest-$INSTALL_VER"
|
|
|
|
- BUILDINTMP="$MODULE_SRC/build_in_tmp"
|
|
|
|
- DODKMS="$MODULE_SRC/do_dkms"
|
|
|
|
- chcon -t bin_t "$BUILDINTMP" > /dev/null 2>&1
|
|
|
|
- chcon -t bin_t "$DODKMS" > /dev/null 2>&1
|
|
|
|
-
|
2011-01-19 14:48:53 +01:00
|
|
|
- setup_modules
|
|
|
|
- mod_succ="$?"
|
|
|
|
- extra_setup
|
|
|
|
- if [ "$mod_succ" -eq "0" ]; then
|
|
|
|
- if running_vboxguest || running_vboxadd; then
|
|
|
|
- printf "You should restart your guest to make sure the new modules are actually used\n\n"
|
|
|
|
- else
|
|
|
|
- start
|
|
|
|
- fi
|
|
|
|
- fi
|
2012-10-02 16:03:09 +02:00
|
|
|
+ begin "Recompiling VirtualBox kernel module, NOT. It has been packaged."
|
2011-01-19 14:48:53 +01:00
|
|
|
+ succ_msg
|
|
|
|
}
|
|
|
|
|
|
|
|
# cleanup_script
|
2016-05-16 23:36:43 +02:00
|
|
|
cleanup()
|
|
|
|
{
|
|
|
|
- if test -r $config; then
|
|
|
|
- . $config
|
|
|
|
- test -n "$INSTALL_DIR" -a -n "$INSTALL_VER" ||
|
|
|
|
- fail "Configuration file $config not complete"
|
|
|
|
- DODKMS="$INSTALL_DIR/src/vboxguest-$INSTALL_VER/do_dkms"
|
|
|
|
- elif test -x ./do_dkms; then # Executing as part of the installer...
|
|
|
|
- DODKMS=./do_dkms
|
|
|
|
- else
|
|
|
|
- fail "Configuration file $config not found"
|
|
|
|
- fi
|
|
|
|
-
|
|
|
|
# Delete old versions of VBox modules.
|
|
|
|
cleanup_modules
|
|
|
|
depmod
|
|
|
|
@@ -550,12 +497,12 @@ cleanup()
|
|
|
|
done
|
|
|
|
|
|
|
|
# Clean-up X11-related bits
|
|
|
|
- /sbin/rcvboxadd-x11 cleanup
|
|
|
|
+# /sbin/rcvboxadd-x11 cleanup
|
|
|
|
|
|
|
|
# Remove other files
|
|
|
|
rm /sbin/mount.vboxsf 2>/dev/null
|
|
|
|
rm /sbin/rcvboxadd 2>/dev/null
|
|
|
|
- rm /sbin/rcvboxadd-x11 2>/dev/null
|
|
|
|
+# rm /sbin/rcvboxadd-x11 2>/dev/null
|
|
|
|
rm /etc/udev/rules.d/60-vboxadd.rules 2>/dev/null
|
|
|
|
}
|
|
|
|
|