summaryrefslogtreecommitdiff
path: root/target-i386
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2006-09-27 19:52:41 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2006-09-27 19:52:41 +0000
commit69c3bcb48f3dd61251bca66cba375b4147e4cfca (patch)
tree890e9011ebb75117ed63b55aface5fef6fad4604 /target-i386
parent42fc925ec0df2cb8d924bec1c9fb782c12bd8364 (diff)
downloadqemu-69c3bcb48f3dd61251bca66cba375b4147e4cfca.tar.gz
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
Diffstat (limited to 'target-i386')
-rw-r--r--target-i386/helper2.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/target-i386/helper2.c b/target-i386/helper2.c
index f05ae4a691..dc6a5000ec 100644
--- a/target-i386/helper2.c
+++ b/target-i386/helper2.c
@@ -135,6 +135,8 @@ CPUX86State *cpu_x86_init(void)
/* these features are needed for Win64 and aren't fully implemented */
env->cpuid_features |= CPUID_MTRR | CPUID_CLFLUSH | CPUID_MCA;
+ /* this feature is needed for Solaris and isn't fully implemented */
+ env->cpuid_features |= CPUID_PSE36;
#endif
}
cpu_reset(env);