summaryrefslogtreecommitdiffstats
path: root/debian/patches/07-vboxnetflt-reference.patch
blob: 6094ed1f239a579f98b7c31c445f0216da55ef60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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	2013-11-19 03:41:03.413475913 -0500
+++ virtualbox/src/VBox/Devices/Network/DrvIntNet.cpp	2013-11-19 03:41:03.409475913 -0500
@@ -1766,7 +1766,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);