Date: Sat, 19 Mar 2005 19:43:04 GMT From: Juli Mallett <jmallett@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 73531 for review Message-ID: <200503191943.j2JJh4Fx033666@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=73531 Change 73531 by jmallett@jmallett_windward on 2005/03/19 19:42:42 Cleanup. Affected files ... .. //depot/projects/mips/sys/mips/sgimips/machdep_sgimips.c#40 edit Differences ... ==== //depot/projects/mips/sys/mips/sgimips/machdep_sgimips.c#40 (text+ko) ==== @@ -160,15 +160,16 @@ void platform_identify(void) { - printf("machine: %s\n", arcs_systemid()); - printf("real memory = %ld (%ld MB)\n", ctob(realmem), + printf("real memory = %ld (%ld MB)\n", ctob(realmem), ctob(realmem) / (1024 * 1024)); - printf("ARCS memory = %ld (%ld KB)\n", ctob(arcsmem), - ctob(arcsmem) / 1024); - printf("Loaded program memory = %ld (%ld KB)\n", ctob(lpmem), - ctob(lpmem) / 1024); - printf("avail memory = %ld (%ld MB)\n", ctob(availmem), + printf("avail memory = %ld (%ld MB)\n", ctob(availmem), ctob(availmem) / (1024 * 1024)); + if (bootverbose) { + printf("ARCS memory = %ld (%ld KB)\n", ctob(arcsmem), + ctob(arcsmem) / 1024); + printf("Loaded program memory = %ld (%ld KB)\n", ctob(lpmem), + ctob(lpmem) / 1024); + } } /*
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200503191943.j2JJh4Fx033666>