Skip to content
Snippets Groups Projects
Commit 11923759 authored by Rom Walton's avatar Rom Walton
Browse files

VBOX: Latest versions of VirtualBox changed the kernel drivers missing error message.

parent d3d57cae
Branches
Tags
No related merge requests found
......@@ -1351,8 +1351,11 @@ bool VBOX_VM::is_system_ready(std::string& message) {
rc = false;
}
if (output.find("WARNING: The vboxdrv kernel module is not loaded.") != string::npos) {
vboxlog_msg("WARNING: The vboxdrv kernel module is not loaded.");
if (
(output.find("WARNING: The vboxdrv kernel module is not loaded.") != string::npos) ||
(output.find("WARNING: The VirtualBox kernel modules are not loaded.") != string::npos)
){
vboxlog_msg("WARNING: The VirtualBox kernel modules are not loaded.");
vboxlog_msg("WARNING: Please update/recompile VirtualBox kernel drivers.");
message = "Please update/recompile VirtualBox kernel drivers.";
rc = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment