summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorGleb Natapov <gleb@redhat.com>2009-12-24 16:14:33 +0200
committerAurelien Jarno <aurelien@aurel32.net>2009-12-24 19:39:53 +0100
commitc84bd4f104098861e162be848a00d64c1fa76ed4 (patch)
treea978beece551ea41554f8941cb686cf72cef7477
parentf21a59c224a6fdf7b30c3fe551fd93043e537f6c (diff)
downloadfocaccia-qemu-c84bd4f104098861e162be848a00d64c1fa76ed4.tar.gz
focaccia-qemu-c84bd4f104098861e162be848a00d64c1fa76ed4.zip
Intel CPUs starting from pentium have apic
Intel CPUs starting from pentium have apic. Lets advertise it.

Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
-rw-r--r--target-i386/helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/helper.c b/target-i386/helper.c
index 730e396a69..c39a993902 100644
--- a/target-i386/helper.c
+++ b/target-i386/helper.c
@@ -106,7 +106,7 @@ typedef struct x86_def_t {
 
 #define I486_FEATURES (CPUID_FP87 | CPUID_VME | CPUID_PSE)
 #define PENTIUM_FEATURES (I486_FEATURES | CPUID_DE | CPUID_TSC | \
-          CPUID_MSR | CPUID_MCE | CPUID_CX8 | CPUID_MMX)
+          CPUID_MSR | CPUID_MCE | CPUID_CX8 | CPUID_MMX | CPUID_APIC)
 #define PENTIUM2_FEATURES (PENTIUM_FEATURES | CPUID_PAE | CPUID_SEP | \
           CPUID_MTRR | CPUID_PGE | CPUID_MCA | CPUID_CMOV | CPUID_PAT | \
           CPUID_PSE36 | CPUID_FXSR)