summaryrefslogtreecommitdiffstats
path: root/js/phpvirtualbox.js
diff options
context:
space:
mode:
authorh6w <tudor@tudorholton.com>2020-01-30 10:06:17 +1100
committerGitHub <noreply@github.com>2020-01-30 10:06:17 +1100
commit6f31e72d0feb537262d8bcdd6f1c19d70ae3d5db (patch)
treee171fd4fb115ec6246c68987a86eaec0c6f57a02 /js/phpvirtualbox.js
parentb19edfc483dff008c3dcdd9a1c69c8691ffddd2c (diff)
parentb83d4961dc4e57046cd863e009cfede77c96d309 (diff)
downloadphpvirtualbox-6f31e72d0feb537262d8bcdd6f1c19d70ae3d5db.zip
phpvirtualbox-6f31e72d0feb537262d8bcdd6f1c19d70ae3d5db.tar.gz
phpvirtualbox-6f31e72d0feb537262d8bcdd6f1c19d70ae3d5db.tar.bz2
Merge pull request #187 from chotaire/chot-nested-virtualization
Add Nested Virtualization & fix VRAMSize attribute missing error
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 fb1edec..6e9f90a 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');