summaryrefslogtreecommitdiff
path: root/com32/hdt/hdt-menu-processor.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-09-29 21:32:42 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-09-29 21:32:42 -0700
commit6ce3fcc997931e7903408724b4cade3ed09b1e99 (patch)
tree199aebb75f3c037f3f2f307f05539764e7e8bc2a /com32/hdt/hdt-menu-processor.c
parent1c8d53bf85b1f570d1dc69b1498b880a3ade836a (diff)
parent633ce833e5be19ee51400e5e5771ffb880c4291a (diff)
downloadsyslinux-3.83-pre12.tar.gz
Merge branch 'hdt'syslinux-3.83-pre12
Diffstat (limited to 'com32/hdt/hdt-menu-processor.c')
-rw-r--r--com32/hdt/hdt-menu-processor.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/com32/hdt/hdt-menu-processor.c b/com32/hdt/hdt-menu-processor.c
index a30cf0f6..4e102cb5 100644
--- a/com32/hdt/hdt-menu-processor.c
+++ b/com32/hdt/hdt-menu-processor.c
@@ -231,6 +231,10 @@ void compute_processor(struct s_my_menu *menu, struct s_hardware *hardware)
strcat(buffer1, "3dnowext ");
if (hardware->cpu.flags.now)
strcat(buffer1, "3dnow! ");
+ if (hardware->cpu.flags.vmx)
+ strcat(buffer1, "vmx ");
+ if (hardware->cpu.flags.svm)
+ strcat(buffer1, "svm ");
snprintf(buffer, sizeof buffer, "Flags : %s", buffer1);
snprintf(statbuffer, sizeof statbuffer, "Flags: %s", buffer1);
add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0);