diff options
author | Erwan Velu <erwan.velu@free.fr> | 2009-09-29 20:31:11 +0200 |
---|---|---|
committer | Erwan Velu <erwan.velu@free.fr> | 2009-09-29 20:31:11 +0200 |
commit | 8ba991f9e17c5bdaa24dccbc5aa0a4e5db690756 (patch) | |
tree | 60a959f97ac26294cfcca3e48546934fe213d6ef /com32/gplinclude | |
parent | 15c6dc79f8d488c585057987eefddd72b114534e (diff) | |
download | syslinux-8ba991f9e17c5bdaa24dccbc5aa0a4e5db690756.tar.gz |
Adding VMX & SVM cpu flags
Impact: Hardware virtualization is now detected
Minor update to detect vmx & svm cpu flags
Diffstat (limited to 'com32/gplinclude')
-rw-r--r-- | com32/gplinclude/cpuid.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/com32/gplinclude/cpuid.h b/com32/gplinclude/cpuid.h index 95d66e99..0b59a08f 100644 --- a/com32/gplinclude/cpuid.h +++ b/com32/gplinclude/cpuid.h @@ -65,6 +65,8 @@ typedef struct { bool nowext; /* AMD 3DNow! extensions */ bool now; /* 3DNow! */ bool smp; /* A smp configuration has been found */ + bool vmx; /* Hardware virtualization */ + bool svm; /* Secure virtual machine */ } s_cpu_flags; typedef struct { |