diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2010-10-23 22:18:15 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2010-10-23 22:18:15 +0200 |
commit | 7a15847bcca5c7b384556226130330cd33903c12 (patch) | |
tree | 51f30b479ee9f5a7b2c9b9bef9b018bec1e650f8 | |
parent | 45fcd2d09c15820e58e2334b80f7367d2f98ebb7 (diff) |
Recognize P4 and Opteron-like as pentium pro
* i386/i386at/model_dep.c (c_boot_entry): Treat cpu_type 15 as Pentium pro.
-rw-r--r-- | i386/i386at/model_dep.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/i386/i386at/model_dep.c b/i386/i386at/model_dep.c index ca00078..f915db1 100644 --- a/i386/i386at/model_dep.c +++ b/i386/i386at/model_dep.c @@ -586,6 +586,7 @@ void c_boot_entry(vm_offset_t bi) machine_slot[0].cpu_type = CPU_TYPE_PENTIUM; break; case 6: + case 15: machine_slot[0].cpu_type = CPU_TYPE_PENTIUMPRO; break; } |