I'm curious why I see this message
"clock: unknown CMOS layout"
during boot on both DomU VM and MacBook Pro.
It's coming from this code:
clock_expandyear(int clockyear)
{
int s, clockcentury, cmoscentury;
clockcentury = (clockyear < 70) ? 20 : 19;
clockyear += 100 * clockcentury;
if (rtc_update_century < 0)
return (clockyear);
s = splclock();
if (cmoscheck())
cmoscentury = mc146818_read(NULL, NVRAM_CENTURY);
else
cmoscentury = 0;
splx(s);
if (!cmoscentury) {
#ifdef DIAGNOSTIC
printf("clock: unknown CMOS layout\n");
#endif
return (clockyear);
}
there
http://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/arch/amd64/isa/clock.c
Anything needs to be fixed to don't print that message or not?
Date is set correct on the server with and without ntpd enabled (I
tried to restart when it's disabled and enabled).
--
--
With regards,
Evgeniy Sudyr