Date: Mon, 10 Jul 2006 18:47:27 GMT From: "Wojciech A. Koszek" <wkoszek@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 101226 for review Message-ID: <200607101847.k6AIlRZw054068@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=101226 Change 101226 by wkoszek@wkoszek_laptop on 2006/07/10 18:46:28 Call cninit() before mips_init() in machdep.c, since we want to have printf() in the last one. Affected files ... .. //depot/projects/mips2/src/sys/mips/mips/machdep.c#12 edit Differences ... ==== //depot/projects/mips2/src/sys/mips/mips/machdep.c#12 (text+ko) ==== @@ -101,8 +101,9 @@ /* * This is from pmap.c. */ +#if 0 pmap_bootstrap(); - +#endif /* * XXXMIPS: Change this once I'll make sure pagetables are working * correctly. @@ -359,8 +360,8 @@ MALTA_PUTCHAR(5, 'S'); MALTA_PUTCHAR(6, 'D'); + cninit(); mips_init(); - cninit(); } void setPQL2(int *const size, int *const ways);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200607101847.k6AIlRZw054068>