Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 May 2003 23:48:54 -0700 (PDT)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 31053 for review
Message-ID:  <200305130648.h4D6ms3w075611@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=31053

Change 31053 by jmallett@jmallett_dalek on 2003/05/12 23:48:52

	Print the machine type first, so that the memory stuff ends
	up together.

Affected files ...

.. //depot/projects/mips/sys/mips/sgimips/machdep_sgimips.c#17 edit

Differences ...

==== //depot/projects/mips/sys/mips/sgimips/machdep_sgimips.c#17 (text+ko) ====

@@ -177,13 +177,13 @@
 void
 platform_identify(void)
 {
+	printf("machine: %s\n", arcbios_system_identifier);
 	printf("ARCS memory = %d (%d KB)\n", ctob(arcsmem),
 	       ctob(arcsmem) / 1024);
 	printf("Loaded program memory = %d (%d KB)\n", ctob(lpmem),
 	       ctob(lpmem) / 1024);
 	printf("avail memory = %d (%d MB)\n", ctob(availmem),
 	       ctob(availmem) / (1024 * 1024));
-	printf("machine: %s\n", arcbios_system_identifier);
 }
 
 void



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200305130648.h4D6ms3w075611>