PERFORCE change 73531 for review

Juli Mallett jmallett at FreeBSD.org
Sat Mar 19 11:43:05 PST 2005


http://perforce.freebsd.org/chv.cgi?CH=73531

Change 73531 by jmallett at 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);
+	}
 }
 
 /*


More information about the p4-projects mailing list