Sevan / Venture37 wrote:
> I have just installed the 4.0-beta snapshot & noticed a error message
> when booting GENERIC.MP
> cpu1: unknown i686 model 1, can't get bus clock
>
> the machine is a old IBM PC 365, dual p-pro. the machine was previously
> running 3.9-STABLE without any such errors.
Can you please try the following patch? Note that this error isn't
harmful at all, I just never saw this code tested by someone with a
Pentium Pro CPU. :)
Index: sys/arch/i386/i386/machdep.c
===================================================================
RCS file: /cvs/src/sys/arch/i386/i386/machdep.c,v
retrieving revision 1.362
diff -u -d -p -r1.362 machdep.c
--- sys/arch/i386/i386/machdep.c 10 Jul 2006 19:45:22 -0000 1.362
+++ sys/arch/i386/i386/machdep.c 9 Aug 2006 00:07:30 -0000
@@ -2095,6 +2095,7 @@ p3_get_bus_clock(struct cpu_info *ci)
break;
}
break;
+ case 0x1: /* Pentium Pro, model 1 */
case 0x3: /* Pentium II, model 3 */
case 0x5: /* Pentium II, II Xeon, Celeron, model 5 */
case 0x6: /* Celeron, model 6 */