mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
vbox5: disable support of unrestricted-guest mode
Currently, Ubuntu does not work in unrestricted-guest mode, so, disable it until this is fixed. Issue #2338
This commit is contained in:
parent
710947e0a3
commit
c232886e0f
@ -37,6 +37,12 @@ VMMR3DECL(int) HMR3Init(PVM pVM)
|
||||
&pVM->hm.s.vmx.fAllowUnrestricted, true);
|
||||
AssertRCReturn(rc, rc);
|
||||
|
||||
/* XXX fix Ubuntu and unrestricted guest support, disable by default atm */
|
||||
if (pVM->hm.s.vmx.fAllowUnrestricted) {
|
||||
pVM->hm.s.vmx.fAllowUnrestricted = false;
|
||||
Genode::warning("unrestricted guest support disabled");
|
||||
}
|
||||
|
||||
/* check whether to enable pae and nx bit - in 64bit host mode */
|
||||
rc = CFGMR3QueryBoolDef(CFGMR3GetRoot(pVM), "EnablePAE", &enable_pae_nx,
|
||||
false);
|
||||
|
Loading…
Reference in New Issue
Block a user