1
0
Fork 0
virtualbox/debian/patches/07-vboxnetflt-reference.patch
Daniel Baumann aef005766e
Adding debian version 7.0.20-dfsg-1.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 09:56:25 +02:00

16 lines
844 B
Diff

Description: Made error message tell about missing vboxnetflt module.
Author: Michael Meskes <meskes@debian.org>
Index: virtualbox/src/VBox/Devices/Network/DrvIntNet.cpp
===================================================================
--- virtualbox.orig/src/VBox/Devices/Network/DrvIntNet.cpp
+++ virtualbox/src/VBox/Devices/Network/DrvIntNet.cpp
@@ -1991,7 +1991,7 @@
return VERR_PDM_NO_ATTACHED_DRIVER;
}
return PDMDrvHlpVMSetError(pDrvIns, rc, RT_SRC_POS,
- N_("Failed to open/create the internal network '%s'"), pThis->szNetwork);
+ N_("Failed to open/create the internal network '%s' (you might need to modprobe vboxnetflt to make it accessible)"), pThis->szNetwork);
}
AssertRelease(OpenReq.hIf != INTNET_HANDLE_INVALID);