summaryrefslogtreecommitdiffstats
path: root/js/phpvirtualbox.js
diff options
context:
space:
mode:
authorchotaire <chotaire@chotaire.net>2019-09-07 14:00:28 +0200
committerchotaire <chotaire@chotaire.net>2019-09-07 14:00:28 +0200
commit9e9a0c80709be3624a8790dc10cb9d7a4f1b6d14 (patch)
treead4958d6967a513808f476bc9e7cdbb4bfd838b0 /js/phpvirtualbox.js
parent9b65e6772cd92c755f291c7078d2769aa5487287 (diff)
downloadphpvirtualbox-9e9a0c80709be3624a8790dc10cb9d7a4f1b6d14.zip
phpvirtualbox-9e9a0c80709be3624a8790dc10cb9d7a4f1b6d14.tar.gz
phpvirtualbox-9e9a0c80709be3624a8790dc10cb9d7a4f1b6d14.tar.bz2
Added Nested Virtualization (by pasha1st)
Diffstat (limited to 'js/phpvirtualbox.js')
-rw-r--r--js/phpvirtualbox.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/js/phpvirtualbox.js b/js/phpvirtualbox.js
index 19fd02e..3889f53 100644
--- a/js/phpvirtualbox.js
+++ b/js/phpvirtualbox.js
@@ -339,6 +339,7 @@ var vboxVMDetailsSections = {
if(d['HWVirtExProperties'].Enabled) acList[acList.length] = trans('VT-x/AMD-V');
if(d['HWVirtExProperties'].NestedPaging) acList[acList.length] = trans('Nested Paging');
if(d['CpuProperties']['PAE']) acList[acList.length] = trans('PAE/NX');
+ if(d['CpuProperties']['HWVirt']) acList[acList.length] = trans('Nested Virtualization');
if(d['EffectiveParavirtProvider'] != 'None')
acList[acList.length] = trans(d['EffectiveParavirtProvider'] + ' Paravirtualization');