Commit 69c3bcb48f3dd61251bca66cba375b4147e4cfca
1 parent
42fc925e
enabled PSE36 for x86_64 (fix for OpenSolaris as guest)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2182 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
2 additions
and
0 deletions
target-i386/helper2.c
... | ... | @@ -135,6 +135,8 @@ CPUX86State *cpu_x86_init(void) |
135 | 135 | |
136 | 136 | /* these features are needed for Win64 and aren't fully implemented */ |
137 | 137 | env->cpuid_features |= CPUID_MTRR | CPUID_CLFLUSH | CPUID_MCA; |
138 | + /* this feature is needed for Solaris and isn't fully implemented */ | |
139 | + env->cpuid_features |= CPUID_PSE36; | |
138 | 140 | #endif |
139 | 141 | } |
140 | 142 | cpu_reset(env); | ... | ... |