From f4f3a659b7663cf52c2f2e1fa8e58ed4000e29c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 18:49:11 +0200 Subject: Adding debian version 7.0.6-dfsg-1. Signed-off-by: Daniel Baumann --- debian/patches/37-do-not-run-if-not-in-vm.patch | 29 +++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 debian/patches/37-do-not-run-if-not-in-vm.patch (limited to 'debian/patches/37-do-not-run-if-not-in-vm.patch') diff --git a/debian/patches/37-do-not-run-if-not-in-vm.patch b/debian/patches/37-do-not-run-if-not-in-vm.patch new file mode 100644 index 00000000..9ae3fcd5 --- /dev/null +++ b/debian/patches/37-do-not-run-if-not-in-vm.patch @@ -0,0 +1,29 @@ +Description: Check if we are running in a virtual machine before wasting time +running virtualbox guest things +Author: Kevin Puetz (puetzk) + +Origin: https://bugs.launchpad.net/ubuntu/+source/virtualbox/+bug/1762491/comments/9 +Last-Update: 2018-07-19 + +Index: virtualbox/src/VBox/Additions/x11/Installer/98vboxadd-xclient +=================================================================== +--- virtualbox.orig/src/VBox/Additions/x11/Installer/98vboxadd-xclient ++++ virtualbox/src/VBox/Additions/x11/Installer/98vboxadd-xclient +@@ -25,6 +25,17 @@ + # SPDX-License-Identifier: GPL-3.0-only + # + ++in_virtual_machine() ++{ ++ if [ -z "$(lspci -d 80ee:cafe)" ]; then ++ echo "VirtualBox Additions disabled, not in a Virtual Machine" >&2 ++ return 1 ++ fi ++ ++ return 0 ++} ++in_virtual_machine || return ++ + # Sanity check: if non-writeable PID-files are present in the user home + # directory VBoxClient will fail to start. + for i in $HOME/.vboxclient-*.pid; do -- cgit v1.2.3