diff options
author | h6w <tudor@tudorholton.com> | 2020-01-30 10:06:17 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-30 10:06:17 +1100 |
commit | 6f31e72d0feb537262d8bcdd6f1c19d70ae3d5db (patch) | |
tree | e171fd4fb115ec6246c68987a86eaec0c6f57a02 /js/phpvirtualbox.js | |
parent | b19edfc483dff008c3dcdd9a1c69c8691ffddd2c (diff) | |
parent | b83d4961dc4e57046cd863e009cfede77c96d309 (diff) | |
download | phpvirtualbox-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.js | 1 |
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'); |