forked from pool/virtualbox
2296780557
- Updated file "Fixes_for_Leap15.1.patch" to handle one addition problem due to backporting of kernel APIa. Remove "BuildRequires: quilt" - that package is not needed. VirtualBox 6.0.6 fixes the following: CVE-2019-2656, CVE-2019-2680, CVE-2019-2696, CVE-2019-2703, CVE-2019-2721, CVE-2019-2722, CVE-2019-2723, CVE-2019-2657, CVE-2019-2690, CVE-2019-2679, CVE-2019-2678, and CVE-2019-2574 boo#1132827. - Version bump to 6.0.6 (released April 17 2019 by Oracle) The following files in the openSUSE implemetation are removed: "fix_32_bit_builds.patch", "fixes_for_5.0.patch", and "fixes_for_5.1.patch". These issues are fixed upstream. OBS-URL: https://build.opensuse.org/request/show/696073 OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=486
71 lines
2.4 KiB
Diff
71 lines
2.4 KiB
Diff
Index: VirtualBox-6.0.4/src/apps/Makefile.kmk
|
|
===================================================================
|
|
--- VirtualBox-6.0.4.orig/src/apps/Makefile.kmk
|
|
+++ VirtualBox-6.0.4/src/apps/Makefile.kmk
|
|
@@ -33,5 +33,7 @@ include $(PATH_SUB_CURRENT)/VBoxPermissi
|
|
|
|
include $(PATH_SUB_CURRENT)/VBoxUSB_DevRules/Makefile.kmk
|
|
|
|
+include $(PATH_SUB_CURRENT)/VBoxSUIDMessage/Makefile.kmk
|
|
+
|
|
include $(FILE_KBUILD_SUB_FOOTER)
|
|
|
|
Index: VirtualBox-6.0.4/src/apps/VBoxSUIDMessage/Makefile.kmk
|
|
===================================================================
|
|
--- /dev/null
|
|
+++ VirtualBox-6.0.4/src/apps/VBoxSUIDMessage/Makefile.kmk
|
|
@@ -0,0 +1,33 @@
|
|
+# $Id: Makefile.kmk 28800 2010-04-27 08:22:32Z vboxsync $
|
|
+## @file
|
|
+#
|
|
+# VBoxSUIDMessage is wrapper for suse users
|
|
+#
|
|
+#
|
|
+# Copyright (C) 2009 Oracle Corporation
|
|
+#
|
|
+# This file is part of VirtualBox Open Source Edition (OSE), as
|
|
+# available from http://www.virtualbox.org. This file is free software;
|
|
+# you can redistribute it and/or modify it under the terms of the GNU
|
|
+# General Public License (GPL) as published by the Free Software
|
|
+# Foundation, in version 2 as it comes in the "COPYING" file of the
|
|
+# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
|
+# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
|
+#
|
|
+
|
|
+
|
|
+SUB_DEPTH = ../../..
|
|
+include $(KBUILD_PATH)/subheader.kmk
|
|
+
|
|
+PROGRAMS += VBoxSUIDMessage
|
|
+
|
|
+VBoxSUIDMessage_TEMPLATE = VBOXQTGUIEXE
|
|
+VBoxSUIDMessage_SOURCES = VBoxSUIDMessage.cpp
|
|
+VBoxSUIDMessage_QT_MODULES = Core Gui
|
|
+VBoxSUIDMessage_QT_MODULES += Widgets
|
|
+
|
|
+#INSTALLS += VBoxSUIDMessage
|
|
+
|
|
+include $(KBUILD_PATH)/subfooter.kmk
|
|
+
|
|
+
|
|
Index: VirtualBox-6.0.4/src/apps/VBoxSUIDMessage/VBoxSUIDMessage.cpp
|
|
===================================================================
|
|
--- /dev/null
|
|
+++ VirtualBox-6.0.4/src/apps/VBoxSUIDMessage/VBoxSUIDMessage.cpp
|
|
@@ -0,0 +1,15 @@
|
|
+#include <QtWidgets/QApplication>
|
|
+#include <QtWidgets/QMessageBox>
|
|
+int main(int argc, char *argv[])
|
|
+{
|
|
+ QApplication app(argc, argv);
|
|
+ QMessageBox msgBox;
|
|
+ msgBox.setWindowTitle(QObject::tr("File Permissions problem !"));
|
|
+ msgBox.setText(QObject::tr("File VirtualBoxVM must be SUID, but the file permissions are wrong.\n\n"
|
|
+ "To fix this problem, please run\n"
|
|
+ "sudo chmod 4711 /usr/lib/virtualbox/VirtualBoxVM\n\n"
|
|
+ "Until this is done, Virtual Machines cannot run."));
|
|
+ msgBox.exec();
|
|
+ app.quit();
|
|
+ return 0;
|
|
+}
|